summaryrefslogtreecommitdiff
path: root/features/calendario_feature/calendario_feature.features.taxonomy.inc
diff options
context:
space:
mode:
Diffstat (limited to 'features/calendario_feature/calendario_feature.features.taxonomy.inc')
-rw-r--r--features/calendario_feature/calendario_feature.features.taxonomy.inc105
1 files changed, 105 insertions, 0 deletions
diff --git a/features/calendario_feature/calendario_feature.features.taxonomy.inc b/features/calendario_feature/calendario_feature.features.taxonomy.inc
new file mode 100644
index 0000000..ba3df0c
--- /dev/null
+++ b/features/calendario_feature/calendario_feature.features.taxonomy.inc
@@ -0,0 +1,105 @@
+<?php
+/**
+ * @file
+ * calendario_feature.features.taxonomy.inc
+ */
+
+/**
+ * Implements hook_taxonomy_default_vocabularies().
+ */
+function calendario_feature_taxonomy_default_vocabularies() {
+ return array(
+ 'localidade' => array(
+ 'name' => 'Cidade',
+ 'machine_name' => 'localidade',
+ 'description' => 'Cidade onde ocorre o evento',
+ 'hierarchy' => '0',
+ 'module' => 'taxonomy',
+ 'weight' => '0',
+ 'rdf_mapping' => array(
+ 'rdftype' => array(
+ 0 => 'skos:ConceptScheme',
+ ),
+ 'name' => array(
+ 'predicates' => array(
+ 0 => 'dc:title',
+ ),
+ ),
+ 'description' => array(
+ 'predicates' => array(
+ 0 => 'rdfs:comment',
+ ),
+ ),
+ ),
+ ),
+ 'tags' => array(
+ 'name' => 'Tags',
+ 'machine_name' => 'tags',
+ 'description' => 'Use etiquetas para agrupar artigos sobre temas semelhantes em categorias.',
+ 'hierarchy' => '0',
+ 'module' => 'taxonomy',
+ 'weight' => '0',
+ 'rdf_mapping' => array(
+ 'rdftype' => array(
+ 0 => 'skos:ConceptScheme',
+ ),
+ 'name' => array(
+ 'predicates' => array(
+ 0 => 'dc:title',
+ ),
+ ),
+ 'description' => array(
+ 'predicates' => array(
+ 0 => 'rdfs:comment',
+ ),
+ ),
+ ),
+ ),
+ 'tema' => array(
+ 'name' => 'Tema',
+ 'machine_name' => 'tema',
+ 'description' => 'Tema do evento',
+ 'hierarchy' => '0',
+ 'module' => 'taxonomy',
+ 'weight' => '0',
+ 'rdf_mapping' => array(
+ 'rdftype' => array(
+ 0 => 'skos:ConceptScheme',
+ ),
+ 'name' => array(
+ 'predicates' => array(
+ 0 => 'dc:title',
+ ),
+ ),
+ 'description' => array(
+ 'predicates' => array(
+ 0 => 'rdfs:comment',
+ ),
+ ),
+ ),
+ ),
+ 'tipo' => array(
+ 'name' => 'Tipo',
+ 'machine_name' => 'tipo',
+ 'description' => 'Tipo de evento',
+ 'hierarchy' => '1',
+ 'module' => 'taxonomy',
+ 'weight' => '0',
+ 'rdf_mapping' => array(
+ 'rdftype' => array(
+ 0 => 'skos:ConceptScheme',
+ ),
+ 'name' => array(
+ 'predicates' => array(
+ 0 => 'dc:title',
+ ),
+ ),
+ 'description' => array(
+ 'predicates' => array(
+ 0 => 'rdfs:comment',
+ ),
+ ),
+ ),
+ ),
+ );
+}