You are here

function features_general_content_taxonomy_default_vocabularies in Multipurpose Corporate Profile 7

Implements hook_taxonomy_default_vocabularies().

File

modules/features/features_general_content/features_general_content.features.taxonomy.inc, line 10
features_general_content.features.taxonomy.inc

Code

function features_general_content_taxonomy_default_vocabularies() {
  return array(
    'portfolio_terms' => array(
      'name' => 'portfolio_terms',
      'machine_name' => 'portfolio_terms',
      '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',
          ),
        ),
      ),
    ),
    'tags' => array(
      'name' => 'Tags',
      'machine_name' => 'tags',
      'description' => 'Use tags to group articles on similar topics into categories.',
      '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',
          ),
        ),
      ),
    ),
  );
}