Home
last modified time | relevance | path

Searched refs:conf (Results 1 – 25 of 122) sorted by relevance

12345

/dokuwiki/conf/
H A Ddokuwiki.php16 $conf['title'] = 'DokuWiki'; //what to show in the title
17 $conf['start'] = 'start'; //name of start page
18 $conf['lang'] = 'en'; //your language
19 $conf['template'] = 'dokuwiki'; //see lib/tpl directory
20 $conf['tagline'] = ''; //tagline in header (if template supports it)
21 $conf['sidebar'] = 'sidebar'; //name of sidebar in root namespace (if template supports it)
22 $conf['license'] = 'cc-by-nc-sa'; //see conf/license.php
23 $conf['savedir'] = './data'; //where to store all the files
24 $conf['basedi
[all...]
/dokuwiki/lib/plugins/authldap/conf/
H A Ddefault.php3 $conf['server'] = '';
4 $conf['port'] = 389;
5 $conf['usertree'] = '';
6 $conf['grouptree'] = '';
7 $conf['userfilter'] = '';
8 $conf['groupfilter'] = '';
9 $conf['version'] = 2;
10 $conf['starttls'] = 0;
11 $conf['referrals'] = -1;
12 $conf['dere
[all...]
/dokuwiki/lib/plugins/authpdo/conf/
H A Ddefault.php9 $conf['debug'] = 0;
10 $conf['dsn'] = '';
11 $conf['user'] = '';
12 $conf['pass'] = '';
20 $conf['select-user'] = '';
28 $conf['check-pass'] = '';
36 $conf['select-user-groups'] = '';
43 $conf['select-groups'] = '';
50 $conf['insert-user'] = '';
57 $conf['delet
[all...]
/dokuwiki/lib/plugins/authad/conf/
H A Ddefault.php3 $conf['account_suffix'] = '';
4 $conf['base_dn'] = '';
5 $conf['domain_controllers'] = '';
6 $conf['sso'] = 0;
7 $conf['sso_charset'] = '';
8 $conf['admin_username'] = '';
9 $conf['admin_password'] = '';
10 $conf['real_primarygroup'] = 0;
11 $conf['use_ssl'] = 0;
12 $conf['use_tl
[all...]
/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/tpl/dokuwiki/
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']) : ?>
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'])?>]
/dokuwiki/inc/
H A Dinit.php40 if (!defined('DOKU_CONF')) define('DOKU_CONF', DOKU_INC . 'conf/');
72 global $conf;
73 $conf = [];
106 if ($conf['canonical']) {
121 define('DOKU_COOKIE', 'DW' . md5(DOKU_REL . (($conf['securecookie']) ? $serverPort : '')));
133 define('DOKU_TPL', DOKU_BASE . 'lib/tpl/' . $conf['template'] . '/');
141 define('DOKU_TPLINC', DOKU_INC . 'lib/tpl/' . $conf['template'] . '/');
155 $conf['gzip_output'] &= (strpos($httpAcceptEncoding, 'gzip') !== false);
158 $conf['gzip_output'] &&
173 $cookieDir = empty($conf['cookiedi
68 $conf = array(); global() variable
[all...]
H A Dpageutils.php26 * For $param='id' $conf['start'] is returned if no id was found.
39 global $conf;
45 if (empty($id) && $conf['userewrite'] == 2) {
50 if ($conf['basedir']) {
55 $script = $conf['basedir'] . $relpath .
84 if (str_ends_with($id, ':') || ($conf['useslash'] && str_ends_with($id, '/'))) {
85 if (page_exists($id . $conf['start'])) {
87 $id .= $conf['start'];
96 $id .= $conf['start'];
107 if ($id === '' && $param == 'id') $id = $conf['star
[all...]
H A Dconfutils.php12 * (scheme.conf & stopwords.conf), e.g.
141 global $conf;
159 if (!$conf['jquerycdn']) {
162 } elseif ($conf['jquerycdn'] == 'jquery') {
165 } elseif ($conf['jquerycdn'] == 'cdnjs') {
228 $conf = [];
242 $conf[strtolower($line[0])] = $line[1];
244 $conf[$line[0]] = $line[1];
248 return $conf;
[all...]
/dokuwiki/lib/exe/
H A Djs.php38 global $conf;
45 if (!$tpl) $tpl = $conf['template'];
50 DOKU_INC . 'inc/lang/' . $conf['lang'] . '/jquery.ui.datepicker.js',
105 'path' => empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'],
106 'secure' => $conf['securecookie'] && is_ssl()
131 $debugjs = ($conf['allowdebug'] && strpos($file, DOKU_INC . 'lib/scripts/') !== 0);
143 if ($conf['locktime'] != 0) {
144 js_runonstart("dw_locktimer.init(" . ($conf['locktime'] - 60) . "," . $conf['usedraf
[all...]
H A Dopensearch.php21 $ico = DOKU_URL . 'lib/tpl/' . $conf['template'] . '/images/favicon.ico';
23 $ico = DOKU_URL . 'lib/tpl/' . $conf['template'] . '/favicon.ico';
32 echo ' <ShortName>' . hsc($conf['title']) . '</ShortName>' . NL;
/dokuwiki/inc/HTTP/
H A DDokuHTTPClient.php22 global $conf;
28 $this->proxy_host = $conf['proxy']['host'];
29 $this->proxy_port = $conf['proxy']['port'];
30 $this->proxy_user = $conf['proxy']['user'];
31 $this->proxy_pass = conf_decodeString($conf['proxy']['pass']);
32 $this->proxy_ssl = $conf['proxy']['ssl'];
33 $this->proxy_except = $conf['proxy']['except'];
36 if ($conf['allowdebug']) {
/dokuwiki/inc/Extension/
H A DPluginTrait.php15 protected $conf = []; // array to hold plugin settings, best accessed via ->getConf()
133 global $conf;
135 $file = DOKU_CONF . 'plugin_lang/' . $plugin . '/' . $conf['lang'] . '/' . $id . '.' . $ext;
137 $file = DOKU_PLUGIN . $plugin . '/lang/' . $conf['lang'] . '/' . $id . '.' . $ext;
153 global $conf, $config_cascade; // definitely don't invoke "global $lang"
166 if ($conf['lang'] != 'en') {
167 @include($path . $conf['lang'] . '/lang.php');
169 if (file_exists($config_file . $this->getPluginName() . '/' . $conf['lang'] . '/lang.php')) {
170 include($config_file . $this->getPluginName() . '/' . $conf['lang'] . '/lang.php');
192 if (isset($this->conf[
14 protected $conf = array(); // array to hold plugin settings, best accessed via ->getConf() global() variable
[all...]
/dokuwiki/lib/plugins/config/core/
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...]
/dokuwiki/inc/Cache/
H A DCacheRenderer.php17 global $conf;
35 if ($this->_time >= @filemtime($conf['cachedir'] . '/purgefile')) {
60 global $conf;
65 if ($conf['cachetime'] == -1) {
68 } elseif ($conf['cachetime'] > 0) {
70 min($this->depends['age'], $conf['cachetime']) : $conf['cachetime'];
/dokuwiki/inc/Menu/Item/
H A DIndex.php15 global $conf;
23 if ($conf['start'] == $ID && !$conf['sitemap']) {
/dokuwiki/inc/Subscriptions/
H A DRegistrationSubscriptionSender.php20 global $conf;
21 if (empty($conf['registernotify'])) {
32 $conf['registernotify'],
/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>";
/dokuwiki/inc/Sitemap/
H A DMapper.php38 global $conf;
39 if ($conf['sitemap'] < 1 || !is_numeric($conf['sitemap'])) return false;
51 @filemtime($sitemap) > (time() - ($conf['sitemap'] * 86400))
116 global $conf;
118 $sitemap = $conf['cachedir'] . '/sitemap.xml';
133 global $conf;
134 return $conf['compression'] === 'bz2' || $conf['compression'] === 'gz';
/dokuwiki/inc/Action/
H A DSearch.php38 global $QUERY, $ID, $conf, $INPUT;
41 if ($ID !== $conf['start'] && !$INPUT->has('q')) {
83 global $conf, $INPUT, $QUERY, $ID;
93 if ($conf['search_nslimit'] > 0) {
96 $ns = implode(':', array_slice($nsParts, 0, $conf['search_nslimit']));
102 if ($conf['search_fragment'] !== 'exact') {
120 global $conf;
122 if ($conf['search_fragment'] === 'starts_with') {
125 if ($conf['search_fragment'] === 'ends_with') {
H A DRegister.php33 global $conf;
34 if (isset($conf['openregister']) && !$conf['openregister']) throw new ActionDisabledException();
H A DLocked.php39 global $conf;
44 $expire = dformat($locktime + $conf['locktime']);
45 $min = round(($conf['locktime'] - (time() - $locktime)) / 60);
/dokuwiki/inc/File/
H A DPageResolver.php18 global $conf;
32 if ($conf['autoplural']) {
55 global $conf;
59 if (page_exists($id . $conf['start'], $rev, true, $isDateAt)) {
61 return $id . $conf['start'];
71 return $id . $conf['start'];

12345