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

Define slideshow skins to be available to the end user.

1 function implements hook_views_slideshow_skin_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_skin_info in ./views_slideshow.module
Implements hook_views_slideshow_skin_info().
1 invocation of hook_views_slideshow_skin_info()
Slideshow::getSkins in src/Plugin/views/style/Slideshow.php
Retrieve a list of all available skins in the system.

File

./views_slideshow.api.inc, line 61

Code

function hook_views_slideshow_skin_info() {
    return array(
        'default' => array(
            'name' => t('Default'),
        ),
    );
}