You are here

class GridStackEngine in GridStack 8.2

Defines a GridStackEngine item annotation object.

Hierarchy

Expanded class hierarchy of GridStackEngine

6 classes are annotated with GridStackEngine
Bootstrap3 in src/Plugin/gridstack/engine/Bootstrap3.php
Provides a GridStack Bootstrap 3 layout engine.
Bootstrap4 in src/Plugin/gridstack/engine/Bootstrap4.php
Provides a GridStack Bootstrap 4 layout engine.
Foundation5 in src/Plugin/gridstack/engine/Foundation5.php
Provides a GridStack Foundation5 layout engine.
GridStackJs in src/Plugin/gridstack/engine/GridStackJs.php
Provides a GridStack JS layout engine.
GridStackNative in src/Plugin/gridstack/engine/GridStackNative.php
Provides a GridStack native CSS Grid layout engine.

... See full list

File

src/Annotation/GridStackEngine.php, line 12

Namespace

Drupal\gridstack\Annotation
View source
class GridStackEngine extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The group of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $group;

  /**
   * Whether to hide plugin from Grid framework option.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $hidden;

  /**
   * The label of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

  /**
   * The version of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $version;

}

Members

Namesort descending Modifiers Type Description Overrides
GridStackEngine::$group public property The group of the plugin.
GridStackEngine::$hidden public property Whether to hide plugin from Grid framework option.
GridStackEngine::$id public property The plugin ID.
GridStackEngine::$label public property The label of the plugin.
GridStackEngine::$version public property The version of the plugin.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2