You are here

function instagram_feeds_taxonomy_default_vocabularies in Instagram Feeds 7

Implements hook_taxonomy_default_vocabularies().

File

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

Code

function instagram_feeds_taxonomy_default_vocabularies() {
  return array(
    'instagram_hashtags' => array(
      'name' => 'Instagram hashtags',
      'machine_name' => 'instagram_hashtags',
      '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',
          ),
        ),
      ),
    ),
    'instagram_users' => array(
      'name' => 'Instagram Users',
      'machine_name' => 'instagram_users',
      'description' => 'Instagram Users and hash-tags for Instagram Feeds import',
      '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',
          ),
        ),
      ),
    ),
  );
}