You are here

instagram_feeds.features.taxonomy.inc in Instagram Feeds 7

File

instagram_feeds.features.taxonomy.inc
View source
<?php

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

/**
 * Implements hook_taxonomy_default_vocabularies().
 */
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',
          ),
        ),
      ),
    ),
  );
}

Functions

Namesort descending Description
instagram_feeds_taxonomy_default_vocabularies Implements hook_taxonomy_default_vocabularies().