You are here

InputButton.php in Open Social 8.7

File

themes/socialbase/src/Plugin/Preprocess/InputButton.php
View source
<?php

namespace Drupal\socialbase\Plugin\Preprocess;

use Drupal\bootstrap\Utility\Element;
use Drupal\bootstrap\Utility\Variables;
use Drupal\bootstrap\Plugin\Preprocess\InputButton as BaseInputButton;

/**
 * Pre-processes variables for the "input__button" theme hook.
 *
 * @ingroup plugins_preprocess
 *
 * @BootstrapPreprocess("input__button")
 */
class InputButton extends BaseInputButton {

  /**
   * {@inheritdoc}
   */
  public function preprocessElement(Element $element, Variables $variables) {
    $element
      ->setButtonSize();
    $element
      ->setIcon($element
      ->getProperty('icon'));
    $variables['icon_only'] = $element
      ->getProperty('icon_only');
    $variables['icon_position'] = $element
      ->getProperty('icon_position');
    $variables['label'] = $element
      ->getProperty('value');
    if ($element
      ->getProperty('split')) {
      $variables
        ->map([
        $variables::SPLIT_BUTTON,
      ]);
    }
    parent::preprocessElement($element, $variables);
    $variables['attributes']
      ->removeClass('btn-default');
  }

}

Classes

Namesort descending Description
InputButton Pre-processes variables for the "input__button" theme hook.