-
Notifications
You must be signed in to change notification settings - Fork 1
/
d7permissions.js
executable file
·32 lines (29 loc) · 1.48 KB
/
d7permissions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// $Id$
$(document).ready(function() {
$('table#permissions:not(.permissions-processed)').each(function () {
// Create dummy checkboxes. We use dummy checkboxes instead of reusing
// the existing checkboxes here because new checkboxes don't alter the
// submitted form. If we'd automatically check existing checkboxes, the
// permission table would be polluted with redundant entries. This
// is deliberate, but desirable when we automatically check them.
$(':checkbox', this).not('[name^="2["]').not('[name^="1["]').each(function () {
$(this).addClass('real-checkbox');
$('<input type="checkbox" class="dummy-checkbox" disabled="disabled" checked="checked" />')
.attr('title', Drupal.t("This permission is inherited from the authenticated user role."))
.insertAfter(this)
.hide();
});
// Helper function toggles all dummy checkboxes based on the checkboxes'
// state. If the "authenticated user" checkbox is checked, the checked
// and disabled checkboxes are shown, the real checkboxes otherwise.
var toggle = function () {
$(this).closest('tr')
.find('.real-checkbox')[this.checked ? 'hide' : 'show']().end()
.find('.dummy-checkbox')[this.checked ? 'show' : 'hide']();
};
// Initialize the authenticated user checkbox.
$(':checkbox[name^="2["]', this)
.click(toggle)
.each(function () { toggle.call(this); });
}).addClass('permissions-processed');
});