Same name and namespace in other branches
  1. 5.0.x src/Annotation/ViewsSlideshowWidgetType.php \Drupal\views_slideshow\Annotation\ViewsSlideshowWidgetType

Defines a widget type annotation object.

Hierarchy

Expanded class hierarchy of ViewsSlideshowWidgetType

3 classes are annotated with ViewsSlideshowWidgetType
Controls in src/Plugin/ViewsSlideshowWidgetType/Controls.php
Provides a control widget type.
Counter in src/Plugin/ViewsSlideshowWidgetType/Counter.php
Provides a counter widget type.
Pager in src/Plugin/ViewsSlideshowWidgetType/Pager.php
Provides a pager widget type.

File

src/Annotation/ViewsSlideshowWidgetType.php, line 12

Namespace

Drupal\views_slideshow\Annotation
View source
class ViewsSlideshowWidgetType extends Plugin {
    
    /**
     * The plugin ID.
     *
     * @var string
     */
    public $id;
    
    /**
     * The human-readable name of the widget type.
     *
     * @var \Drupal\Core\Annotation\Translation
     *
     * @ingroup plugin_translatable
     */
    public $label;
    
    /**
     * A list of actions this widget type accepts.
     *
     * @var array
     */
    public $accepts;
    
    /**
     * A list of actions this widget type implements.
     *
     * @var array
     */
    public $calls;

}

Members

Title Sort descending Modifiers Object type Summary
ViewsSlideshowWidgetType::$accepts public property A list of actions this widget type accepts.
ViewsSlideshowWidgetType::$calls public property A list of actions this widget type implements.
ViewsSlideshowWidgetType::$id public property The plugin ID.
ViewsSlideshowWidgetType::$label public property The human-readable name of the widget type.