1 taxonomy.module taxonomy_config_info()

Implements hook_taxonomy_config_info().

Related topics

File

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

Code

function taxonomy_config_info() {
  $prefixes['taxonomy.settings'] = array(
    'label' => t('Taxonomy settings'),
    'group' => t('Configuration'),
  );
  $prefixes['taxonomy.vocabulary'] = array(
    'name_key' => 'machine_name',
    'label_key' => 'name',
    'group' => t('Vocabularies'),
  );
  return $prefixes;
}