ConfigForm.php in Block Attributes 8
Contains Drupal\block_attributes\Form\ConfigForm.
Namespace
Drupal\block_attributes\FormFile
src/Form/ConfigForm.phpView source
<?php
/**
* @file
* Contains Drupal\block_attributes\Form\ConfigForm.
*/
namespace Drupal\block_attributes\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Component\Serialization\Exception\InvalidDataTypeException;
use Drupal\Component\Serialization\Yaml;
/**
* Class ConfigForm.
*
* @package Drupal\block_attributes\Form
*/
class ConfigForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'block_attributes.config',
];
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'block_attributes_config';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('block_attributes.config');
$conf = $config
->get();
$config_text = Yaml::encode($conf);
if (!\Drupal::moduleHandler()
->moduleExists('yaml_editor')) {
$message = $this
->t('It is recommended to install the <a href="@yaml-editor">YAML Editor</a> module for easier editing.', [
'@yaml-editor' => 'https://www.drupal.org/project/yaml_editor',
]);
drupal_set_message($message, 'warning');
}
$form['config'] = array(
'#type' => 'textarea',
'#title' => $this
->t('Configuration'),
'#description' => $this
->t('Available attributes can be defined in YAML syntax.'),
'#default_value' => $config_text,
'#rows' => 15,
'#attributes' => [
'data-yaml-editor' => 'true',
],
);
// Use module's YAML config file for example structure.
$module_path = \Drupal::moduleHandler()
->getModule('block_attributes')
->getPath();
$yml_text = file_get_contents($module_path . '/config/install/block_attributes.config.yml');
$form['example'] = [
'#type' => 'details',
'#title' => $this
->t('Example structure'),
];
$form['example']['description'] = [
'#prefix' => '<p>',
'#suffix' => '</p>',
'#markup' => $this
->t('Each attribute has an optional label and description.'),
];
$form['example']['code'] = [
'#prefix' => '<pre>',
'#suffix' => '</pre>',
'#markup' => $yml_text,
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function validateForm(array &$form, FormStateInterface $form_state) {
$config_text = $form_state
->getValue('config') ?: 'attributes:';
try {
$form_state
->set('config', Yaml::decode($config_text));
} catch (InvalidDataTypeException $e) {
$form_state
->setErrorByName('config', $e
->getMessage());
}
parent::validateForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$config = $form_state
->get('config');
$this
->config('block_attributes.config')
->setData($config)
->save();
parent::submitForm($form, $form_state);
}
}
Classes
Name | Description |
---|---|
ConfigForm | Class ConfigForm. |