function tripal_get_schema_name

2.x tripal_core.chado_query.api.inc tripal_get_schema_name($schema = 'chado')
3.x tripal_chado.DEPRECATED.api.inc tripal_get_schema_name($schema = 'chado')

Retrieve the name of the PostgreSQL schema housing Chado or Drupal.

Parameters

$schema: Wehter you want the schema name for 'chado' or 'drupal'. Chado is the default.

Return value

The name of the PostgreSQL schema housing the $schema specified.

1 call to tripal_get_schema_name()
chado_add_node_form_relationships_name_to_id_callback in legacy/tripal_core/api/tripal_core.chado_nodes.relationships.api.inc
Handles autocomplete for subject & object id

File

tripal_chado/api/tripal_chado.DEPRECATED.api.inc, line 274
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_schema_name($schema = 'chado') {
  chado_get_schema_name($schema);
}