function taxonomy_vocabulary_get_names

Get names for all taxonomy vocabularies.

Return value

An associative array of objects keyed by vocabulary machine name with information about taxonomy vocabularies. Each object has properties:

  • name: The vocabulary name.
  • machine_name: The machine name.
  • vid: The vocabulary ID.
17 calls to taxonomy_vocabulary_get_names()
1 string reference to 'taxonomy_vocabulary_get_names'

File

drupal/core/modules/taxonomy/taxonomy.module, line 636
Enables the organization of content into categories.

Code

function taxonomy_vocabulary_get_names() {
  $names =& drupal_static(__FUNCTION__);
  if (!isset($names)) {
    $names = db_query('SELECT name, machine_name, vid FROM {taxonomy_vocabulary}')
      ->fetchAllAssoc('machine_name');
  }
  return $names;
}