Mercurial > hg > isophonics-drupal-site
view core/modules/ckeditor/js/ckeditor.drupalimage.admin.es6.js @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line source
/** * @file * CKEditor 'drupalimage' plugin admin behavior. */ (function ($, Drupal, drupalSettings) { /** * Provides the summary for the "drupalimage" plugin settings vertical tab. * * @type {Drupal~behavior} * * @prop {Drupal~behaviorAttach} attach * Attaches summary behaviour to the "drupalimage" settings vertical tab. */ Drupal.behaviors.ckeditorDrupalImageSettingsSummary = { attach() { $('[data-ckeditor-plugin-id="drupalimage"]').drupalSetSummary((context) => { const root = 'input[name="editor[settings][plugins][drupalimage][image_upload]'; const $status = $(`${root}[status]"]`); const $maxFileSize = $(`${root}[max_size]"]`); const $maxWidth = $(`${root}[max_dimensions][width]"]`); const $maxHeight = $(`${root}[max_dimensions][height]"]`); const $scheme = $(`${root}[scheme]"]:checked`); const maxFileSize = $maxFileSize.val() ? $maxFileSize.val() : $maxFileSize.attr('placeholder'); const maxDimensions = ($maxWidth.val() && $maxHeight.val()) ? `(${$maxWidth.val()}x${$maxHeight.val()})` : ''; if (!$status.is(':checked')) { return Drupal.t('Uploads disabled'); } let output = ''; output += Drupal.t('Uploads enabled, max size: @size @dimensions', { '@size': maxFileSize, '@dimensions': maxDimensions }); if ($scheme.length) { output += `<br />${$scheme.attr('data-label')}`; } return output; }); }, }; }(jQuery, Drupal, drupalSettings));