varbase_layout_builder-9.0.0-alpha2/src/Plugin/BootstrapStyles/Style/HorizontalAlignment.php
src/Plugin/BootstrapStyles/Style/HorizontalAlignment.php
<?php
namespace Drupal\varbase_layout_builder\Plugin\BootstrapStyles\Style;
use Drupal\bootstrap_styles\Style\StylePluginBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\layout_builder\Form\ConfigureSectionForm;
/**
* Horizontal Alignment.
*
* @package Drupal\varbase_layout_builder\Plugin\Style
*
* @Style(
* id = "horizontal_alignment",
* title = @Translation("Horizontal alignment"),
* group_id = "alignment",
* weight = 1
* )
*/
class HorizontalAlignment extends StylePluginBase {
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$config = $this->config();
$form['alignment']['horizontal_alignment'] = [
'#type' => 'textarea',
'#default_value' => $config->get('horizontal_alignment'),
'#title' => $this->t('Horizontal alignment (classes)'),
'#description' => $this->t('<p>Enter one value per line, in the format <b>key|label</b> where <em>key</em> is the CSS class name (without the .), and <em>label</em> is the human readable name of the text.</p>'),
'#cols' => 60,
'#rows' => 5,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this->config()
->set('horizontal_alignment', $form_state->getValue('horizontal_alignment'))
->save();
}
/**
* {@inheritdoc}
*/
public function buildStyleFormElements(array &$form, FormStateInterface $form_state, $storage) {
$form_object = $form_state->getFormObject();
if ($form_object instanceof ConfigureSectionForm) {
$form['horizontal_alignment'] = [
'#type' => 'radios',
'#options' => $this->getStyleOptions('horizontal_alignment'),
'#title' => $this->t('Horizontal alignment'),
'#default_value' => $storage['horizontal_alignment']['class'] ?? NULL,
'#validated' => TRUE,
'#attributes' => [
'class' => ['field-horizontal-alignment', 'bs_input-boxes'],
],
];
// Add icons to the container types.
foreach ($form['horizontal_alignment']['#options'] as $key => $value) {
$form['horizontal_alignment']['#options'][$key] = '<span class="input-icon ' . $key . '"></span>' . $value;
}
// Attach the Layout Builder form style for this plugin.
$form['#attached']['library'][] = 'varbase_layout_builder/plugin.horizontal_alignment.layout_builder_form';
}
else {
$form['horizontal_alignment'] = [
'#type' => 'radios',
'#options' => $this->getStyleOptions('horizontal_alignment'),
'#title' => $this->t('Horizontal alignment'),
'#validated' => TRUE,
'#attributes' => [
'class' => ['field-horizontal-alignment', 'bs_input-boxes'],
],
'#access' => FALSE,
'#default_value' => NULL,
];
}
return $form;
}
/**
* {@inheritdoc}
*/
public function submitStyleFormElements(array $group_elements) {
return [
'horizontal_alignment' => [
'class' => $group_elements['horizontal_alignment'],
],
];
}
}
