function hook_views_slideshow_skin_info in Views Slideshow 8.3
Same name and namespace in other branches
- 6.3 views_slideshow.api.php \hook_views_slideshow_skin_info()
- 7.3 views_slideshow.api.php \hook_views_slideshow_skin_info()
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.
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 - Hooks provided by Views Slideshow.
Code
function hook_views_slideshow_skin_info() {
return array(
'default' => array(
'name' => t('Default'),
),
);
}