You are here

mediafront_youtube.feeds_importer_default.inc in MediaFront 7.2

File

modules/mediafront_youtube/mediafront_youtube.feeds_importer_default.inc
View source
<?php

/**
 * @file
 * mediafront_youtube.feeds_importer_default.inc
 */

/**
 * Implements hook_feeds_importer_default().
 */
function mediafront_youtube_feeds_importer_default() {
  $export = array();
  $feeds_importer = new stdClass();
  $feeds_importer->disabled = FALSE;

  /* Edit this to true to make a default feeds_importer disabled initially */
  $feeds_importer->api_version = 1;
  $feeds_importer->id = 'youtube_importer';
  $feeds_importer->config = array(
    'name' => 'YouTube Importer',
    'description' => 'An importer for YouTube Feeds',
    'fetcher' => array(
      'plugin_key' => 'YouTubeFetcher',
      'config' => array(
        'auto_detect_feeds' => FALSE,
        'use_pubsubhubbub' => FALSE,
        'designated_hub' => '',
      ),
    ),
    'parser' => array(
      'plugin_key' => 'FeedsXPathParserXML',
      'config' => array(
        'sources' => array(
          'xpathparser:0' => 'string(media:group/yt:videoid)',
          'xpathparser:1' => 'string(media:group/media:title)',
          'xpathparser:2' => 'string(media:group/media:description)',
          'xpathparser:3' => 'string(link/@href)',
          'xpathparser:4' => 'string(media:group/media:thumbnail[1]/@url)',
          'xpathparser:5' => 'string(media:group/media:thumbnail[3]/@url)',
          'xpathparser:6' => 'string(media:group/media:category/@label)',
          'xpathparser:7' => 'string(media:group/media:keywords)',
          'xpathparser:8' => 'published',
        ),
        'rawXML' => array(
          'xpathparser:0' => 0,
          'xpathparser:1' => 0,
          'xpathparser:2' => 0,
          'xpathparser:3' => 0,
          'xpathparser:4' => 0,
          'xpathparser:5' => 0,
          'xpathparser:6' => 0,
          'xpathparser:7' => 0,
          'xpathparser:8' => 0,
        ),
        'context' => 'entry',
        'exp' => array(
          'errors' => 0,
          'tidy' => 0,
          'tidy_encoding' => 'UTF8',
          'debug' => array(
            'context' => 0,
            'xpathparser:0' => 0,
            'xpathparser:1' => 0,
            'xpathparser:2' => 0,
            'xpathparser:3' => 0,
            'xpathparser:4' => 0,
            'xpathparser:5' => 0,
            'xpathparser:6' => 0,
            'xpathparser:7' => 0,
            'xpathparser:8' => 0,
          ),
        ),
        'allow_override' => 0,
      ),
    ),
    'processor' => array(
      'plugin_key' => 'FeedsNodeProcessor',
      'config' => array(
        'content_type' => 'youtube_media',
        'expire' => '-1',
        'author' => '1',
        'mappings' => array(
          0 => array(
            'source' => 'xpathparser:0',
            'target' => 'guid',
            'unique' => 1,
          ),
          1 => array(
            'source' => 'xpathparser:1',
            'target' => 'title',
            'unique' => 0,
          ),
          2 => array(
            'source' => 'xpathparser:2',
            'target' => 'body',
            'unique' => FALSE,
          ),
          3 => array(
            'source' => 'xpathparser:3',
            'target' => 'field_youtube_url',
            'unique' => FALSE,
          ),
          4 => array(
            'source' => 'xpathparser:4',
            'target' => 'field_youtube_thumb',
            'unique' => FALSE,
          ),
          5 => array(
            'source' => 'xpathparser:5',
            'target' => 'field_youtube_poster',
            'unique' => FALSE,
          ),
          6 => array(
            'source' => 'xpathparser:6',
            'target' => 'field_youtube_category',
            'unique' => FALSE,
          ),
          7 => array(
            'source' => 'xpathparser:7',
            'target' => 'field_youtube_keywords',
            'unique' => FALSE,
          ),
          8 => array(
            'source' => 'xpathparser:8',
            'target' => 'created',
            'unique' => FALSE,
          ),
        ),
        'update_existing' => '2',
        'input_format' => 'plain_text',
      ),
    ),
    'content_type' => 'youtube_channel',
    'update' => 0,
    'import_period' => '1800',
    'expire_period' => 3600,
    'import_on_create' => 1,
    'process_in_background' => 0,
  );
  $export['youtube_importer'] = $feeds_importer;
  return $export;
}

Functions

Namesort descending Description
mediafront_youtube_feeds_importer_default Implements hook_feeds_importer_default().