function feature_variables_taxonomy_default_vocabularies in Brainstorm profile 7
Implements hook_taxonomy_default_vocabularies().
File
- modules/
features/ feature_variables/ feature_variables.features.taxonomy.inc, line 10 - feature_variables.features.taxonomy.inc
Code
function feature_variables_taxonomy_default_vocabularies() {
return array(
'portfolio' => array(
'name' => 'Portfolio',
'machine_name' => 'portfolio',
'description' => '',
'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',
),
),
),
),
'profession' => array(
'name' => 'Profession',
'machine_name' => 'profession',
'description' => '',
'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',
),
),
),
),
);
}