You are here

function tweet_feed_types_taxonomy_default_vocabularies in Tweet Feed 7.2

Implements hook_taxonomy_default_vocabularies().

File

tweet_feed_types/tweet_feed_types.features.taxonomy.inc, line 10
tweet_feed_types.features.taxonomy.inc

Code

function tweet_feed_types_taxonomy_default_vocabularies() {
  return array(
    'hashtag_terms' => array(
      'name' => 'Hashtag Terms',
      'machine_name' => 'hashtag_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',
          ),
        ),
      ),
    ),
  );
}