You are here

class Border in Bootstrap Styles 1.0.x

Same name in this branch
  1. 1.0.x src/Plugin/BootstrapStyles/Style/Border.php \Drupal\bootstrap_styles\Plugin\BootstrapStyles\Style\Border
  2. 1.0.x src/Plugin/BootstrapStyles/StylesGroup/Border.php \Drupal\bootstrap_styles\Plugin\BootstrapStyles\StylesGroup\Border

Class Border.

@package Drupal\bootstrap_styles\Plugin\StylesGroup

Plugin annotation


@StylesGroup(
  id = "border",
  title = @Translation("Border"),
  weight = 4,
  icon = "bootstrap_styles/images/plugins/border-icon.svg"
)

Hierarchy

Expanded class hierarchy of Border

3 string references to 'Border'
bootstrap_styles.schema.yml in config/schema/bootstrap_styles.schema.yml
config/schema/bootstrap_styles.schema.yml
Border::buildConfigurationForm in src/Plugin/BootstrapStyles/StylesGroup/Border.php
Border::buildStyleFormElements in src/Plugin/BootstrapStyles/Style/Border.php

File

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

Namespace

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

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

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

}

Members

Namesort descending Modifiers Type Description Overrides
Border::buildConfigurationForm public function Overrides StylesGroupPluginBase::buildConfigurationForm
Border::buildStyleFormElements public function Overrides StylesGroupPluginBase::buildStyleFormElements
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.
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