| /dokuwiki/inc/Search/Collection/ |
| H A D | AbstractCollection.php | 140 * @param int $group Index group (0 for non-split, token length for split) 144 public function getTokenIndex(int $group = 0): AbstractIndex argument 149 return new MemoryIndex($this->idxToken, $this->groupToSuffix($group), $this->isWritable); 153 * @param int $group Index group (0 for non-split, token length for split) 157 public function getFrequencyIndex(int $group = 0): AbstractIndex argument 159 … return new MemoryIndex($this->idxFrequency, $this->groupToSuffix($group), $this->isWritable); 187 * @param int $group 191 protected function groupToSuffix(int $group): string argument 193 if ($group === 0 && $this->splitByLength) { 196 if ($group !== 0 && !$this->splitByLength) { [all …]
|
| H A D | CollectionSearch.php | 106 foreach ($this->groupedTerms as $group => $terms) { 107 $tokenIndex = $this->collection->getTokenIndex($group); 123 $freqs = $this->collection->resolveTokenFrequencies($group, array_keys($tokenMatches));
|
| H A D | PageTitleCollection.php | 30 public function getTokenIndex(int $group = 0): AbstractIndex argument
|
| H A D | DirectCollection.php | 89 public function resolveTokenFrequencies(int $group, array $tokenIds): array argument
|
| /dokuwiki/lib/plugins/authad/adLDAP/classes/ |
| H A D | adLDAPGroups.php | 93 * @param string $group The group to add the user to 98 public function addUser($group, $user, $isGUID = false) argument 110 $groupInfo = $this->info($group, array("cn")); 129 * @param string $group The group to add the contact to 133 public function addContact($group, $contactDn) argument 139 $groupInfo = $this->info($group, array("cn")); 192 * @param string $group The group to delete (please be careful here!) 196 public function delete($group) { argument 198 if ($group === null){ return "Missing compulsory field [group]"; } 200 $groupInfo = $this->info($group, array("*")); [all …]
|
| H A D | adLDAPComputers.php | 103 * @param string $group The group to check 107 public function inGroup($computerName, $group, $recursive = NULL) argument 110 if ($group === NULL) { return false; } 118 if (in_array($group, $groups)){ 144 $extraGroups = $this->adldap->group()->recursiveGroups($groupName);
|
| H A D | adLDAPContacts.php | 118 $extraGroups = $this->adldap->group()->recursiveGroups($groupName); 149 …$entries[0]["memberof"][] = $this->adldap->group()->getPrimaryGroup($entries[0]["primarygroupid"][… 184 * @param string $group The group name to query 188 public function inGroup($distinguisedName, $group, $recursive = NULL) argument 191 if ($group === NULL) { return false; } 199 if (in_array($group, $groups)){
|
| H A D | adLDAPUsers.php | 202 $extraGroups = $this->adldap->group()->recursiveGroups($groupName); 249 …$entries[0]["memberof"][] = $this->adldap->group()->getPrimaryGroup($entries[0]["primarygroupid"][… 291 * @param string $group The name of the group to check against 296 public function inGroup($username, $group, $recursive = NULL, $isGUID = false) argument 299 if ($group === NULL) { return false; } 307 if (in_array($group, $groups)) {
|
| /dokuwiki/lib/styles/ |
| H A D | all.css | 15 .group { 18 .group { 21 .group:before, 22 .group:after { 26 .group:after {
|
| /dokuwiki/conf/ |
| H A D | mysql.conf.php.example | 64 * %{dgroup} default group name 91 * member of. The plugin accesses the group name as 'group' so an alias 97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group` 119 * %{group} in FilterGroup group name 128 $conf['plugin']['authmysql']['FilterGroup'] = "name LIKE '%{group}'"; 150 /* This statement should add a group to the database. 152 * %{group} group name 155 VALUES ('%{group}')"; 157 /* This statement should connect a user to a group (a user become member 158 * of that group). [all …]
|
| /dokuwiki/lib/plugins/authpdo/ |
| H A D | auth.php | 226 foreach ($grps as $group) { 227 if (!isset($allgroups[$group])) { 228 $ok = $this->addGroup($group); 235 foreach ($grps as $group) { 236 $ok = $this->joinGroup($userdata, $allgroups[$group]); 302 foreach ($oldgroups as $group) { 303 if (!in_array($group, $changes['grps']) && isset($allgroups[$group])) { 304 $ok = $this->leaveGroup($olddata, $allgroups[$group]); 311 foreach ($changes['grps'] as $group) { 312 if (!isset($allgroups[$group])) { [all …]
|
| /dokuwiki/inc/Extension/ |
| H A D | AuthPlugin.php | 353 * @param string $group 356 public function addGroup($group) argument 421 * @param string $group groupname 424 public function cleanGroup($group) argument 426 return $group;
|
| /dokuwiki/vendor/splitbrain/php-archive/src/ |
| H A D | FileInfo.php | 24 protected $group = ''; variable in splitbrain\\PHPArchive\\FileInfo 196 return $this->group; 200 * @param string $group 202 public function setGroup($group) argument 204 $this->group = $group;
|
| /dokuwiki/lib/plugins/authad/ |
| H A D | auth.php | 249 foreach ($info['grps'] as $ndx => $group) { 250 $info['grps'][$ndx] = $this->cleanGroup($group); 304 * @param string $group 307 public function cleanGroup($group) argument 309 $group = str_replace('\\', '', $group); 310 $group = str_replace('#', '', $group); 311 $group = preg_replace('[\s]', '_', $group); 312 $group = PhpString::strtolower(trim($group)); 313 return $group;
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | cli.php | 233 foreach ($newgrps as $group) { 234 if (!in_array($group, $oldinfo['grps'])) { 235 $changes['grps'][] = $group; 271 foreach ($grps as $group) { 272 if (($pos = array_search($group, $changes['grps'])) == true) {
|
| /dokuwiki/vendor/geshi/geshi/src/ |
| H A D | geshi.php | 1078 * @param int $group Tells the group of symbols for which style should be set. 1081 public function set_escape_characters_style($style, $preserve_defaults = false, $group = 0) { argument 1083 $this->language_data['STYLES']['ESCAPE_CHAR'][$group] = $style; 1085 $this->language_data['STYLES']['ESCAPE_CHAR'][$group] .= $style; 1143 * @param int $group Tells the group of symbols for which style should be set. 1146 public function set_symbols_style($style, $preserve_defaults = false, $group = 0) { argument 1149 $this->language_data['STYLES']['SYMBOLS'][$group] = $style; 1151 $this->language_data['STYLES']['SYMBOLS'][$group] .= $style; 1155 if (0 == $group) { 1182 * @param int $group Tells the group of strings for which style should be set. [all …]
|
| /dokuwiki/_test/data/pages/ |
| H A D | mailinglist.txt | 7 …ther want to use the mailing list through a news group interface, please read the section [[#News …
|
| /dokuwiki/lib/plugins/acl/lang/en/ |
| H A D | help.txt | 5 * The form above allows you to see and modify the permissions of a selected user or group.
|
| /dokuwiki/lib/plugins/authldap/ |
| H A D | auth.php | 295 $group = $grp[$this->getConf('groupkey')]; 296 if (is_array($group)) { 297 $group = $group[0]; 301 if ($group === '') continue; 303 $this->debug('LDAP usergroup: ' . hsc($group), 0, __LINE__, __FILE__); 304 $info['grps'][] = $group;
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | sqlite.test.php | 17 public function addGroup($group) { argument 18 return parent::addGroup($group);
|
| /dokuwiki/lib/plugins/acl/ |
| H A D | style.css | 78 background: transparent url(pix/group.png) 0px 1px no-repeat; 82 background: transparent url(pix/group.png) right 1px no-repeat;
|
| /dokuwiki/lib/plugins/authplain/ |
| H A D | auth.php | 374 * @param string $group 377 public function cleanGroup($group) argument 381 return cleanID(str_replace([':', '/', ';'], $conf['sepchar'], $group));
|
| /dokuwiki/lib/scripts/ |
| H A D | media.js | 874 unforbid: function (group) { argument 875 delete dw_mediamanager.forbidden_opts[group]; 878 forbid: function (group, forbids) { argument 879 dw_mediamanager.forbidden_opts[group] = forbids;
|
| /dokuwiki/lib/scripts/jquery/jquery-ui-theme/ |
| H A D | smoothness.css | 405 .ui-datepicker-multi .ui-datepicker-group { 408 .ui-datepicker-multi .ui-datepicker-group table { 412 .ui-datepicker-multi-2 .ui-datepicker-group { 415 .ui-datepicker-multi-3 .ui-datepicker-group { 418 .ui-datepicker-multi-4 .ui-datepicker-group { 421 .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, 422 .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { 461 .ui-datepicker-rtl .ui-datepicker-group { 464 .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, 465 .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
| /dokuwiki/inc/ |
| H A D | auth.php | 768 foreach ($groups as &$group) { 769 $group = '@' . auth_nameencode($group);
|