materio_content_types.features.taxonomy.inc 873 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @file
  4. * materio_content_types.features.taxonomy.inc
  5. */
  6. /**
  7. * Implements hook_taxonomy_default_vocabularies().
  8. */
  9. function materio_content_types_taxonomy_default_vocabularies() {
  10. return array(
  11. 'company' => array(
  12. 'name' => 'Company',
  13. 'machine_name' => 'company',
  14. 'description' => '',
  15. 'hierarchy' => 0,
  16. 'module' => 'taxonomy',
  17. 'weight' => -8,
  18. ),
  19. 'onthologie' => array(
  20. 'name' => 'Ontologie',
  21. 'machine_name' => 'onthologie',
  22. 'description' => '',
  23. 'hierarchy' => 0,
  24. 'module' => 'taxonomy',
  25. 'weight' => -10,
  26. ),
  27. 'tag_libres' => array(
  28. 'name' => 'Tag libres',
  29. 'machine_name' => 'tag_libres',
  30. 'description' => 'First create the english tag, then translate it.',
  31. 'hierarchy' => 0,
  32. 'module' => 'taxonomy',
  33. 'weight' => -9,
  34. ),
  35. );
  36. }