You are here

function emvideo_flickr_sets_emfield_subtheme in Media: Flickr 6

Implementation of hook_emfield_subtheme.

File

providers/emvideo/flickr_sets.inc, line 437
This include processes flickr.com photosets for use by emfield/emvideo.module.

Code

function emvideo_flickr_sets_emfield_subtheme() {
  $themes = array(
    'emvideo_flickr_sets_flash' => array(
      'arguments' => array(
        'item' => NULL,
        'width' => NULL,
        'height' => NULL,
        'autoplay' => NULL,
        'options' => array(),
      ),
      'file' => 'providers/emvideo/flickr_sets.inc',
      'path' => drupal_get_path('module', 'media_flickr'),
    ),
    'emvideo_flickr_sets_imagerotator' => array(
      'arguments' => array(
        'item' => NULL,
        'width' => NULL,
        'height' => NULL,
        'autoplay' => NULL,
        'options' => array(),
      ),
      'file' => 'providers/emvideo/flickr_sets.inc',
      'path' => drupal_get_path('module', 'media_flickr'),
    ),
    'emvideo_flickr_sets_flvmediaplayer' => array(
      'arguments' => array(
        'item' => NULL,
        'width' => NULL,
        'height' => NULL,
        'autoplay' => NULL,
        'options' => array(),
      ),
      'file' => 'providers/emvideo/flickr_sets.inc',
      'path' => drupal_get_path('module', 'media_flickr'),
    ),
    'emvideo_flickr_sets_custom' => array(
      'arguments' => array(
        'item' => NULL,
        'width' => NULL,
        'height' => NULL,
        'autoplay' => NULL,
        'options' => array(),
      ),
      'file' => 'providers/emvideo/flickr_sets.inc',
      'path' => drupal_get_path('module', 'media_flickr'),
    ),
  );
  return $themes;
}