popsu_documents.features.uuid_term.inc 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * @file
  4. * popsu_documents.features.uuid_term.inc
  5. */
  6. /**
  7. * Implements hook_uuid_features_default_terms().
  8. */
  9. function popsu_documents_uuid_features_default_terms() {
  10. $terms = array();
  11. $terms[] = array(
  12. 'name' => 'Retranscription d\'un colloque',
  13. 'description' => '',
  14. 'format' => 'full_html',
  15. 'weight' => '0',
  16. 'uuid' => '1f244197-0c18-41d5-abc2-c116c409e999',
  17. 'language' => 'und',
  18. 'i18n_tsid' => '0',
  19. 'vocabulary_machine_name' => 'popsu_documents_type',
  20. 'url_alias' => array(
  21. 0 => array(
  22. 'alias' => 'type-de-document/retranscription-d-un-colloque',
  23. 'language' => 'und',
  24. ),
  25. ),
  26. );
  27. $terms[] = array(
  28. 'name' => 'Programme d\'un colloque',
  29. 'description' => '',
  30. 'format' => 'full_html',
  31. 'weight' => '0',
  32. 'uuid' => '4802699e-c349-4b57-ad66-a440db618456',
  33. 'language' => 'und',
  34. 'i18n_tsid' => '0',
  35. 'vocabulary_machine_name' => 'popsu_documents_type',
  36. 'url_alias' => array(
  37. 0 => array(
  38. 'alias' => 'type-de-document/programme-d-un-colloque',
  39. 'language' => 'und',
  40. ),
  41. ),
  42. );
  43. $terms[] = array(
  44. 'name' => 'Dossier Traits Urbains',
  45. 'description' => '',
  46. 'format' => 'full_html',
  47. 'weight' => '0',
  48. 'uuid' => 'd7c6449c-b829-46c1-ab34-db6de4a26ed2',
  49. 'language' => 'und',
  50. 'i18n_tsid' => '0',
  51. 'vocabulary_machine_name' => 'popsu_documents_type',
  52. 'url_alias' => array(
  53. 0 => array(
  54. 'alias' => 'type-de-document/dossier-traits-urbains',
  55. 'language' => 'und',
  56. ),
  57. ),
  58. );
  59. return $terms;
  60. }