| 7 taxonomy.module | taxonomy_vocabulary_get_names() |
| 8 taxonomy.module | 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.
5 calls to taxonomy_vocabulary_get_names()
1 string reference to 'taxonomy_vocabulary_get_names'
File
- modules/
taxonomy/ taxonomy.module, line 880 - 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;
}
Login or register to post comments