Same name and namespace in other branches
  1. 8.x-3.x views_slideshow.api.inc \hook_views_slideshow_skin_info()

Define slideshow skins to be available to the end user.

Sujets associés

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 dans ./views_slideshow.module
Implements hook_views_slideshow_skin_info().
1 invocation of hook_views_slideshow_skin_info()
views_slideshow_plugin_style_slideshow::views_slideshow_get_skins dans ./views_slideshow_plugin_style_slideshow.inc
Retrieve a list of all available skins in the system.

Fichier

./views_slideshow.api.php, line 113

Code

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