8ac59801be
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
37 lines
745 B
PHP
37 lines
745 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_topics.features.taxonomy.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_taxonomy_default_vocabularies().
|
|
*/
|
|
function commons_topics_taxonomy_default_vocabularies() {
|
|
return array(
|
|
'topics' => array(
|
|
'name' => 'Topics',
|
|
'machine_name' => 'topics',
|
|
'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',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|