Page MenuHomePhabricator
Authored By
Krenair
Jul 16 2015, 2:35 AM
Size
443 B
Referenced Files
None
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;
}

File Metadata

Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
184152
Default Alt Text
(443 B)

Event Timeline