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

Defines a slideshow type annotation object.

Hierarchy

  • class \Drupal\views_slideshow\Annotation\ViewsSlideshowType extends \Drupal\Component\Annotation\Plugin

Expanded class hierarchy of ViewsSlideshowType

1 class is annotated with ViewsSlideshowType
Cycle in modules/views_slideshow_cycle/src/Plugin/ViewsSlideshowType/Cycle.php
Provides a slideshow type based on jquery cycle.

File

src/Annotation/ViewsSlideshowType.php, line 12

Namespace

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

}

Members

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