You are here

evergreen_resources.features.taxonomy.inc in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

File

merci_migrate/features/evergreen_resources/evergreen_resources.features.taxonomy.inc
View source
<?php

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

/**
 * Implements hook_taxonomy_default_vocabularies().
 */
function evergreen_resources_taxonomy_default_vocabularies() {
  return array(
    'manufacturer' => array(
      'name' => 'Manufacturer',
      'machine_name' => 'manufacturer',
      'description' => 'Manufacturer',
      'hierarchy' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
    'merci_resource_accessories' => array(
      'name' => 'Resource Accessories',
      'machine_name' => 'merci_resource_accessories',
      'description' => '',
      'hierarchy' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
    'resource_type' => array(
      'name' => 'Resource Type',
      'machine_name' => 'resource_type',
      'description' => 'Type of resource',
      'hierarchy' => 1,
      'module' => 'taxonomy',
      'weight' => 0,
    ),
  );
}

Functions

Namesort descending Description
evergreen_resources_taxonomy_default_vocabularies Implements hook_taxonomy_default_vocabularies().