function tripal_organism_get_synced
2.x tripal_organism.DEPRECATED.inc | tripal_organism_get_synced() |
3.x tripal_organism.DEPRECATED.inc | tripal_organism_get_synced() |
1.x tripal_organism.api.inc | tripal_organism_get_synced() |
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_get_organism_select_options().
See also
tripal_get_organism_select_options().
File
- tripal_organism/
api/ tripal_organism.DEPRECATED.inc, line 58 - Wrapper functions to provide backwards compatibility for the tripal organism api
Code
function tripal_organism_get_synced() {
tripal_report_error(
'tripal_deprecated',
TRIPAL_NOTICE,
"DEPRECATED: %old_function has been replaced with %new_function. Please update your code.",
array(
'%old_function' => 'tripal_organism_get_synced',
'%new_function' => 'tripal_get_organism_select_options'
)
);
return tripal_get_organism_select_options();
}