diff --git a/core/modules/ckeditor5/ckeditor5.libraries.yml b/core/modules/ckeditor5/ckeditor5.libraries.yml index a42b9434950c78c03e81b8aae87831b168c69bfd..5acd34d88bacf684e5fe9cc7eb4938d9121137f7 100644 --- a/core/modules/ckeditor5/ckeditor5.libraries.yml +++ b/core/modules/ckeditor5/ckeditor5.libraries.yml @@ -208,3 +208,8 @@ internal.admin.image: css: theme: css/image.admin.css: { } + js: + js/ckeditor5.image.admin.js: { } + dependencies: + - core/jquery + - core/drupal diff --git a/core/modules/ckeditor5/js/ckeditor5.image.admin.js b/core/modules/ckeditor5/js/ckeditor5.image.admin.js new file mode 100644 index 0000000000000000000000000000000000000000..5d9d9f9a16336c442538b8a576e8fa32a22bf6e4 --- /dev/null +++ b/core/modules/ckeditor5/js/ckeditor5.image.admin.js @@ -0,0 +1,30 @@ +/** + * @file + * CKEditor 5 Image admin behavior. + */ + +(function ($, Drupal) { + /** + * Provides the summary for the "image" plugin settings vertical tab. + * + * @type {Drupal~behavior} + * + * @prop {Drupal~behaviorAttach} attach + * Attaches summary behavior to the plugin settings vertical tab. + */ + Drupal.behaviors.ckeditor5ImageSettingsSummary = { + attach() { + $('[data-ckeditor5-plugin-id="ckeditor5_image"]').drupalSetSummary( + (context) => { + const uploadsEnabled = document.querySelector( + '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-image-status"]', + ).checked; + if (uploadsEnabled) { + return Drupal.t('Images can only be uploaded.'); + } + return Drupal.t('Images can only be added by URL.'); + }, + ); + }, + }; +})(jQuery, Drupal); diff --git a/core/modules/editor/editor.admin.inc b/core/modules/editor/editor.admin.inc index 9e2cdc6114acd7b4f2d2d46adbe40ef721c83c99..6a474689d43986d82dbacd76e794ec14d50b5eaa 100644 --- a/core/modules/editor/editor.admin.inc +++ b/core/modules/editor/editor.admin.inc @@ -43,6 +43,7 @@ function editor_image_upload_settings_form(Editor $editor) { '#attributes' => [ 'data-editor-image-upload' => 'status', ], + '#description' => t('When enabled, images can only be uploaded. When disabled, images can only be added by URL.'), ]; $show_if_image_uploads_enabled = [ 'visible' => [