You are here

isotope_example_feature.features.taxonomy.inc in Views Isotope (Deprecated) 7

File

isotope_example_feature/isotope_example_feature.features.taxonomy.inc
View source
<?php

/**
 * @file
 * isotope_example_feature.features.taxonomy.inc
 */

/**
 * Implementation of hook_taxonomy_default_vocabularies().
 */
function isotope_example_feature_taxonomy_default_vocabularies() {
  return array(
    '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',
          ),
        ),
      ),
    ),
  );
}

Functions

Namesort descending Description
isotope_example_feature_taxonomy_default_vocabularies Implementation of hook_taxonomy_default_vocabularies().