function tripal_get_multiple_stocks

2.x tripal_stock.api.inc tripal_get_multiple_stocks($identifiers, $options = array())
3.x tripal_chado.module.DEPRECATED.api.inc tripal_get_multiple_stocks($identifiers, $options = array())

Retrieves a chado stock variable.

Parameters

$identifier: An array with the key stating what the identifier is. Supported keys include any field in the stock table. See the chado_select_record() $values parameter for additional details including an example.

$options: An array of options. Supported keys include:

  • Any keys supported by chado_generate_var(). See that function definition for additional details.

Return value

An array of stock objects matching the criteria.

2 calls to tripal_get_multiple_stocks()
1 string reference to 'tripal_get_multiple_stocks'

File

tripal_chado/api/modules/tripal_chado.module.DEPRECATED.api.inc, line 1520
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_multiple_stocks($identifiers, $options = array()) {
  chado_get_multiple_stocks($identifiers, $options);
}