function ckeditor_library_info_alter

Implements hook_library_info_alter().

File

core/modules/ckeditor/ckeditor.module, line 110

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;
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.