comparison modules/contrib/views_slideshow/src/Annotation/ViewsSlideshowWidget.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\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8 * Defines a widget annotation object.
9 *
10 * @Annotation
11 */
12 class ViewsSlideshowWidget extends Plugin {
13
14 /**
15 * The plugin ID.
16 *
17 * @var string
18 */
19 public $id;
20
21 /**
22 * The human-readable name of the widget.
23 *
24 * @var \Drupal\Core\Annotation\Translation
25 *
26 * @ingroup plugin_translatable
27 */
28 public $label;
29
30 /**
31 * The widget type used by the widget.
32 *
33 * @var string
34 */
35 public $type;
36
37 }