You are here

class Shadow in Bootstrap Styles 1.0.x

Class Shadow.

@package Drupal\bootstrap_styles\Plugin\StylesGroup

Plugin annotation


@StylesGroup(
  id = "shadow",
  title = @Translation("Shadow"),
  weight = 5,
  icon = "bootstrap_styles/images/plugins/shadow-icon.svg"
)

Hierarchy

Expanded class hierarchy of Shadow

1 string reference to 'Shadow'
Shadow::buildConfigurationForm in src/Plugin/BootstrapStyles/StylesGroup/Shadow.php

File

src/Plugin/BootstrapStyles/StylesGroup/Shadow.php, line 20

Namespace

Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup
View source
class Shadow extends StylesGroupPluginBase {

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form['shadow'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Shadow'),
      '#open' => FALSE,
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function buildStyleFormElements(array &$form, FormStateInterface $form_state, $storage) {
    $form['shadow_preview'] = [
      '#theme' => 'shadow_preview',
    ];
    return $form;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
Shadow::buildConfigurationForm public function Overrides StylesGroupPluginBase::buildConfigurationForm
Shadow::buildStyleFormElements public function Overrides StylesGroupPluginBase::buildStyleFormElements
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
StylesGroupPluginBase::$configFactory protected property The config factory.
StylesGroupPluginBase::build public function
StylesGroupPluginBase::config public function
StylesGroupPluginBase::CONFIG constant Config settings.
StylesGroupPluginBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
StylesGroupPluginBase::getIconPath public function
StylesGroupPluginBase::getTitle public function Return the title of the Styles Group form plugin. Overrides StylesGroupPluginInterface::getTitle
StylesGroupPluginBase::getTitleWithIcon public function
StylesGroupPluginBase::submitConfigurationForm public function
StylesGroupPluginBase::submitStyleFormElements public function 1
StylesGroupPluginBase::validateConfigurationForm public function
StylesGroupPluginBase::__construct public function Constructs a StylePluginBase object. Overrides PluginBase::__construct