Home
last modified time | relevance | path

Searched refs:self (Results 1 – 25 of 67) sorted by path

123

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt465 Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble:
/dokuwiki/inc/
H A DActionRouter.php61 if ((!self::$instance instanceof \dokuwiki\ActionRouter) || $reinit) {
62 self::$instance = new ActionRouter();
64 return self::$instance;
136 if ($this->transitions >= self::MAX_TRANSITIONS) {
H A DDifferenceEngine.php915 if(!isset(self::$styles[$classname])) return '';
916 return 'style="'.self::$styles[$classname].'"';
H A DErrorHandler.php60 $plugin = self::guessPlugin($e);
64 $logged = self::logException($e)
93 if (self::logException($e)) $msg .= '<br />More info is available in the error log.';
115 self::fatalException(
130 $prefix = self::ERRORCODES[$e->getSeverity()];
166 self::logException($ex);
H A DLogger.php46 public static function getInstance($facility = self::LOG_ERROR)
48 if (empty(self::$instances[$facility])) {
49 self::$instances[$facility] = new Logger($facility);
51 return self::$instances[$facility];
65 return self::getInstance(self::LOG_ERROR)->log(
84 return self::getInstance(self::LOG_DEBUG)->log(
103 return self::getInstance(self
[all...]
H A DSafeFN.class.php51 return self::unicodeToSafe(Unicode::fromUtf8($filename));
81 return Unicode::toUtf8(self::safeToUnicode(strtolower($filename)));
91 return !preg_match('#[^' . self::$plain . self::$post_indicator . self::$pre_indicator . ']#', $safe);
109 if ($codepoint < 127 && (strpos(self::$plain . self::$post_indicator, chr($codepoint)) !== false)) {
111 $safe .= self::$post_indicator;
115 } elseif ($codepoint == ord(self::$pre_indicator)) {
116 $safe .= self
[all...]
/dokuwiki/inc/Debug/
H A DDebugHelper.php44 if (!self::isEnabled()) return;
51 [$self, $call] = $backtrace;
53 self::triggerDeprecationEvent(
56 self::formatCall($self),
57 self::formatCall($call),
58 $self['file'] ?? $call['file'] ?? '',
59 $self['line'] ?? $call['line'] ?? 0
91 if (!self::isEnabled()) return;
98 self
[all...]
/dokuwiki/inc/Form/
H A DForm.php42 $self = wl($ID, $get, false, '&'); //attributes are escaped later
43 $this->attr('action', $self);
/dokuwiki/inc/HTTP/
H A DHTTPClient.php248 $this->debug('connection pool', self::$connections);
250 if (isset(self::$connections[$connectionId])) {
252 $socket = self::$connections[$connectionId];
281 self::$connections[$connectionId] = $socket;
283 unset(self::$connections[$connectionId]);
363 unset(self::$connections[$connectionId]);
474 unset(self::$connections[$connectionId]);
485 unset(self::$connections[$connectionId]);
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php50 protected $context = self::CTX_ALL;
H A DTop.php22 $this->context = self::CTX_DESKTOP;
/dokuwiki/inc/Parsing/Handler/
H A DLists.php119 $this->listCalls[$this->listStack[$key][2]][1][1] = self::NODE;
/dokuwiki/inc/Remote/
H A DApiCore.php88 return self::API_VERSION;
/dokuwiki/inc/Sitemap/
H A DMapper.php119 if (self::sitemapIsCompressed()) {
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php224 * - $self (whether the author should be notified,
248 $self = $data['self'];
263 if (!$self && $user == $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Utf8/
H A DAsian.php67 return (bool)preg_match('/' . self::REGEXP . '/u', $term);
80 $asia = @preg_replace('/(' . self::REGEXP . ')/u', $sep . '\1' . $sep, $text);
96 return preg_split('/(' . self::REGEXP . '+)/u', $term, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
H A DClean.php172 if (self::isASCII($string)) return $string; //nothing to do
H A DConversion.php60 [self::class, 'decodeNumericEntity'],
67 [self::class, 'decodeAnyEntity'],
92 return self::decodeNumericEntity($ent);
H A DPhpString.php120 $strlen = self::strlen($str); // see notes
140 if (!isset($strlen)) $strlen = self::strlen($str); // see notes
184 if ($start > 0) $ret .= self::substr($string, 0, $start);
186 $ret .= self::substr($string, $start + $length);
245 return self::ltrim(self::rtrim($str, $charlist), $charlist);
303 switch (self::strlen($str)) {
307 return self::strtoupper($str);
310 return self::strtoupper($matches[1]) . $matches[2];
335 $ucfirst = self
[all...]
H A DSort.php45 if (!self::$useIntl || !class_exists('\Collator')) {
50 if (!isset(self::$collators[$lc])) {
62 self::$collators[$lc] = $collator;
65 return self::$collators[$lc];
78 self::$useIntl = $use;
93 $collator = self::getCollator();
112 $collator = self::getCollator();
131 $collator = self::getCollator();
150 $collator = self::getCollator();
171 $collator = self
[all...]
H A DTable.php33 $uclc = self::upperCaseToLowerCase();
/dokuwiki/inc/parser/
H A Dmetadata.php100 if (strlen($this->doc) > self::ABSTRACT_MAX) {
101 $this->doc = PhpString::substr($this->doc, 0, self::ABSTRACT_MAX) . '…';
130 if ($this->captured > self::ABSTRACT_LEN) {
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php103 protected $adPort = self::ADLDAP_LDAP_PORT;
481 $this->setPort(self::ADLDAP_LDAPS_PORT);
484 $this->setPort(self::ADLDAP_LDAP_PORT);
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php253 return self::ADLDAP_VERSION;
/dokuwiki/lib/plugins/config/
H A Dadmin.php136 ? '<img src="' . self::IMGDIR . $setting->caution() . '.png" ' .

123