public function VideoEmbedWysiwyg::settingsForm in Video Embed Field 8
Same name and namespace in other branches
- 8.2 modules/video_embed_wysiwyg/src/Plugin/CKEditorPlugin/VideoEmbedWysiwyg.php \Drupal\video_embed_wysiwyg\Plugin\CKEditorPlugin\VideoEmbedWysiwyg::settingsForm()
Returns a settings form to configure this CKEditor plugin.
If the plugin's behavior depends on extensive options and/or external data, then the implementing module can choose to provide a separate, global configuration page rather than per-text-editor settings. In that case, this form should provide a link to the separate settings page.
Parameters
array $form: An empty form array to be populated with a configuration form, if any.
\Drupal\Core\Form\FormStateInterface $form_state: The state of the entire filter administration form.
\Drupal\editor\Entity\Editor $editor: A configured text editor object.
Return value
array A render array for the settings form.
Overrides CKEditorPluginConfigurableInterface::settingsForm
File
- modules/
video_embed_wysiwyg/ src/ Plugin/ CKEditorPlugin/ VideoEmbedWysiwyg.php, line 52
Class
- VideoEmbedWysiwyg
- The media_entity plugin for video_embed_field.
Namespace
Drupal\video_embed_wysiwyg\Plugin\CKEditorPluginCode
public function settingsForm(array $form, FormStateInterface $form_state, Editor $editor) {
$editor_settings = $editor
->getSettings();
$plugin_settings = NestedArray::getValue($editor_settings, [
'plugins',
'video_embed',
'defaults',
'children',
]);
$settings = $plugin_settings ?: [];
$form['defaults'] = [
'#title' => $this
->t('Default Settings'),
'#type' => 'fieldset',
'#tree' => TRUE,
'children' => Video::mockInstance($settings)
->settingsForm([], new FormState()),
];
return $form;
}