You are here

function _views_slideshow_ddblock_get_effects in Views Slideshow: Dynamic Display Block 6.2

Same name and namespace in other branches
  1. 6 views_slideshow_ddblock.views_slideshow.inc \_views_slideshow_ddblock_get_effects()
  2. 7.2 views_slideshow_ddblock.views_slideshow.inc \_views_slideshow_ddblock_get_effects()

Return available effect for the views slideshow dynamic display block module.

Return value

An associative array containing the available effect for the views slideshow dynamic display block module.

1 call to _views_slideshow_ddblock_get_effects()
views_slideshow_ddblock_views_slideshow_options_form in ./views_slideshow_ddblock.views_slideshow.inc
Implements hook_views_slideshow_options_form().

File

./views_slideshow_ddblock.views_slideshow.inc, line 958
The default options available with Views Slideshow: ddblock.

Code

function _views_slideshow_ddblock_get_effects() {

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