mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
ENHANCMENT: get svn merged revision 84806:84808 from branches/iss
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@84814 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
2c703c8a84
commit
02f4ff232f
@ -1,21 +1,27 @@
|
||||
Behaviour.register({
|
||||
'ul.SelectionGroup input.selector' : {
|
||||
onclick : function() {
|
||||
var prnt = this.parentNodeWithTag('ul');
|
||||
var li = this.parentNodeWithTag('li');
|
||||
var i, item, allItems = prnt.childNodes;
|
||||
for(i=0;item=allItems[i];i++) if(item.tagName) {
|
||||
if(item == li) {
|
||||
Element.addClassName(item, 'selected')
|
||||
} else {
|
||||
Element.removeClassName(item, 'selected')
|
||||
}
|
||||
(function($) {
|
||||
$(document).ready(function() {
|
||||
$('ul.SelectionGroup input.selector').livequery('click', function(){
|
||||
var prnt = this.parentNodeWithTag('ul');
|
||||
var li = this.parentNodeWithTag('li');
|
||||
var i, item, allItems = prnt.childNodes;
|
||||
for(i=0;item=allItems[i];i++) if(item.tagName) {
|
||||
if(item == li) {
|
||||
Element.addClassName(item, 'selected')
|
||||
} else {
|
||||
Element.removeClassName(item, 'selected')
|
||||
}
|
||||
},
|
||||
parentNodeWithTag: function(tagName) {
|
||||
var el = this.parentNode;
|
||||
while(el.parentNode && el.tagName.toLowerCase() != tagName) el = el.parentNode;
|
||||
return el;
|
||||
}
|
||||
});
|
||||
})
|
||||
})(jQuery);
|
||||
|
||||
SelectionGroupSelector = Class.create();
|
||||
SelectionGroupSelector.prototype = {
|
||||
parentNodeWithTag: function(tagName){
|
||||
var el = this.parentNode;
|
||||
while(el.parentNode && el.tagName.toLowerCase() != tagName) el = el.parentNode;
|
||||
return el;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
SelectionGroupSelector.applyTo('ul.SelectionGroup input.selector');
|
@ -227,6 +227,7 @@ class Permission extends DataObject {
|
||||
|
||||
/**
|
||||
* Get all the 'any' permission codes available to the given member.
|
||||
* @return array();
|
||||
*/
|
||||
public static function permissions_for_member($memberID) {
|
||||
$groupList = self::groupList($memberID);
|
||||
|
Loading…
Reference in New Issue
Block a user