function taxonomy_vocabulary_load_multiple

taxonomy_vocabulary_load_multiple($vids = array(), $conditions = array())

Load multiple taxonomy vocabularies based on certain conditions.

This function should be used whenever you need to load more than one vocabulary from the database. Terms are loaded into memory and will not require database access if loaded again during the same page request.

Parameters

$vids: An array of taxonomy vocabulary IDs, or FALSE to load all vocabularies.

$conditions: An array of conditions to add to the query.

Return value

An array of vocabulary objects, indexed by vid.

See also

entity_load()

File

modules/taxonomy/taxonomy.module, line 1346
Enables the organization of content into categories.

Code

function taxonomy_vocabulary_load_multiple($vids = array(), $conditions = array()) {
  return entity_load('taxonomy_vocabulary', $vids, $conditions);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!taxonomy!taxonomy.module/function/taxonomy_vocabulary_load_multiple/7.x