summaryrefslogtreecommitdiff
path: root/features/calendario_feature/calendario_feature.features.taxonomy.inc
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-09-02 15:34:45 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-09-02 15:34:45 -0300
commit30d6d821f0d57ac09a5fcfe076ec1f24c8b8d4ae (patch)
tree0e26f86fb74892d78f9469a856a277c52432a756 /features/calendario_feature/calendario_feature.features.taxonomy.inc
parentfe6d921a62db8068c6e8f743bf361a3859eba137 (diff)
downloadcalendario-30d6d821f0d57ac09a5fcfe076ec1f24c8b8d4ae.tar.gz
calendario-30d6d821f0d57ac09a5fcfe076ec1f24c8b8d4ae.tar.bz2
Adding feature
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',
+ ),
+ ),
+ ),
+ ),
+ );
+}