function tripal_get_organism_select_options

2.x tripal_organism.api.inc tripal_get_organism_select_options($syncd_only = TRUE)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_get_organism_select_options($syncd_only = true)

Returns a list of organisms that are currently synced with Drupal to use in select lists.

Parameters

$syncd_only: Whether or not to return all chado organisms or just those sync'd with drupal. Defaults to TRUE (only sync'd organisms).

Return value

An array of organisms sync'd with Drupal where each value is the organism scientific name and the keys are organism_id's.

2 calls to tripal_get_organism_select_options()
tripal_feature_delete_form in legacy/tripal_feature/includes/tripal_feature.delete.inc
A form for indicating the features to delete
tripal_organism_get_synced in legacy/tripal_organism/api/tripal_organism.DEPRECATED.inc
1 string reference to 'tripal_get_organism_select_options'

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 909
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_organism_select_options($syncd_only = true) {
  chado_get_organism_select_options($syncd_only);
}