Home
last modified time | relevance | path

Searched refs:conf (Results 101 – 122 of 122) sorted by path

12345

/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/config/core/
H A DConfigParser.php16 protected $varname = 'conf';
37 $conf = [];
39 return $conf;
H A DLoader.php30 global $conf;
33 $this->template = $conf['template'];
56 DOKU_PLUGIN . $plugin . '/conf/metadata.php',
67 tpl_incdir() . '/conf/metadata.php',
87 $conf = [];
91 $conf = array_merge(
92 $conf,
94 DOKU_PLUGIN . $plugin . '/conf/default.php',
102 $conf = array_merge(
103 $conf,
[all...]
H A DWriter.php36 global $conf;
53 $out .= $setting->out('conf', 'php');
64 if ($conf['fperm']) chmod($this->savefile, $conf['fperm']);
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingAuthtype.php53 global $conf;
54 if ($conf['authtype'] != $input) {
/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...]
H A Dlist.php153 global $conf;
164 'target' => $conf['target'][$linktype],
167 if ($linktype == 'extern' && $conf['relnofollow']) {
316 global $conf;
331 'target' => $conf['target'][$linktype],
334 if ($conf['relnofollow']) {
568 global $conf;
600 $conf['authtype'] != $extension->getID()
/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/logviewer/
H A Dadmin.php113 global $conf;
123 $dirs = glob($conf['logdir'] . '/*', GLOB_ONLYDIR);
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php42 global $conf;
43 $this->autosubmitFile = $conf['cachedir'] . '/autosubmit.txt';
44 $this->autosubmitErrorFile = $conf['cachedir'] . '/autosubmitError.txt';
45 $this->popularityLastSubmitFile = $conf['cachedir'] . '/lastSubmitTime.txt';
133 global $conf;
145 $data['language'] = $conf['lang'];
150 $data['conf_useacl'] = $conf['useacl'];
151 $data['conf_authtype'] = $conf['authtype'];
152 $data['conf_template'] = $conf['template'];
156 search($list, $conf['datadi
[all...]
/dokuwiki/lib/plugins/revert/
H A Dadmin.php124 global $conf;
/dokuwiki/lib/plugins/safefnrecode/
H A Daction.php29 global $conf;
30 if ($conf['fnencode'] != 'safe') return;
32 if (!file_exists($conf['datadir'] . '_safefn.recoded')) {
33 $this->recode($conf['datadir']);
34 touch($conf['datadir'] . '_safefn.recoded');
37 if (!file_exists($conf['olddir'] . '_safefn.recoded')) {
38 $this->recode($conf['olddir']);
39 touch($conf['olddir'] . '_safefn.recoded');
42 if (!file_exists($conf['metadir'] . '_safefn.recoded')) {
43 $this->recode($conf['metadi
[all...]
/dokuwiki/lib/plugins/styling/
H A Dadmin.php64 global $conf;
67 $styleUtil = new StyleUtils($conf['template'], true, true);
156 global $conf;
157 $ini = $conf['cachedir'] . '/preview.ini';
166 global $conf;
167 $ini = $conf['cachedir'] . '/preview.ini';
215 global $conf;
216 $ini = DOKU_CONF . "tpl/" . $conf['template'] . "/style.ini";
H A Dpopup.php20 <html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>">
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php380 global $conf;
392 $notes[] = sprintf($this->lang['note_group'], $conf['defaultgroup']);
714 global $conf, $INPUT;
739 io_saveFile($conf['cachedir'] . '/sessionpurge', time());
776 global $conf, $INPUT;
836 io_saveFile($conf['cachedir'] . '/sessionpurge', time());
/dokuwiki/lib/tpl/dokuwiki/
H A Ddetail.php15 <html lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
20 [<?php echo strip_tags($conf['title'])?>]
H A Dmain.php14 $hasSidebar = page_findnearest($conf['sidebar']);
17 <html lang="<?php echo $conf['lang'] ?>" dir="<?php echo $lang['direction'] ?>" class="no-js">
20 <title><?php tpl_pagetitle() ?> [<?php echo strip_tags($conf['title']) ?>]</title>
43 <?php tpl_include_page($conf['sidebar'], true, true) ?>
H A Dmediamanager.php14 <html lang="<?php echo $conf['lang']?>" dir="<?php echo $lang['direction'] ?>" class="popup no-js">
19 [<?php echo strip_tags($conf['title'])?>]
H A Dstyle.ini5 ; a local conf/tpl/<template-folder-name>/style.ini file to prevent losing
H A Dtpl_footer.php18 $target = ($conf['target']['extern']) ? 'target="' . $conf['target']['extern'] . '"' : '';
H A Dtpl_header.php34 '<span>' . $conf['title'] . '</span>',
38 <?php if ($conf['tagline']) : ?>
39 <p class="claim"><?php echo $conf['tagline']; ?></p>
45 <?php if ($conf['useacl']) : ?>
76 <?php if ($conf['breadcrumbs'] || $conf['youarehere']) : ?>
78 <?php if ($conf['youarehere']) : ?>
81 <?php if ($conf['breadcrumbs']) : ?>
/dokuwiki/lib/tpl/
H A Dindex.php50 $styleUtils = new \dokuwiki\StyleUtils($conf['template']);
55 echo "<caption>" . hsc($conf['template']) . "'s style.ini</caption>";
69 echo "<p>Non-existent or invalid template or style.ini: <strong>" . hsc($conf['template']) . "</strong></p>";

12345