1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * @file
- * popsu_documents.features.uuid_term.inc
- */
- /**
- * Implements hook_uuid_features_default_terms().
- */
- function popsu_documents_uuid_features_default_terms() {
- $terms = array();
- $terms[] = array(
- 'name' => 'Retranscription d\'un colloque',
- 'description' => '',
- 'format' => 'full_html',
- 'weight' => '0',
- 'uuid' => '1f244197-0c18-41d5-abc2-c116c409e999',
- 'language' => 'und',
- 'i18n_tsid' => '0',
- 'vocabulary_machine_name' => 'popsu_documents_type',
- 'url_alias' => array(
- 0 => array(
- 'alias' => 'type-de-document/retranscription-d-un-colloque',
- 'language' => 'und',
- ),
- ),
- );
- $terms[] = array(
- 'name' => 'Programme d\'un colloque',
- 'description' => '',
- 'format' => 'full_html',
- 'weight' => '0',
- 'uuid' => '4802699e-c349-4b57-ad66-a440db618456',
- 'language' => 'und',
- 'i18n_tsid' => '0',
- 'vocabulary_machine_name' => 'popsu_documents_type',
- 'url_alias' => array(
- 0 => array(
- 'alias' => 'type-de-document/programme-d-un-colloque',
- 'language' => 'und',
- ),
- ),
- );
- $terms[] = array(
- 'name' => 'Dossier Traits Urbains',
- 'description' => '',
- 'format' => 'full_html',
- 'weight' => '0',
- 'uuid' => 'd7c6449c-b829-46c1-ab34-db6de4a26ed2',
- 'language' => 'und',
- 'i18n_tsid' => '0',
- 'vocabulary_machine_name' => 'popsu_documents_type',
- 'url_alias' => array(
- 0 => array(
- 'alias' => 'type-de-document/dossier-traits-urbains',
- 'language' => 'und',
- ),
- ),
- );
- return $terms;
- }
|