function tripal_update_mview

2.x tripal_core.DEPRECATED.api.inc tripal_update_mview($mview_id)
3.x tripal_core.DEPRECATED.inc tripal_update_mview($mview_id)
1.x tripal_core_mviews.api.inc tripal_update_mview($mview_id)

Deprecated

Restructured API to make naming more readable and consistent. Function was deprecated in Tripal 2.0 and will be removed 2 releases from now. This function has been replaced by tripal_populate_mview().

See also

tripal_populate_mview().

File

legacy/tripal_core/api/tripal_core.DEPRECATED.inc, line 868
Contains all the deprecated functions to keep the tripal api backwards compatible.

Code

function tripal_update_mview($mview_id) {
  tripal_report_error(
  'tripal_deprecated', 
  TRIPAL_NOTICE, 
  "DEPRECATED: %old_function has been replaced with %new_function. Please update your code.", 
  array(
    '%old_function' => 'tripal_update_mview',
    '%new_function' => 'tripal_populate_mview'
  )
  );

  //New API Function
  return tripal_populate_mview($mview_id);
}