Page MenuHomePhabricator
Authored By
Krenair
Jul 15 2015, 10:36 PM
Size
442 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[$grop],
$wgGroupsAddToSelf[$group], $wgGroupsRemoveFromSelf[$group]
) ) > 0;
}

File Metadata

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

Event Timeline