You are here

function views_showcase_plugin_style_showcase::get_cycle_options in Views Showcase 7

1 call to views_showcase_plugin_style_showcase::get_cycle_options()
views_showcase_plugin_style_showcase::options_form in plugins/views_showcase_plugin_style_showcase.inc
Render the given style.

File

plugins/views_showcase_plugin_style_showcase.inc, line 137
Contains the showcase style plugin.

Class

views_showcase_plugin_style_showcase
Style plugin to render each item in a grid cell.

Code

function get_cycle_options() {
  return array(
    'all' => t('Random'),
    'blindX' => 'blindX',
    'blindY' => 'blindY',
    'blindZ' => 'blindZ',
    'cover' => 'cover',
    'curtainX' => 'curtainX',
    'curtainY' => 'curtainY',
    'fade' => 'fade',
    'fadeZoom' => 'fadeZoom',
    'growX' => 'growX',
    'growY' => 'growY',
    'scrollUp' => 'scrollUp',
    'scrollDown' => 'scrollDown',
    'scrollLeft' => 'scrollLeft',
    'scrollRight' => 'scrollRight',
    'scrollHorz' => 'scrollHorz',
    'scrollVert' => 'scrollVert',
    'shuffle' => 'shuffle',
    'slideX' => 'slideX',
    'slideY' => 'slideY',
    'toss' => 'toss',
    'turnUp' => 'turnUp',
    'turnDown' => 'turnDown',
    'turnLeft' => 'turnLeft',
    'turnRight' => 'turnRight',
    'uncover' => 'uncover',
    'wipe' => 'wipe',
    'zoom' => 'zoom',
  );
}