You are here

function ckeditor_library_info_alter in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/ckeditor/ckeditor.module \ckeditor_library_info_alter()
  2. 10 core/modules/ckeditor/ckeditor.module \ckeditor_library_info_alter()

Implements hook_library_info_alter().

File

core/modules/ckeditor/ckeditor.module, line 125
Provides integration with the CKEditor WYSIWYG editor.

Code

function ckeditor_library_info_alter(&$libraries, $extension) {

  // Pass Drupal's JS cache-busting string via settings along to CKEditor.
  // @see http://docs.ckeditor.com/#!/api/CKEDITOR-property-timestamp
  if ($extension === 'ckeditor' && isset($libraries['drupal.ckeditor'])) {
    $query_string = \Drupal::state()
      ->get('system.css_js_query_string', '0');
    $libraries['drupal.ckeditor']['drupalSettings']['ckeditor']['timestamp'] = $query_string;
  }
}