You are here

Style.php in Bootstrap Styles 1.0.x

File

src/Annotation/Style.php
View source
<?php

namespace Drupal\bootstrap_styles\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a style form plugin annotation object.
 *
 * @Annotation
 */
class Style extends Plugin {

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

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

  /**
   * An integer to determine the weight of this style.
   *
   * @var intoptional
   */
  public $weight = NULL;

}

Classes

Namesort descending Description
Style Defines a style form plugin annotation object.