context-8.x-4.x-dev/src/Plugin/ContextReaction/BodyClass.php

src/Plugin/ContextReaction/BodyClass.php
<?php

namespace Drupal\context\Plugin\ContextReaction;

use Drupal\context\ContextReactionPluginBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Provides a content reaction that adds a new css class.
 *
 * @ContextReaction(
 *   id = "body_class",
 *   label = @Translation("Body class")
 * )
 */
class BodyClass extends ContextReactionPluginBase {

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return parent::defaultConfiguration() + [
      'body_class' => '',
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function summary() {
    return $this->getConfiguration()['body_class'];
  }

  /**
   * {@inheritdoc}
   */
  public function execute(array &$vars = []) {
    return [
      'class' => explode(' ', $this->getConfiguration()['body_class']),
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form['body_class'] = [
      '#title' => $this->t('Section class'),
      '#type' => 'textfield',
      '#description' => $this->t('Provides this text as additional body class in the html.html.twig.'),
      '#default_value' => $this->getConfiguration()['body_class'],
    ];

    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    $this->setConfiguration([
      'body_class' => $form_state->getValue('body_class'),
    ]);
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc