You are here

GridStackEngine.php in GridStack 8.2

File

src/Annotation/GridStackEngine.php
View 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

Namesort descending Description
GridStackEngine Defines a GridStackEngine item annotation object.