public function ImageResize::buildConfigurationForm in Drupal 10
File
- core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/ImageResize.php, line 32
Class
- ImageResize
- CKEditor 5 ImageResize plugin.
Namespace
Drupal\ckeditor5\Plugin\CKEditor5Plugin
Code
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form['allow_resize'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Allow the user to resize images'),
'#default_value' => $this->configuration['allow_resize'],
];
return $form;
}