You are here

function instagram_feeds_node_info in Instagram Feeds 7

Implements hook_node_info().

File

./instagram_feeds.features.inc, line 154
instagram_feeds.features.inc

Code

function instagram_feeds_node_info() {
  $items = array(
    'instagram_feed' => array(
      'name' => t('Instagram Feed'),
      'base' => 'node_content',
      'description' => '',
      'has_title' => '1',
      'title_label' => t('Name of Feed'),
      'help' => '',
    ),
    'instagram_media_item' => array(
      'name' => t('Instagram Media Item'),
      'base' => 'node_content',
      'description' => t('This content type used for downloading images from Instagram via API.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
    'instagram_url' => array(
      'name' => t('Instagram URL'),
      'base' => 'node_content',
      'description' => t('This content type is used by Instagram Feed importer. Instagram url creates automatically after creating new Instagram Feed node.
If you don\'t know what this, DO NOT create Instagram url manually.'),
      'has_title' => '1',
      'title_label' => t('Title'),
      'help' => '',
    ),
  );
  return $items;
}