Same name and namespace in other branches
  1. 7.x-3.x views_slideshow.api.php \hook_views_slideshow_widget_info() 1 comment

Define new widgets (pagers, controls, counters).

Available events for accepts and calls

  • pause
  • play
  • nextSlide
  • previousSlide
  • goToSlide
  • transitionBegin
  • transitionEnd

Return value

Array keyed by the widget names.

1 function implements hook_views_slideshow_widget_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

views_slideshow_views_slideshow_widget_info in ./views_slideshow.module
Implements hook_views_slideshow_widget_info().
3 invocations of hook_views_slideshow_widget_info()
Slideshow::buildOptionsForm in src/Plugin/views/style/Slideshow.php
views_slideshow_views_slideshow_option_definition in ./views_slideshow.module
Implements hook_views_slideshow_option_definition().
_views_slideshow_preprocess_views_view_slideshow in ./views_slideshow.theme.inc
Views Slideshow: slideshow.

File

./views_slideshow.api.inc, line 84

Code

function hook_views_slideshow_widget_info() {
    return array(
        'views_slideshow_pager' => array(
            'name' => t('Pager'),
            'accepts' => array(
                'transitionBegin' => array(
                    'required' => TRUE,
                ),
                'goToSlide',
                'previousSlide',
                'nextSlide',
            ),
            'calls' => array(
                'goToSlide',
                'pause',
                'play',
            ),
        ),
        'views_slideshow_controls' => array(
            'name' => t('Controls'),
            'accepts' => array(
                'pause' => array(
                    'required' => TRUE,
                ),
                'play' => array(
                    'required' => TRUE,
                ),
            ),
            'calls' => array(
                'nextSlide',
                'pause',
                'play',
                'previousSlide',
            ),
        ),
        'views_slideshow_slide_counter' => array(
            'name' => t('Slide Counter'),
            'accepts' => array(
                'transitionBegin' => array(
                    'required' => TRUE,
                ),
                'goToSlide',
                'previousSlide',
                'nextSlide',
            ),
            'calls' => array(),
        ),
    );
}