public function BUEditor::getJSSettings in BUEditor 8
Same name and namespace in other branches
- 8.2 src/Plugin/Editor/BUEditor.php \Drupal\bueditor\Plugin\Editor\BUEditor::getJSSettings()
Returns JavaScript settings to be attached.
Most text editors use JavaScript to provide a WYSIWYG or toolbar on the client-side interface. This method can be used to convert internal settings of the text editor into JavaScript variables that will be accessible when the text editor is loaded.
Parameters
\Drupal\editor\Entity\Editor $editor: A configured text editor object.
Return value
array An array of settings that will be added to the page for use by this text editor's JavaScript integration.
Overrides EditorPluginInterface::getJSSettings
See also
\Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments()
EditorManager::getAttachments()
File
- src/
Plugin/ Editor/ BUEditor.php, line 107
Class
- BUEditor
- Defines BUEditor as an Editor plugin.
Namespace
Drupal\bueditor\Plugin\EditorCode
public function getJSSettings(Editor $editor) {
$bueditor_editor = $this
->getBUEditorEditor($editor);
return $bueditor_editor ? $bueditor_editor
->getJSSettings($editor) : [];
}