Home
last modified time | relevance | path

Searched refs:conf (Results 76 – 100 of 122) sorted by relevance

12345

/dokuwiki/bin/
H A Dindexer.php67 global $conf;
70 search($data, $conf['datadir'], 'search_allpages', ['skipacl' => true]);
/dokuwiki/inc/
H A DLogger.php31 global $conf;
35 $dontlog = explode(',', $conf['dontlog']);
211 global $conf;
218 return $conf['logdir'] . '/' . $this->facility . '/' . date('Y-m-d', $date) . '.log';
H A Dtoolbar.php263 global $conf;
268 $sig = $conf['signature'];
H A Dparserutils.php149 global $conf;
154 if ($conf['allowdebug'] && $format == 'xhtml') {
161 if ($conf['allowdebug'] && $format == 'xhtml') {
166 if ($conf['allowdebug'] && $format == 'xhtml') {
557 global $conf;
597 if ($conf['typography']) {
629 if ($conf['camelcase']) {
716 global $conf, $plugin_controller;
718 $rname = empty($conf['renderer_' . $mode]) ? $mode : $conf['renderer
[all...]
H A DDraft.php72 global $INPUT, $INFO, $EVENT_HANDLER, $conf;
73 if (!$conf['usedraft']) {
H A DErrorHandler.php154 global $conf;
168 if ($ex->getSeverity() === E_WARNING && $conf['hidewarnings']) {
/dokuwiki/
H A Ddoku.php104 if ($conf['allowdebug'] && $ACT == 'debug') {
112 ($conf['send404'] || preg_match('/^(robots\.txt|sitemap\.xml(\.gz)?|favicon\.ico|crossdomain\.xml)$/', $ID)) &&
119 if ($conf['breadcrumbs']) breadcrumbs();
H A Dindex.php22 send_redirect(wl($conf['start']));
53 preg_match('/^\/(data|conf|bin|inc)\//', $_SERVER['SCRIPT_NAME'])
/dokuwiki/inc/parser/
H A Dxhtml.php180 global $conf;
184 $conf['tocminheads'] && count($this->toc) >= $conf['tocminheads']
203 global $conf;
206 if ($level >= $conf['toptoclevel'] && $level <= $conf['maxtoclevel']) {
207 $this->toc[] = html_mktocitem($id, $text, $level - $conf['toptoclevel'] + 1);
222 global $conf;
241 $level <= $conf['maxseclevel'] &&
250 if ($level <= $conf['maxsecleve
[all...]
H A Dmetadata.php144 global $conf;
147 if ($level >= $conf['toptoclevel'] && $level <= $conf['maxtoclevel']) {
153 'level' => $level - $conf['toptoclevel'] + 1
574 * Should honor $conf['mailguard'] setting
680 global $conf;
686 if ($conf['useslash']) {
/dokuwiki/inc/Subscriptions/
H A DSubscriptionSender.php65 global $conf;
74 $mail->from($conf['mailfromnobody']);
/dokuwiki/inc/Ui/
H A DUserRegister.php24 global $conf;
46 if (!$conf['autopasswd']) {
H A DLogin.php38 global $conf;
62 if ($conf['rememberme']) {
H A DUserProfile.php58 global $conf;
60 if (!$conf['profileconfirm']) return;
H A DUserResendPwd.php24 global $conf;
33 if (!$conf['autopasswd'] && $token) {
H A DSearchState.php113 global $ID, $conf;
117 'target' => $conf['target']['wiki'],
H A DSubscribe.php27 global $conf;
28 $stime_days = $conf['subscribe_time'] / 60 / 60 / 24;
/dokuwiki/lib/exe/
H A Dcss.php37 global $conf;
53 $tpl = $conf['template'];
67 $cache_files[] = $conf['cachedir'] . '/preview.ini';
186 if ($conf['compress']) {
191 if ($conf['cssdatauri']) {
210 global $conf;
214 $less->setPreserveComments(!$conf['compress']);
515 global $conf;
524 if ($size && $size < $conf['cssdatauri']) {
H A Dmediamanager.php15 global $conf;
100 if ($INPUT->int('rev') && $conf['mediarevisions']) $REV = $INPUT->int('rev');
102 if ($INPUT->str('mediado') == 'restore' && $conf['mediarevisions']) {
/dokuwiki/inc/Cache/
H A DCache.php196 global $conf;
200 if (!$conf['allowdebug']) {
205 $file = $conf['cachedir'] . '/cache_stats.txt';
/dokuwiki/inc/Action/
H A DExport.php42 global $conf;
61 $pre .= '<html lang="' . $conf['lang'] . '" dir="' . $lang['direction'] . '">' . DOKU_LF;
/dokuwiki/inc/Utf8/
H A DSort.php13 * The collator is created using the locale given in $conf['lang'].
31 * Initialization of a collator using $conf['lang'] as the locale.
41 global $conf;
42 $lc = $conf['lang'];
160 * Filenames may not be equal to page names, depending on the setting in $conf['fnencode'],
/dokuwiki/lib/plugins/authplain/
H A Dauth.php141 global $conf;
153 if (!is_array($grps)) $grps = [$conf['defaultgroup']];
363 global $conf;
365 return cleanID(str_replace([':', '/', ';'], $conf['sepchar'], $user));
376 global $conf;
378 return cleanID(str_replace([':', '/', ';'], $conf['sepchar'], $group));
/dokuwiki/lib/plugins/info/
H A Dsyntax.php327 global $conf;
330 if (($level >= $conf['toptoclevel']) && ($level <= $conf['maxtoclevel'])) {
336 'level' => $level - $conf['toptoclevel'] + 1
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php165 global $conf;
166 if ($this->id == $conf['authtype']) return true;
191 global $conf;
193 return ($conf['template'] == $this->getBase());
920 global $conf;
954 if (!$fileexists && $conf['fperm']) chmod($file, $conf['fperm']);
1146 $conf = confToHash("$this_dir/$f");
1147 $info['base'] = basename($conf['base']);
1259 global $conf;
[all...]

12345