Home
last modified time | relevance | path

Searched refs:groups (Results 26 – 50 of 316) sorted by relevance

12345678910>>...13

/plugin/htmlokay/
H A Dhelper.php18 var $groups; variable in helper_plugin_htmlOKay
112 $this->groups = $this->saved_inf['group'];
179 if (isset($this->groups) && !empty($this->groups))
181 $groups = array_keys($this->groups);
183 $groups_found = $this->in_groups($INF0_groups, $groups);
235 $group_level = $this->get_permission_level($groups_found, $this->groups);
297 function in_groups($INF0_groups, $groups) argument
306 if (array_search ($grp, $groups) !== false)
H A Dadmin.php30 var $groups = array(); variable in admin_plugin_htmlOKay
195 $groups = explode(",", $row[4]);
199 $this->users[$row[0]]['grps'] = $groups;
201 foreach($groups as $grp)
203 $this->groups[$grp][] = $row[0];
290 $groups = $this->groups;
291 foreach($groups as $group => $val)
367 $groups = implode(',', $user_array['grps']);
525 function debug($users = false, $groups = false) argument
544 if($groups) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/VMMigrationService/
H A DListGroupsResponse.php37 public function setGroups($groups) argument
39 $this->groups = $groups;
46 return $this->groups;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php59 protected $groups = []; variable in PHPUnit_Framework_TestSuite
206 * @param array $groups
217 empty($groups)) {
221 if (empty($groups)) {
222 $groups = ['default'];
225 foreach ($groups as $group) {
234 $test->setGroups($groups);
629 return array_keys($this->groups);
634 return $this->groups;
640 * @param array $groups
[all …]
/plugin/aclplusregex/
H A Daction.php13 * 2) for each line apply the user/group regex to the users login and groups
21 * 6) combine all groups in a single regular expression (most significant is first)
40 /** @var int used to uniquely name capture groups */
66 $groups = $event->data['groups'];
73 $this->ruleCache[$user] = $this->rulesToRegex($this->loadACLRules($user, $groups));
107 if (!is_string($key)) continue; // we only care bout named groups
121 * @param string[] $groups argument
124 protected function loadACLRules($user, $groups)
126 $entities = $this->createUserGroupEntities($user, $groups);
167 createUserGroupEntities($user, $groups) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/
H A DGroups.php55 public function setGroups($groups) argument
57 $this->groups = $groups;
64 return $this->groups;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dtestdox-xml.phpt19 …ClassName="Status" prettifiedMethodName="Success" status="0" time="%s" size="-1" groups="default"/>
20 …e="Status" prettifiedMethodName="Failure" status="3" time="%s" size="-1" groups="default" exceptio…
21 …ame="Status" prettifiedMethodName="Error" status="4" time="%s" size="-1" groups="default" exceptio…
22 …ssName="Status" prettifiedMethodName="Incomplete" status="2" time="%s" size="-1" groups="default"/>
23 …ClassName="Status" prettifiedMethodName="Skipped" status="1" time="%s" size="-1" groups="default"/>
24 …edClassName="Status" prettifiedMethodName="Risky" status="5" time="%s" size="-1" groups="default"/>
25 …ClassName="Status" prettifiedMethodName="Warning" status="6" time="%s" size="-1" groups="default"/>
/plugin/autologoff/lang/en/
H A Dintro.txt3 Here you can specify users and groups that should be logged out after the configured time of inactivity. Be sure to prefix groups with ''@''. A user that is member of multiple configured groups will be given the largest configured time. You can specify ''0'' to disable auto-loggoff for certain groups or users
/plugin/authloginapi/
H A Dauth.php99 * @param array $groups
101 protected function setUserSession($id, $username, $groups = array()) argument
105 $groups = array_unique($groups);
109 $USERINFO['grps'] = $groups;
/plugin/virtualgroup/
H A Dadmin.php31 $this->addUserGroups($INPUT->str('user'), $INPUT->str('groups'));
39 $this->editUserGroups($INPUT->str('user'), $INPUT->str('groups'));
48 $INPUT->remove('groups');
53 $INPUT->set('groups', implode(
70 * Add groups to a user
73 * @param string $groups comma separated list of groups
76 protected function addUserGroups($user, $groups)
82 $groups = array_unique(array_map(
84 explode(',', $groups)
11 var $groups; global() variable in admin_plugin_virtualgroup
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Calendar/
H A DFreeBusyResponse.php56 public function setGroups($groups) argument
58 $this->groups = $groups;
65 return $this->groups;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DGroupssettings.php41 public $groups; variable in Google\\Service\\Groupssettings
54 $this->servicePath = 'groups/v1/groups/';
62 'groups',
H A DYouTubeAnalytics.php54 public $groups; variable in Google\\Service\\YouTubeAnalytics
121 'groups',
125 'path' => 'v2/groups',
138 'path' => 'v2/groups',
147 'path' => 'v2/groups',
168 'path' => 'v2/groups',
/plugin/wysiwyg/
H A Dajax.php76 $groups = $USERINFO['grps'];
77 $aclLevel = auth_aclcheck($ID,$user,$groups);
122 $groups = $USERINFO['grps'];
123 $aclLevel = auth_aclcheck($ID,$user,$groups);
149 $groups = $USERINFO['grps'];
150 $aclLevel = auth_aclcheck($ID,$user,$groups);
/plugin/acknowledge/
H A Dhelper.php56 * Wrapper function for auth_isMember which accepts groups as string
60 * @param string $groups
65 public function auth_isMember($memberList, $user, $groups)
67 return auth_isMember($memberList, $user, explode('///', $groups));
254 * @param string[] $groups groups this user is in
257 public function isUserAssigned($page, $user, $groups)
263 return auth_isMember($assignees, $user, $groups);
272 * @param array $groups
277 public function getUserAssignments($user, $groups,
52 auth_isMember($memberList, $user, $groups) global() argument
238 isUserAssigned($page, $user, $groups) global() argument
258 getUserAssignments($user, $groups) global() argument
478 getUserAcknowledgements($user, $groups) global() argument
[all...]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DStaticPropertyMetadata.php18 * @param array $groups
20 … public function __construct(string $className, string $fieldName, $fieldValue, array $groups = []) argument
27 $this->groups = $groups;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Exclusion/
H A DGroupsExclusionStrategyTest.php16 * @param array $groups
21 … public function testUninitializedContextIsWorking(array $propertyGroups, array $groups, $exclude) argument
24 $metadata->groups = $propertyGroups;
26 $strat = new GroupsExclusionStrategy($groups);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst14 <discriminator-groups>
16 </discriminator-groups>
34 groups="foo,bar"
45 <groups>
48 </groups>
69 groups="foo,bar"
88 groups="foo,bar"
96 <groups>
99 </groups>
/plugin/usermanagerextended/action/
H A Dextend.php79 $groups = $event->data['params'][4];
81 $groups = $event->data['params'][1]['grps'];
87 !empty($groups) &&
91 $groups
/plugin/authdiscourse/
H A Dauth.php63 $groups = explode(',', $login['groups']);
64 $groups[] = 'user';
65 if ($login['admin'] == 'true') $groups[] = 'admin';
66 if ($login['moderator'] == 'true') $groups[] = 'moderator';
67 $USERINFO['grps'] = $groups;
/plugin/data-graph/
H A Dsyntax.php61 $groups = explode(",",$kv["choosableGroups"]);
82 if (count($groups) > 0){
87 foreach($groups as $g){
109 if (count($groups) > 0){
113 foreach($groups as $g){
128 if (count($groups) > 0){
/plugin/datagraph/
H A Dsyntax.php61 $groups = explode(",",$kv["choosableGroups"]);
82 if (count($groups) > 0){
87 foreach($groups as $g){
109 if (count($groups) > 0){
113 foreach($groups as $g){
128 if (count($groups) > 0){
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DGroupTestSuite.php26 public function __construct(PHPUnit_Framework_TestSuite $suite, array $groups) argument
31 foreach ($groups as $group) {
48 foreach ($groups as $group) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DGroup.php20 * @param array $groups
23 …public function __construct(RecursiveIterator $iterator, array $groups, PHPUnit_Framework_TestSuit… argument
28 if (in_array($group, $groups)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php692 $groups = [];
697 $groups = $annotations['class']['author'];
701 $groups = array_merge($groups, $annotations['class']['group']);
705 $groups = array_merge($groups, $annotations['method']['group']);
709 $groups = array_merge($groups, $annotations['class']['ticket']);
713 $groups = array_merge($groups, $annotations['method']['ticket']);
719 $groups[] = $size;
725 return array_unique($groups);
742 if (isset($groups['large']) ||
746 } elseif (isset($groups['medium'])) {
[all …]

12345678910>>...13