123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- /**
- * @file
- * popsu_taxonomies.features.taxonomy.inc
- */
- /**
- * Implements hook_taxonomy_default_vocabularies().
- */
- function popsu_taxonomies_taxonomy_default_vocabularies() {
- return array(
- 'popsu_popsu' => array(
- 'name' => 'POPSU',
- 'machine_name' => 'popsu_popsu',
- 'description' => 'Liste des POPSU',
- 'hierarchy' => '1',
- 'module' => 'taxonomy',
- 'weight' => '-10',
- 'language' => 'und',
- 'i18n_mode' => '0',
- 'rdf_mapping' => array(
- 'rdftype' => array(
- 0 => 'skos:ConceptScheme',
- ),
- 'name' => array(
- 'predicates' => array(
- 0 => 'dc:title',
- ),
- ),
- 'description' => array(
- 'predicates' => array(
- 0 => 'rdfs:comment',
- ),
- ),
- ),
- ),
- 'popsu_villes' => array(
- 'name' => 'Villes',
- 'machine_name' => 'popsu_villes',
- 'description' => 'Liste des villes',
- 'hierarchy' => '0',
- 'module' => 'taxonomy',
- 'weight' => '-9',
- 'language' => 'und',
- 'i18n_mode' => '0',
- 'rdf_mapping' => array(
- 'rdftype' => array(
- 0 => 'skos:ConceptScheme',
- ),
- 'name' => array(
- 'predicates' => array(
- 0 => 'dc:title',
- ),
- ),
- 'description' => array(
- 'predicates' => array(
- 0 => 'rdfs:comment',
- ),
- ),
- ),
- ),
- );
- }
|