You are here

commerce_kickstart_blog.features.taxonomy.inc in Commerce Kickstart 7.2

File

modules/commerce_kickstart/commerce_kickstart_blog/commerce_kickstart_blog.features.taxonomy.inc
View source
<?php

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

/**
 * Implements hook_taxonomy_default_vocabularies().
 */
function commerce_kickstart_blog_taxonomy_default_vocabularies() {
  return array(
    'blog_category' => array(
      'name' => 'Blog category',
      'machine_name' => 'blog_category',
      'description' => '',
      'hierarchy' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
    'tags' => array(
      'name' => 'Tags',
      'machine_name' => 'tags',
      'description' => 'Use tags to group blog posts on similar topics.',
      'hierarchy' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
  );
}

Functions

Namesort descending Description
commerce_kickstart_blog_taxonomy_default_vocabularies Implements hook_taxonomy_default_vocabularies().