mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3ee8f505b7
The main benefit of this is so that authors who make use of .editorconfig don't end up with whitespace changes in their PRs. Spaces vs. tabs has been left alone, although that could do with a tidy-up in SS4 after the switch to PSR-1/2. The command used was this: for match in '*.ss' '*.css' '*.scss' '*.html' '*.yml' '*.php' '*.js' '*.csv' '*.inc' '*.php5'; do find . -path ./thirdparty -not -prune -o -path ./admin/thirdparty -not -prune -o -type f -name "$match" -exec sed -E -i '' 's/[[:space:]]+$//' {} \+ find . -path ./thirdparty -not -prune -o -path ./admin/thirdparty -not -prune -o -type f -name "$match" | xargs perl -pi -e 's/ +$//' done
80 lines
2.2 KiB
JavaScript
80 lines
2.2 KiB
JavaScript
/**
|
|
* File: SecurityAdmin.js
|
|
*/
|
|
(function($) {
|
|
|
|
var refreshAfterImport = function(e) {
|
|
// Check for a message <div>, an indication that the form has been submitted.
|
|
var existingFormMessage = $($(this).contents()).find('.message');
|
|
if(existingFormMessage && existingFormMessage.html()) {
|
|
// Refresh member listing
|
|
var memberTableField = $(window.parent.document).find('#Form_EditForm_Members').get(0);
|
|
if(memberTableField) memberTableField.refresh();
|
|
|
|
// Refresh tree
|
|
var tree = $(window.parent.document).find('.cms-tree').get(0);
|
|
if(tree) tree.reload();
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Refresh the member listing every time the import iframe is loaded,
|
|
* which is most likely a form submission.
|
|
*/
|
|
$('#MemberImportFormIframe, #GroupImportFormIframe').entwine({
|
|
onadd: function() {
|
|
this._super();
|
|
// TODO entwine can't seem to bind to iframe load events
|
|
$(this).bind('load', refreshAfterImport);
|
|
}
|
|
});
|
|
|
|
$.entwine('ss', function($){
|
|
/**
|
|
* Class: #Permissions .checkbox[value=ADMIN]
|
|
*
|
|
* Automatically check and disable all checkboxes if ADMIN permissions are selected.
|
|
* As they're disabled, any changes won't be submitted (which is intended behaviour),
|
|
* checking all boxes is purely presentational.
|
|
*/
|
|
$('.permissioncheckboxset .checkbox[value=ADMIN]').entwine({
|
|
onmatch: function() {
|
|
this.toggleCheckboxes();
|
|
|
|
this._super();
|
|
},
|
|
onunmatch: function() {
|
|
this._super();
|
|
},
|
|
/**
|
|
* Function: onclick
|
|
*/
|
|
onclick: function(e) {
|
|
this.toggleCheckboxes();
|
|
},
|
|
/**
|
|
* Function: toggleCheckboxes
|
|
*/
|
|
toggleCheckboxes: function() {
|
|
var self = this,
|
|
checkboxes = this.parents('.field:eq(0)').find('.checkbox').not(this);
|
|
|
|
if(this.is(':checked')) {
|
|
checkboxes.each(function() {
|
|
$(this).data('SecurityAdmin.oldChecked', $(this).is(':checked'));
|
|
$(this).data('SecurityAdmin.oldDisabled', $(this).is(':disabled'));
|
|
$(this).prop('disabled', true);
|
|
$(this).prop('checked', true);
|
|
});
|
|
} else {
|
|
checkboxes.each(function() {
|
|
$(this).prop('checked', $(this).data('SecurityAdmin.oldChecked'));
|
|
$(this).prop('disabled', $(this).data('SecurityAdmin.oldDisabled'));
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
}(jQuery));
|