Page MenuHomePhabricator
Paste P973

(An Untitled Masterwork)
ActivePublic

Authored by Krenair on Jul 15 2015, 10:34 PM.
Tags
None
Referenced Files
F193023:
Jul 16 2015, 2:35 AM
F192795:
Jul 15 2015, 10:36 PM
F192794:
Jul 15 2015, 10:34 PM
F192793:
Jul 15 2015, 10:34 PM
Subscribers
None
<?php
function groupExists( $group ) {
global $wgGroupPermissions, $wgRevokePermissions,
$wgAddGroups, $wgRemoveGroups,
$wgGroupsAddToSelf, $wgGroupsRemoveFromSelf;
return count( array_merge(
array_keys( array_filter( $wgGroupPermissions[$group] ) ),
array_keys( array_filter( $wgRevokePermissions[$group] ) ),
$wgAddGroups[$group], $wgRemoveGroups[$group],
$wgGroupsAddToSelf[$group], $wgGroupsRemoveFromSelf[$group]
) ) > 0;
}