showroom.features.taxonomy.inc 391 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @file
  4. * showroom.features.taxonomy.inc
  5. */
  6. /**
  7. * Implements hook_taxonomy_default_vocabularies().
  8. */
  9. function showroom_taxonomy_default_vocabularies() {
  10. return array(
  11. 'showroom' => array(
  12. 'name' => 'Showroom',
  13. 'machine_name' => 'showroom',
  14. 'description' => '',
  15. 'hierarchy' => 0,
  16. 'module' => 'taxonomy',
  17. 'weight' => 0,
  18. ),
  19. );
  20. }