function hook_views_slideshow_skin_info in Views Slideshow 7.3
Same name and namespace in other branches
- 8.3 views_slideshow.api.inc \hook_views_slideshow_skin_info()
- 6.3 views_slideshow.api.php \hook_views_slideshow_skin_info()
Define slideshow skins to be available to the end user.
Related topics
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()
- views_slideshow_plugin_style_slideshow::views_slideshow_get_skins in ./
views_slideshow_plugin_style_slideshow.inc - Retrieve a list of all available skins in the system.
File
- ./
views_slideshow.api.php, line 113 - Hooks provided by Views Slideshow.
Code
function hook_views_slideshow_skin_info() {
return array(
'default' => array(
'name' => t('Default'),
),
);
}