function tripal_get_mview_id

2.x tripal_core.mviews.api.inc tripal_get_mview_id($view_name)
3.x tripal_chado.DEPRECATED.api.inc tripal_get_mview_id($view_name)

Retrieve the materialized view_id given the name.

Parameters

$view_name: The name of the materialized view.

Return value

The unique identifier for the given view.

3 calls to tripal_get_mview_id()
tripal_mviews_get_mview_id in legacy/tripal_core/api/tripal_core.DEPRECATED.inc
tripal_phylogeny_install in legacy/tripal_phylogeny/tripal_phylogeny.install
Implements hook_install().
tripal_phylogeny_uninstall in legacy/tripal_phylogeny/tripal_phylogeny.install
Implementation of hook_uninstall().
1 string reference to 'tripal_get_mview_id'

File

tripal_chado/api/tripal_chado.DEPRECATED.api.inc, line 177
These api functions are deprecated, if your site is currently using them please update your code with the newer tripal_chado functions.

Code

function tripal_get_mview_id($view_name) {
  chado_get_mview_id($view_name);
}