comparison modules/contrib/views_slideshow/src/ViewsSlideshowSkinInterface.php @ 5:c69a71b4f40f

Add slideshow module
author Chris Cannam
date Thu, 07 Dec 2017 14:46:23 +0000
parents
children
comparison
equal deleted inserted replaced
4:8948ab6c87d2 5:c69a71b4f40f
1 <?php
2
3 namespace Drupal\views_slideshow;
4
5 /**
6 * Provides an interface for Views slideshow skins.
7 */
8 interface ViewsSlideshowSkinInterface {
9
10 /**
11 * Returns a array of libraries to attach when the skin is used.
12 *
13 * @return array
14 * The libraries to be attached.
15 */
16 public function getLibraries();
17
18 /**
19 * Returns a class to be added to templates.
20 *
21 * @return string
22 * The class name.
23 */
24 public function getClass();
25
26 }