Home
last modified time | relevance | path

Searched refs:groups (Results 76 – 100 of 316) sorted by relevance

12345678910>>...13

/plugin/publistx/bib2tpl/
H A Dbibtex_converter.php372 $groups = '';
375 $groups .= $this->translate_group($groupkey, $id++, $group, $group_tpl[1]);
378 $result = preg_replace($pattern, $groups, $result, 1);
385 $groups = '';
387 $groups .= $this->translate_group($groupkey, 0, $group, $template);
389 return $groups;
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DContext.php171 * @param array|string $groups
173 public function setGroups($groups): self argument
175 if (empty($groups)) {
179 $this->attributes['groups'] = (array) $groups;
/plugin/authsqlite/
H A DREADME.md21 JOIN groups AS g ON g.gid=ug.gid
28 'SELECT g.name AS \'group\' FROM groups g, user u,
35 LEFT JOIN groups AS g ON ug.gid=g.gid';
45 'INSERT INTO groups (name) VALUES (\'%{group}\')';
48 $conf['plugin']['authsqlite']['delGroup'] = 'DELETE FROM groups WHERE gid=%{gid}';
/plugin/statistics/inc/
H A DStatisticsLogger.class.php78 * Log actions by groups
81 * @param array $groups The groups to log
83 public function log_groups($type, $groups) { argument
84 if(!is_array($groups)) {
90 foreach($groups as $pos => $group) {
91 if(!in_array($group, $tolog)) unset($groups[$pos]);
94 if (!count($groups)) {
100 $sql = "INSERT DELAYED INTO " . $this->hlp->prefix . "groups
102 foreach($groups a
[all...]
/plugin/ireadit/
H A Dhelper.php18 * @param array $groups
25 $groups = $ireadit_data['groups'];
27 if (empty($users) && empty($groups)) {
34 } elseif (array_intersect($groups, $info['grps'])) {
/plugin/farm/install/animaltemplate/conf/
H A Dmysql.conf.php.example12 * TABLE groups
48 $conf['auth']['mysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "userg…
69 JOIN groups AS g ON g.gid=ug.gid
89 /* This statement is used to get all groups a user is member of. The
90 * result should be a table containing all groups the given user is
98 FROM groups g, users u, usergroup ug
124 LEFT JOIN groups AS g ON ug.gid=g.gid";
154 $conf['auth']['mysql']['addGroup'] = "INSERT INTO groups (name)
173 $conf['auth']['mysql']['delGroup'] = "DELETE FROM groups
199 * (a user quits membership of all groups).
[all …]
/plugin/acknowledge/syntax/
H A Dlisting.php76 $groups = $USERINFO['grps'];
80 $items = $helper->getUserAssignments($user, $groups, $includeDone);
/plugin/vbsso/
H A Dadmin.php135 $groups = array();
137 $groups[$group] = $group;
156 foreach ($groups as $group) {
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php218 if (null !== $groups = $pElem->attributes()->groups) {
219 $pMetadata->groups = preg_split('/\s*,\s*/', trim((string) $groups));
220 } elseif (isset($pElem->groups)) {
221 $pMetadata->groups = (array) $pElem->groups->value;
/plugin/newnamespacepermissions/
H A Daction.php79 $groups = $USERINFO['grps'] ?: ['ALL'];
81 if (auth_isMember($allowedToCreateNamespaces, $user, $groups) || auth_isadmin()) {
/plugin/adminperm/lang/en/
H A Dintro.txt3 This interface allows you to give access to admin and manager plugins to users and groups without m…
5 Simply specify the users and groups (''@''-prefixed) as comma separated list for each of the availa…
/plugin/htmlokay/lang/en/
H A Dselection.txt1 Use this page to set HTML access policies for users and groups.
2 Users and groups which are not granted privileges cannot use HTML in their pages.
/plugin/structgroup/types/
H A DGroup.php71 $groups = (array) $authgroup->getGroups($max, $lookup);
79 }, $groups);
/plugin/acknowledge/lang/en/
H A Dassign.txt3 Here you can define patterns to automatically assign people and groups to acknowledge certain pages.
4 Whenever a page matches one of the patterns here, the people and groups will be assigned.
/plugin/html2pdf/html2pdf/html2ps/
H A Doutput.pcl.class.php57 $groups = $this->_getGroups();
58 $size = count($groups);
60 $result .= $groups[$i]->getString();
62 $result .= $groups[$size-1]->getStringTerminate();
/plugin/wysiwyg/
H A Daction.php79 $groups = $INFO['userinfo']['grps'];
80 if(array_search("wysiwyg", $groups) ) {
/plugin/submgr/
H A Dhelper.php94 * @param string[] $groups
97 public function runRules($user, $groups) argument
102 if (auth_isMember($data[1], $user, $groups)) {
/plugin/shibbolethauth/files/
H A Dshibboleth.class.php433 $groups = join(',',$grps);
434 $userline = join(':',array($user,$pass,$name,$mail,$groups))."\n";
474 $groups = join(',',$userinfo['grps']);
475 …= join(':',array($newuser, $userinfo['pass'], $userinfo['name'], $userinfo['mail'], $groups))."\n";
604 $groups = split(",",$row[4]);
608 $this->users[$row[0]]['grps'] = $groups;
/plugin/authremoteuser/
H A DREADME.md61 add them groups `admin` and `user`.[^1]
93 Administration of users and its groups is done in the *User Manager* which is
113 loginname:password:Real Name:email:groups
125 * `groups`:
126 Comma separated list of groups a user is member of. The group names must
/plugin/showlinkpermission/
H A Drenderer.php68 $groups = $INFO['userinfo']['grps'];
70 if(!$isImage && auth_aclcheck($id, $user, $groups) < AUTH_READ) {
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst91 ``Default`` group, which can be used when specifying groups in the serialization
115 You can then tell the serializer which groups to serialize in your controller::
177 You can override groups on specific paths::
186 'manager' => array( // Override the groups for the manager of John
188 …'friends_group', // Serialize John manager's friends. If you do not override the groups for the fr…
191 'friends' => array( // Override the groups for the friends of John
193 'manager' => array( // Override the groups for the John friends' manager
194 …'Default', // This would be the default if you did not override the groups of the manager property.
/plugin/discussion/
H A Dhelper.php284 $groups = trim($this->getConf('moderatorgroups'));
288 …if(!empty($groups) && auth_isMember($groups, $_SERVER['REMOTE_USER'], (array)$USERINFO['grps'])) r…
/plugin/authwordpress/
H A Dauth.php290 $groups = array_keys(unserialize($row['grps']));
292 $groups[] = $conf['defaultgroup'];
300 'grps' => $groups,
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DCloudIdentity.php59 public $groups; variable in Google\\Service\\CloudIdentity
383 'groups',
387 'path' => 'v1/groups',
430 'path' => 'v1/groups',
451 'path' => 'v1/groups:lookup',
478 'path' => 'v1/groups:search',
/plugin/authfacebook/
H A Dauth.php241 $groups = $facebook->get('/me/groups', $accessToken);
242 $groups = $groups->getGraphEdge();
244 foreach($groups as $group){

12345678910>>...13