View source
<?php
namespace Drupal\bootstrap\Plugin\Setting;
use Drupal\bootstrap\Bootstrap;
use Drupal\bootstrap\Plugin\PluginBase;
use Drupal\bootstrap\Utility\Element;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Url;
class SettingBase extends PluginBase implements SettingInterface {
public function alterForm(array &$form, FormStateInterface $form_state, $form_id = NULL) {
$this
->alterFormElement(Element::create($form), $form_state);
}
public function alterFormElement(Element $form, FormStateInterface $form_state, $form_id = NULL) {
$this
->getSettingElement($form, $form_state);
}
public function drupalSettings() {
return FALSE;
}
public function getCacheTags() {
return [
'rendered',
];
}
public function getElementProperties() {
$properties = $this
->getPluginDefinition();
foreach ($properties as $name => $value) {
if (in_array($name, [
'class',
'defaultValue',
'definition',
'groups',
'id',
'provider',
'see',
])) {
unset($properties[$name]);
}
}
return $properties;
}
public function getDefaultValue() {
return isset($this->pluginDefinition['defaultValue']) ? $this->pluginDefinition['defaultValue'] : NULL;
}
public function getGroup(array &$form, FormStateInterface $form_state) {
Bootstrap::deprecated();
return $this
->getGroupElement(Element::create($form), $form_state);
}
public function getGroupElement(Element $form, FormStateInterface $form_state) {
$groups = $this
->getGroups();
$group = $form;
$first = TRUE;
foreach ($groups as $key => $title) {
if (!isset($group->{$key})) {
if ($title) {
$group->{$key} = [
'#type' => 'details',
'#title' => $title,
];
}
else {
$group->{$key} = [
'#type' => 'container',
];
}
$group = Element::create($group->{$key}
->getArray());
if ($first) {
$group
->setProperty('group', 'bootstrap');
}
else {
$group
->setProperty('open', FALSE);
}
}
else {
$group = Element::create($group->{$key}
->getArray());
}
$first = FALSE;
}
return $group;
}
public function getGroups() {
return !empty($this->pluginDefinition['groups']) ? $this->pluginDefinition['groups'] : [];
}
public function getElement(array &$form, FormStateInterface $form_state) {
Bootstrap::deprecated();
return $this
->getSettingElement(Element::create($form), $form_state);
}
public function getOptions() {
return isset($this->pluginDefinition['options']) ? (array) $this->pluginDefinition['options'] : [];
}
public function getSettingElement(Element $form, FormStateInterface $form_state) {
$group = $this
->getGroupElement($form, $form_state);
$plugin_id = $this
->getPluginId();
if (!isset($group->{$plugin_id})) {
foreach ($this
->getElementProperties() as $name => $value) {
$group->{$plugin_id}
->setProperty($name, $value);
}
$default_value = $form_state
->getValue($plugin_id, $this->theme
->getSetting($plugin_id));
$group->{$plugin_id}
->setProperty('default_value', $default_value);
$description = (string) $group->{$plugin_id}
->getProperty('description') ?: '';
$links = [];
foreach ($this->pluginDefinition['see'] as $url => $title) {
$link = Element::createStandalone([
'#type' => 'link',
'#url' => Url::fromUri($url),
'#title' => $title,
'#attributes' => [
'target' => '_blank',
],
]);
$links[] = (string) $link
->renderPlain();
}
if (!empty($links)) {
$description .= '<br>';
$description .= t('See also:');
$description .= ' ' . implode(', ', $links);
$group->{$plugin_id}
->setProperty('description', $description);
}
}
return $group->{$plugin_id};
}
public function getTitle() {
return !empty($this->pluginDefinition['title']) ? $this->pluginDefinition['title'] : NULL;
}
public static function submitForm(array &$form, FormStateInterface $form_state) {
static::submitFormElement(Element::create($form), $form_state);
}
public static function submitFormElement(Element $form, FormStateInterface $form_state) {
}
public static function validateForm(array &$form, FormStateInterface $form_state) {
static::validateFormElement(Element::create($form), $form_state);
}
public static function validateFormElement(Element $form, FormStateInterface $form_state) {
}
}