function tripal_autocomplete_contact

2.x tripal_contact.api.inc tripal_autocomplete_contact($text)
3.x tripal_chado.module.DEPRECATED.api.inc tripal_autocomplete_contact($text)

This function is intended to be used in autocomplete forms for contacts.

Parameters

$text: The string to search for.

Return value

A json array of terms that begin with the provided string.

2 string references to 'tripal_autocomplete_contact'
tripal_chado_menu in tripal_chado/tripal_chado.module
Implements hook_menu().
tripal_contact_menu in legacy/tripal_contact/tripal_contact.module
Implemets hook_menu(). Adds menu items for the tripal_contact module menu. This section gives the outline for the main menu of the Tripal-contact module

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 104
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_contact($text) {
  chado_autocomplete_contact($text);
}