1 taxonomy.module taxonomy_vocabulary_title(TaxonomyVocabulary $vocabulary)

Returns the title of a vocabulary.

File

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

Code

function taxonomy_vocabulary_title(TaxonomyVocabulary $vocabulary) {
  return $vocabulary->name;
}