public function ConfigForm::buildForm in Block Attributes 8
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ ConfigForm.php, line 41 - Contains Drupal\block_attributes\Form\ConfigForm.
Class
- ConfigForm
- Class ConfigForm.
Namespace
Drupal\block_attributes\FormCode
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);
}