You are here

function evergreen_resources_taxonomy_default_vocabularies in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.3

Implements hook_taxonomy_default_vocabularies().

File

merci_migrate/features/evergreen_resources/evergreen_resources.features.taxonomy.inc, line 10
evergreen_resources.features.taxonomy.inc

Code

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,
    ),
  );
}