function tripal_autocomplete_organism
2.x tripal_organism.api.inc | tripal_autocomplete_organism($text) |
3.x tripal_chado.module.DEPRECATED.api.inc | tripal_autocomplete_organism($text) |
This function is intended to be used in autocomplete forms for searching for organisms that begin with the provided string.
Parameters
$text: The string to search for.
Return value
A json array of terms that begin with the provided string.
1 string reference to 'tripal_autocomplete_organism'
- tripal_organism_menu in legacy/
tripal_organism/ tripal_organism.module - Implements hook_menu().
File
- tripal_chado/
api/ modules/ tripal_chado.module.DEPRECATED.api.inc, line 941 - 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_autocomplete_organism($text) {
chado_autocomplete_organism($text);
}