taxonomy_admin_vocabulary_title_callback

7 taxonomy.module taxonomy_admin_vocabulary_title_callback($vocabulary)
8 taxonomy.module taxonomy_admin_vocabulary_title_callback(TaxonomyVocabulary $vocabulary)

Return the vocabulary name given the vocabulary object.

1 string reference to 'taxonomy_admin_vocabulary_title_callback'

File

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

Code

function taxonomy_admin_vocabulary_title_callback($vocabulary) {
  return check_plain($vocabulary->name);
}
Login or register to post comments