Home
last modified time | relevance | path

Searched refs:info (Results 51 – 74 of 74) sorted by last modified time

123

/dokuwiki/lib/plugins/authldap/
H A Dauth.php108 $info = $this->fetchUserData($user, true);
109 if (empty($info['dn'])) {
112 $dn = $info['dn'];
127 * Return user info
129 * Returns info about the given user needs to contain
188 $info = [];
189 $info['user'] = $user;
190 $this->debug('LDAP user to find: ' . hsc($info['user']), 0, __LINE__, __FILE__);
192 $info['server'] = $this->getConf('server');
193 $this->debug('LDAP Server: ' . hsc($info['serve
482 filter($user, $info) global() argument
[all...]
/dokuwiki/lib/plugins/info/
H A Dplugin.info.txt1 base info
7 url http://dokuwiki.org/plugin:info
/dokuwiki/lib/plugins/authplain/
H A Dauth.php77 * Return user info
79 * Returns info about the given user needs to contain
88 * @param bool $requireGroups (optional) ignored by this plugin, grps info always supplied
288 foreach ($this->users as $user => $info) {
289 $count += $this->filter($user, $info);
317 foreach ($this->users as $user => $info) {
318 if ($this->filter($user, $info)) {
320 $out[$user] = $info;
344 foreach ($this->users as $info) {
345 $groups = array_merge($groups, array_diff($info['grp
455 filter($user, $info) global() argument
[all...]
/dokuwiki/inc/
H A Dmedia.php662 $info = @getimagesize($file);
663 if ($mime == 'image/gif' && $info[2] != 1) {
665 } elseif ($mime == 'image/jpeg' && $info[2] != 2) {
667 } elseif ($mime == 'image/png' && $info[2] != 3) {
1191 $info = getimagesize($filename);
1192 $w = $info[0];
1193 $h = $info[1];
1216 $info = $meta->getField($tags);
1217 if (!$info) return $alt;
1218 return $info;
[all...]
/dokuwiki/data/
H A Ddeleted.files178 lib/plugins/authmysql/plugin.info.txt
213 lib/plugins/authpgsql/plugin.info.txt
598 lib/plugins/plugin/plugin.info.txt
654 lib/tpl/default/template.info.txt
664 lib/plugins/info/lang/sl/lang.php
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php20 $info = trim($this->formatDimensions('') . ' ' . $this->formatDate() . ' ' . $this->formatFileSize());
27 echo '<span class="info">(' . $info . ')</span>' . NL;
/dokuwiki/vendor/splitbrain/slika/src/
H A DGdAdapter.php57 // grep the exif info from the raw contents
178 // Figure out the file info
179 $info = getimagesize($path);
180 if ($info === false) {
183 $this->width = $info[0];
184 $this->height = $info[1];
187 $this->extension = image_type_to_extension($info[2], false);
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php109 * Parses a changelog line into its components and save revision info to the cache pool
116 $info = static::parseLogLine($value);
117 if (is_array($info)) {
118 $info['mode'] = $this->getMode();
119 $this->cache[$this->id][$info['date']] ??= $info;
120 return $info;
133 * @param bool $retrieveCurrentRevInfo allows to skip for getting other revision info in the
297 $info = $this->parseAndCacheLogLine($lines[$i]);
298 if (is_array($info)) {
106 cacheRevisionInfo($info) global() argument
[all...]
H A DChangeLogTrait.php15 * @return array added log line as revision info
17 abstract public function addLogEntry(array $info, $timestamp = null); argument
29 $info = sexplode("\t", rtrim($line, "\n"), 8);
30 if ($info[3]) { // we need at least the page id to consider it a valid line
32 'date' => (int)$info[0], // unix timestamp
33 'ip' => $info[1], // IP address (127.0.0.1)
34 'type' => $info[2], // log line type
35 'id' => $info[3], // page id
36 'user' => $info[4], // user name
37 'sum' => $info[
53 buildLogLine(array& $info, $timestamp = null) global() argument
[all...]
H A DMediaChangeLog.php45 * @param array $info Revision info structure of a media file
47 * @return array revision info of added log line
51 public function addLogEntry(array $info, $timestamp = null)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
58 $logline = static::buildLogLine($info, $timestamp);
63 $this->currentRevision = $info['date'];
64 $info['mode'] = $this->getMode();
65 $this->cache[$this->id][$this->currentRevision] = $info;
66 return $info;
43 addLogEntry(array $info, $timestamp = null) global() argument
[all...]
H A DPageChangeLog.php45 * @param array $info Revision info structure of a page
47 * @return array revision info of added log line
51 public function addLogEntry(array $info, $timestamp = null)
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
58 $logline = static::buildLogLine($info, $timestamp);
63 $this->currentRevision = $info['date'];
64 $info['mode'] = $this->getMode();
65 $this->cache[$this->id][$this->currentRevision] = $info;
66 return $info;
43 addLogEntry(array $info, $timestamp = null) global() argument
[all...]
H A DRevisionInfo.php21 protected $info;
26 * @param array $info Revision Information structure with entries:
40 public function __construct($info = null)
42 if (!is_array($info) || !isset($info['id'])) {
43 $info = [
48 $this->info = $info;
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[
16 protected $info; global() variable in dokuwiki\\ChangeLog\\RevisionInfo
35 __construct($info = null) global() argument
92 append(array $info) global() argument
[all...]
/dokuwiki/inc/Extension/
H A DAdminPlugin.php26 $info = $this->getInfo();
27 $menutext = $info['name'] . ' ...';
H A DPluginTrait.php39 'desc' => 'Unknown purpose - bad plugin.info.txt',
43 $file = DOKU_PLUGIN . '/' . $ext . '/plugin.info.txt';
56 Logger::error(sprintf('Extension %s does not provide a plugin.info.txt in %s', $ext, $file));
276 return p_render($format, p_get_instructions($text), $info);
/dokuwiki/inc/File/
H A DMediaFile.php130 $info = getimagesize($this->path);
131 if ($info === false) return;
132 [$this->width, $this->height] = $info;
/dokuwiki/inc/HTTP/
H A DHTTPClient.php715 * print debug info
719 * @param string $info
724 protected function debug($info, $var = null)
728 $this->debugText($info, $var);
730 $this->debugHtml($info, $var);
735 * print debug info as HTML
737 * @param string $info
740 protected function debugHtml($info, $var = null)
742 echo '<b>' . $info . '</b> ' . (microtime(true) - $this->start) . 's<br />';
753 * prints debug info a
711 debug($info, $var = null) global() argument
726 debugHtml($info, $var = null) global() argument
743 debugText($info, $var = null) global() argument
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPComputers.php63 public function info($computerName, $fields = NULL) function in adLDAPComputers
90 $info = $this->info($computerName, $fields);
92 if ($info !== false) {
93 $collection = new adLDAPComputerCollection($info, $this->adldap);
139 $info = @$this->info($computerName, array("memberof", "primarygroupid"));
140 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); //presuming the entry returned is our guy (unique usernames)
H A DadLDAPContacts.php113 $info = @$this->info($distinguishedName, array("memberof", "primarygroupid"));
114 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); //presuming the entry returned is our contact
133 public function info($distinguishedName, $fields = NULL) function in adLDAPContacts
171 $info = $this->info($distinguishedName, $fields);
173 if ($info !== false) {
174 $collection = new adLDAPContactCollection($info, $this->adldap);
H A DadLDAPExchange.php120 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
163 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
226 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
266 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
310 $user = $this->adldap->contact()->info($distinguishedName, array("cn","displayname"));
H A DadLDAPGroups.php74 $childGroup = $this->info($child, array("cn"));
110 $groupInfo = $this->info($group, array("cn"));
139 $groupInfo = $this->info($group, array("cn"));
200 $groupInfo = $this->info($group, array("*"));
219 $parentGroup = $this->info($parent, array("cn"));
226 $childGroup = $this->info($child, array("cn"));
254 $groupInfo = $this->info($group, array("cn"));
287 $groupInfo = $this->info($group, array("cn"));
316 $info = $this->info(
416 public function info($groupName, $fields = NULL) global() function in adLDAPGroups
[all...]
H A DadLDAPUsers.php173 $userinfo = $this->info($username, array("*"), $isGUID);
197 $info = @$this->info($username, array("memberof", "primarygroupid"), $isGUID);
198 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); // Presuming the entry returned is our guy (unique usernames)
218 public function info($username, $fields = NULL, $isGUID = false) function in adLDAPUsers
278 $info = $this->info($username, $fields, $isGUID);
280 if ($info !== false) {
281 $collection = new adLDAPUserCollection($info, $this->adldap);
328 $userInfo = $this->info(
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPCollection.php55 * The raw info array from Active Directory
59 protected $info; variable in adLDAPCollection
61 public function __construct($info, adLDAP $adldap) argument
63 $this->setInfo($info);
68 * Set the raw info array from Active Directory
70 * @param array $info
72 public function setInfo(array $info) argument
74 if ($this->info && sizeof($info) >= 1) {
75 unset($this->info);
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php179 * Return user info [required auth function]
181 * Returns info about the given user needs to contain
220 //get info for given user
221 $result = $adldap->user()->info($this->getUserName($user), $fields);
226 //general user info
227 $info = [];
228 $info['name'] = $result[0]['displayname'][0];
229 $info['mail'] = $result[0]['mail'][0];
230 $info['uid'] = $result[0]['samaccountname'][0];
231 $info['d
764 filter($user, $info) global() argument
[all...]
/dokuwiki/lib/plugins/config/
H A Dstyle.css4 #config__manager div.info {

123