ds-8.x-3.9/src/Plugin/DsLayout.php
src/Plugin/DsLayout.php
<?php
namespace Drupal\ds\Plugin;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Entity\Display\EntityDisplayInterface;
use Drupal\Core\Entity\EntityFormInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Layout\LayoutDefault;
use Drupal\Core\Plugin\PluginFormInterface;
use Drupal\Core\Url;
use Drupal\ds\Ds;
use Drupal\Core\Link;
/**
* Layout class for all Display Suite layouts.
*/
class DsLayout extends LayoutDefault implements PluginFormInterface {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return parent::defaultConfiguration() + [
'wrappers' => [],
'outer_wrapper' => 'div',
'attributes' => '',
'link_attribute' => '',
'link_custom' => '',
'classes' => [
'layout_class' => [],
],
];
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$configuration = $this->getConfiguration();
$regions = $this->getPluginDefinition()->getRegions();
// Add wrappers.
$wrapper_options = [
'div' => 'Div',
'span' => 'Span',
'section' => 'Section',
'article' => 'Article',
'header' => 'Header',
'footer' => 'Footer',
'aside' => 'Aside',
'figure' => 'Figure',
];
$form['region_wrapper'] = [
'#group' => 'additional_settings',
'#type' => 'details',
'#title' => $this->t('Custom wrappers'),
'#description' => $this->t('Choose a wrapper. All Display Suite layouts support this option.'),
'#tree' => TRUE,
];
foreach ($regions as $region_name => $region_definition) {
$form['region_wrapper'][$region_name] = [
'#type' => 'select',
'#options' => $wrapper_options,
'#title' => $this->t('Wrapper for @region', ['@region' => $region_definition['label']]),
'#default_value' => !empty($configuration['wrappers'][$region_name]) ? $configuration['wrappers'][$region_name] : 'div',
];
}
$form['region_wrapper']['outer_wrapper'] = [
'#type' => 'select',
'#options' => $wrapper_options,
'#title' => $this->t('Outer wrapper'),
'#default_value' => $configuration['outer_wrapper'],
'#weight' => 10,
];
$form['region_wrapper']['attributes'] = [
'#type' => 'textarea',
'#title' => $this->t('Layout attributes'),
'#rows' => 2,
'#description' => $this->t('E.g. role|navigation,data-something|some value') . '<br />' . $this->t('Note: everything should be on one line!'),
'#default_value' => $configuration['attributes'],
'#weight' => 11,
];
$form['region_wrapper']['link_attribute'] = [
'#type' => 'select',
'#options' => [
'' => $this->t('No link'),
'content' => $this->t('Link to content'),
'custom' => $this->t('Custom'),
'tokens' => $this->t('Tokens'),
],
'#title' => $this->t('Add link'),
'#description' => $this->t('This will add an onclick attribute on the layout wrapper.'),
'#default_value' => $configuration['link_attribute'],
'#weight' => 12,
];
$form['region_wrapper']['link_custom'] = [
'#type' => 'textfield',
'#title' => $this->t('Custom link'),
'#description' => $this->t('You may use tokens for this link if you selected tokens.'),
'#default_value' => $configuration['link_custom'],
'#weight' => 13,
'#states' => [
'visible' => [
[
':input[name="layout_configuration[region_wrapper][link_attribute]"]' => [["value" => "tokens"], ["value" => "custom"]],
],
],
],
];
if (\Drupal::moduleHandler()->moduleExists('token')) {
$form['region_wrapper']['tokens'] = [
'#title' => $this->t('Tokens'),
'#type' => 'container',
'#weight' => 14,
'#states' => [
'visible' => [
':input[name="layout_configuration[region_wrapper][link_attribute]"]' => ["value" => "tokens"],
],
],
];
$token_types = 'all';
// The entity is not always available.
// See https://www.drupal.org/project/ds/issues/3137198.
if (($form_object = $form_state->getFormObject()) && $form_object instanceof EntityFormInterface && ($entity = $form_object->getEntity()) && $entity instanceof EntityDisplayInterface) {
$token_types = [$entity->getTargetEntityTypeId()];
}
$form['region_wrapper']['tokens']['help'] = [
'#theme' => 'token_tree_link',
'#token_types' => $token_types,
'#global_types' => TRUE,
'#dialog' => TRUE,
];
}
// Add extra classes for the regions to have more control while theming.
$form['ds_classes'] = [
'#group' => 'additional_settings',
'#type' => 'details',
'#title' => $this->t('Custom classes'),
'#tree' => TRUE,
'#collapsible' => TRUE,
'#collapsed' => TRUE,
];
$classes_access = (\Drupal::currentUser()->hasPermission('admin_classes'));
$classes = Ds::getClasses();
if (!empty($classes)) {
$layoutSettings = $this->getPluginDefinition()->get('settings') ?: [];
$default_layout_classes = $layoutSettings['classes']['layout_class'] ?? [];
$form['ds_classes']['layout_class'] = [
'#type' => 'select',
'#multiple' => TRUE,
'#options' => $classes,
'#title' => $this->t('Class for layout'),
'#default_value' => !empty($configuration['classes']['layout_class']) ? $configuration['classes']['layout_class'] : $default_layout_classes,
];
foreach ($regions as $region_name => $region_definition) {
$default_classes = $layoutSettings['classes'][$region_name] ?? [];
$form['ds_classes'][$region_name] = [
'#type' => 'select',
'#multiple' => TRUE,
'#options' => $classes,
'#title' => $this->t('Class for @region', ['@region' => $region_definition['label']]),
'#default_value' => $configuration['classes'][$region_name] ?? $default_classes,
];
}
if ($classes_access) {
$url = Url::fromRoute('ds.classes');
$destination = \Drupal::destination()->getAsArray();
$url->setOption('query', $destination);
$form['ds_classes']['info'] = ['#markup' => Link::fromTextAndUrl($this->t('Manage region and field CSS classes'), $url)->toString()];
}
}
else {
if ($classes_access) {
$url = Url::fromRoute('ds.classes');
$destination = \Drupal::destination()->getAsArray();
$url->setOption('query', $destination);
$form['ds_classes']['info'] = ['#markup' => '<p>' . $this->t('You have not defined any CSS classes which can be used on regions.') . '</p><p>' . Link::fromTextAndUrl($this->t('Manage region and field CSS classes'), $url)->toString() . '</p>'];
}
else {
$form['ds_classes']['#access'] = FALSE;
}
}
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
$this->configuration['wrappers'] = $form_state->getValue('region_wrapper');
foreach (['outer_wrapper', 'attributes', 'link_attribute', 'link_custom'] as $name) {
$this->configuration[$name] = $this->configuration['wrappers'][$name];
unset($this->configuration['wrappers'][$name]);
}
// Apply Xss::filter to attributes.
$this->configuration['attributes'] = Xss::filter($this->configuration['attributes']);
// In case classes is missing entirely, use the defaults.
$defaults = $this->defaultConfiguration();
$this->configuration['classes'] = $form_state->getValue('ds_classes', $defaults['classes']);
// Do not save empty classes.
foreach ($this->configuration['classes'] as $region_name => &$classes) {
foreach ($classes as $class) {
if (empty($class)) {
unset($classes[$class]);
}
}
}
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
}
}
