You are here

public function TokenBrowser::getConfig in Token Filter 8

Returns the additions to CKEDITOR.config for a specific CKEditor instance.

The editor's settings can be retrieved via $editor->getSettings(), but be aware that it may not yet contain plugin-specific settings, because the user may not yet have configured the form. If there are plugin-specific settings (verify with isset()), they can be found at

$settings = $editor
  ->getSettings();
$plugin_specific_settings = $settings['plugins'][$plugin_id];

Parameters

\Drupal\editor\Entity\Editor $editor: A configured text editor object.

Return value

array A keyed array, whose keys will end up as keys under CKEDITOR.config.

Overrides CKEditorPluginInterface::getConfig

1 call to TokenBrowser::getConfig()
TokenBrowser::settingsForm in src/Plugin/CKEditorPlugin/TokenBrowser.php
Returns a settings form to configure this CKEditor plugin.

File

src/Plugin/CKEditorPlugin/TokenBrowser.php, line 158

Class

TokenBrowser
Defines the "tokenbrowser" plugin.

Namespace

Drupal\token_filter\Plugin\CKEditorPlugin

Code

public function getConfig(Editor $editor) {

  // Get settings.
  $token_types = NULL;
  $settings = $editor
    ->getSettings();
  if (isset($settings['plugins']['tokenbrowser'], $settings['plugins']['tokenbrowser']['token_types'])) {
    $token_types = $settings['plugins']['tokenbrowser']['token_types'];
  }
  return [
    'TokenBrowser_buttons' => $this
      ->getButtons($token_types),
    'token_types' => $token_types,
  ];
}