You are here

function wsconfig_load_multiple in Web Service Data 7

Load multiple wsconfigs based on certain conditions.

Parameters

$wsconfig_ids: An array of wsconfig IDs.

$conditions: An array of conditions to match against the {wsconfig} table.

$reset: A boolean indicating that the internal cache should be reset.

Return value

An array of wsconfig objects, indexed by wsconfig_id.

See also

entity_load()

model_load()

2 calls to wsconfig_load_multiple()
wsconfig_load in modules/wsconfig/wsconfig.module
Fetch a wsconfig object. Make sure that the wildcard you choose in the model entity definition fits the function name here.
wsfields_storage_settings_form in modules/wsfields_storage/wsfields_storage.admin.inc
Wsfields settings form

File

modules/wsconfig/wsconfig.module, line 494
Main module for wsconfig

Code

function wsconfig_load_multiple($wsconfig_ids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('wsconfig', $wsconfig_ids, $conditions, $reset);
}