materio_content_types.features.taxonomy.inc 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. 'language' => 'und',
  19. 'i18n_mode' => 0,
  20. ),
  21. 'onthologie' => array(
  22. 'name' => 'Ontologie',
  23. 'machine_name' => 'onthologie',
  24. 'description' => '',
  25. 'hierarchy' => 0,
  26. 'module' => 'taxonomy',
  27. 'weight' => -10,
  28. 'language' => 'und',
  29. 'i18n_mode' => 1,
  30. ),
  31. 'tag_libres' => array(
  32. 'name' => 'Tag libres',
  33. 'machine_name' => 'tag_libres',
  34. 'description' => 'First create the english tag, then translate it.',
  35. 'hierarchy' => 0,
  36. 'module' => 'taxonomy',
  37. 'weight' => -9,
  38. 'language' => 'und',
  39. 'i18n_mode' => 1,
  40. ),
  41. );
  42. }