aboutsummaryrefslogtreecommitdiff
path: root/features/muamba_system/muamba_system.features.taxonomy.inc
diff options
context:
space:
mode:
Diffstat (limited to 'features/muamba_system/muamba_system.features.taxonomy.inc')
-rw-r--r--features/muamba_system/muamba_system.features.taxonomy.inc36
1 files changed, 36 insertions, 0 deletions
diff --git a/features/muamba_system/muamba_system.features.taxonomy.inc b/features/muamba_system/muamba_system.features.taxonomy.inc
new file mode 100644
index 0000000..22b9129
--- /dev/null
+++ b/features/muamba_system/muamba_system.features.taxonomy.inc
@@ -0,0 +1,36 @@
+<?php
+/**
+ * @file
+ * muamba_system.features.taxonomy.inc
+ */
+
+/**
+ * Implements hook_taxonomy_default_vocabularies().
+ */
+function muamba_system_taxonomy_default_vocabularies() {
+ return array(
+ 'compartilhamento' => array(
+ 'name' => 'Compartilhamento',
+ 'machine_name' => 'compartilhamento',
+ 'description' => 'Forma de compartilhamento',
+ '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',
+ ),
+ ),
+ ),
+ ),
+ );
+}