GridStackEngine.php in GridStack 8.2
Namespace
Drupal\gridstack\AnnotationFile
src/Annotation/GridStackEngine.phpView source
<?php
namespace Drupal\gridstack\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a GridStackEngine item annotation object.
*
* @Annotation
*/
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;
}
Classes
Name![]() |
Description |
---|---|
GridStackEngine | Defines a GridStackEngine item annotation object. |