Chris@0: getSettings(), but be Chris@0: * aware that it may not yet contain plugin-specific settings, because the Chris@0: * user may not yet have configured the form. Chris@0: * If there are plugin-specific settings (verify with isset()), they can be Chris@0: * found at Chris@0: * @code Chris@0: * $settings = $editor->getSettings(); Chris@0: * $plugin_specific_settings = $settings['plugins'][$plugin_id]; Chris@0: * @endcode Chris@0: * Chris@0: * @param \Drupal\editor\Entity\Editor $editor Chris@0: * A configured text editor object. Chris@0: * @return array Chris@0: * A keyed array, whose keys will end up as keys under CKEDITOR.config. Chris@0: */ Chris@0: public function getConfig(Editor $editor); Chris@0: Chris@0: }