You are here

panopoly_core.features.taxonomy.inc in Panopoly Core 7

File

panopoly_core.features.taxonomy.inc
View source
<?php

/**
 * @file
 * panopoly_core.features.taxonomy.inc
 */

/**
 * Implements hook_taxonomy_default_vocabularies().
 */
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,
    ),
  );
}

Functions

Namesort descending Description
panopoly_core_taxonomy_default_vocabularies Implements hook_taxonomy_default_vocabularies().