Update to Drupal 8.0.0-beta15. For more information, see: https://www.drupal.org/node/2563023
This commit is contained in:
parent
2720a9ec4b
commit
f3791f1da3
1898 changed files with 54300 additions and 11481 deletions
|
@ -11,6 +11,7 @@
|
|||
* Theme function for a "backstage" for the Quick Edit module.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {string} settings.id
|
||||
* The id to apply to the backstage.
|
||||
*
|
||||
|
@ -27,6 +28,7 @@
|
|||
* Theme function for a toolbar container of the Quick Edit module.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {string} settings.id
|
||||
* the id to apply to the backstage.
|
||||
*
|
||||
|
@ -50,6 +52,7 @@
|
|||
* Theme function for a toolbar container of the Quick Edit module.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {string} settings.entityLabel
|
||||
* The title of the active entity.
|
||||
* @param {string} settings.fieldLabel
|
||||
|
@ -59,7 +62,8 @@
|
|||
* The corresponding HTML.
|
||||
*/
|
||||
Drupal.theme.quickeditEntityToolbarLabel = function (settings) {
|
||||
return '<span class="field">' + settings.fieldLabel + '</span>' + settings.entityLabel;
|
||||
// @todo Add XSS regression test coverage in https://www.drupal.org/node/2547437
|
||||
return '<span class="field">' + Drupal.checkPlain(settings.fieldLabel) + '</span>' + Drupal.checkPlain(settings.entityLabel);
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -76,6 +80,7 @@
|
|||
* Theme function for a toolbar container of the Quick Edit module.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {string} settings.id
|
||||
* The id to apply to the toolbar container.
|
||||
*
|
||||
|
@ -90,6 +95,7 @@
|
|||
* Theme function for a toolbar toolgroup of the Quick Edit module.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {string} [settings.id]
|
||||
* The id of the toolgroup.
|
||||
* @param {string} settings.classes
|
||||
|
@ -122,6 +128,7 @@
|
|||
* modal.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {Array} settings.buttons
|
||||
* - String type: the type of the button (defaults to 'button')
|
||||
* - Array classes: the classes of the button.
|
||||
|
@ -156,6 +163,7 @@
|
|||
* Theme function for a form container of the Quick Edit module.
|
||||
*
|
||||
* @param {object} settings
|
||||
* Settings object used to construct the markup.
|
||||
* @param {string} settings.id
|
||||
* The id to apply to the toolbar container.
|
||||
* @param {string} settings.loadingMsg
|
||||
|
|
Reference in a new issue