function tripal_autocomplete_dbxref
3.x tripal_chado.module.DEPRECATED.api.inc | tripal_autocomplete_dbxref($db_id, $string = '') |
This function is intended to be used in autocomplete forms for searching for accession that begin with the provided string.
Parameters
$db_id: The DB ID in which to search for the term.
$string: The string to search for.
Return value
A json array of terms that begin with the provided string.
File
- tripal_chado/
api/ modules/ tripal_chado.module.DEPRECATED.api.inc, line 653 - 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_dbxref($db_id, $string = '') {
chado_autocomplete_dbxref($db_id, $string);
}