You are here

function panopoly_core_taxonomy_default_vocabularies in Panopoly Core 7

Implements hook_taxonomy_default_vocabularies().

File

./panopoly_core.features.taxonomy.inc, line 10
panopoly_core.features.taxonomy.inc

Code

function panopoly_core_taxonomy_default_vocabularies() {
  return array(
    'panopoly_categories' => array(
      'name' => 'Categories',
      'machine_name' => 'panopoly_categories',
      'description' => 'This is a sitewide taxonomy of categories to organize the content on your site!',
      'hierarchy' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
  );
}