Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingDirchoice.php20 while (false !== ($entry = readdir($dh))) {
21 if ($entry == '.' || $entry == '..') continue;
22 if ($this->pattern && !preg_match($this->pattern, $entry)) continue;
24 $file = (is_link($this->dir . $entry)) ? readlink($this->dir . $entry) : $this->dir . $entry;
25 if (is_dir($file)) $list[] = $entry;
/dokuwiki/bin/
H A Dwantedpages.php101 * @param string $entry
105 protected function dirFilter($entry, $basepath)
107 if ($entry == '.' || $entry == '..') {
110 if (is_dir($basepath . '/' . $entry)) {
111 if (strpos($entry, '_') === 0) {
116 if (preg_match('/\.txt$/', $entry)) {
143 while (false !== ($entry = readdir($dh))) {
144 $status = $this->dirFilter($entry, $dir);
148 $pages = array_merge($pages, $this->getPages($dir . '/' . $entry));
103 dirFilter($entry, $basepath) global() argument
[all...]
H A Dstriplangs.php80 foreach ($entries as $entry) {
81 if ($entry != "." && $entry != "..") {
82 if (is_dir($path . '/' . $entry)) {
83 $plugin_langs = $path . '/' . $entry . '/lang';
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php89 // Check for both h-feed and h-entry, as both a feed with no entries
92 'contains(concat(" ", @class, " "), " h-entry ")]';
418 // Also look for h-feed or h-entry in the children of each top level item.
430 } elseif (in_array('h-entry', $mf_item['children'][0]['type'])) {
432 // In this case the parent of the h-entry list may be an h-card, so use
453 $entry = $entries[$i];
454 if (in_array('h-entry', $entry['type'])) {
458 if (isset($entry['properties']['url'][0])) {
459 $link = $entry['propertie
[all...]
/dokuwiki/lib/styles/
H A Dfeed.css17 item link, entry id {
36 item, entry { selector
43 item title, entry title {
53 item pubDate, entry modified, item date {
59 item description, entry summary {
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php13 * Adds an entry to the changelog file
56 $entry = [
66 $info = $entry;
67 return implode("\t", $entry) . "\n";
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php4511 $entry = $this->format_log([$message], [$message_number]);
4514 $entry .= $temp;
4517 $realtime_log_size += strlen($entry);
4520 $realtime_log_size = strlen($entry);
4523 fputs($realtime_log_file, $entry);
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php737 // foreach entry
738 while (false !== ($entry = $dir->read()))
740 $full_path = $this->language_path.$entry;
748 if (!preg_match('/^([^.]+)\.php$/', $entry, $matches)) {
4591 $entry = preg_quote((string) $list[$i], $regexp_delimiter);
4593 // properly assign the new entry to the correct position in the token array
4598 if ($prev_keys[$level] == $entry) {
4599 // this is a duplicate entry, skip it
4603 while (isset($entry[$char]) && isset($prev_keys[$level][$char])
4604 && $entry[
[all...]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUsers.php118 // Add the entry
198 $groups = $this->adldap->utilities()->niceNames($info[0]["memberof"]); // Presuming the entry returned is our guy (unique usernames)
593 $entry = @ldap_first_entry($this->adldap->getLdapConnection(), $sr);
594 $guid = @ldap_get_values_len($this->adldap->getLdapConnection(), $entry, 'objectGUID');
/dokuwiki/conf/
H A Dmysql.conf.php.example210 /* This statements should modify a user entry in the database. The
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG611 - Fixed missing CASSE_SENSITIVE entry for DOS language file (SF#1956314, BenBE)