Home
last modified time | relevance | path

Searched refs:conf (Results 501 – 525 of 2245) sorted by relevance

1...<<21222324252627282930>>...90

/plugin/discordnotifier/
H A Dhelper.php73 global $conf;
136 global $conf;
139 if ( ( $conf['userewrite'] == 1 || $conf['userewrite'] == 2 ) && $conf['useslash'] == true )
141 switch ( $conf['userewrite'] ) {
153 switch ( $conf['userewrite'] ) {
167 global $conf;
177 $proxy = $conf['proxy'];
/plugin/sympaauth/
H A DREADME6 3- in conf/local.php, enable sympaauth :
7 $conf['authtype'] = 'sympa';
8 $conf['superuser'] = '@mylist@mydomain'; ## mailing list you decided to be superuser group
9 $conf['plugin']['sympaauth']['sympaSoapService'] = <URL of Sympa SOAP wsdl>;
11 $conf['resendpasswd'] = '0';
/plugin/new_page_dialog/action/
H A Dnew.php34 global $conf;
35 $conf['template_original'] = $conf['template'];
36 $conf['template'] = "../plugins/npd/tpl";
/plugin/npd/action/
H A Dnew.php34 global $conf;
35 $conf['template_original'] = $conf['template'];
36 $conf['template'] = "../plugins/npd/tpl";
/plugin/seqdia/
H A Dsyntax.php64 $conf = array_shift($lines);
68 if(preg_match('/\b(left|center|right)\b/i',$conf,$match)) $return['align'] = $match[1];
69 if(preg_match('/\b(\d+)x(\d+)\b/',$conf,$match)){
73 …(default|rose|qsd|napkin|vs2010|mscgen|omegapple|modern-blue|earth|roundgreen)\b/i',$conf,$match)){
76 if(preg_match('/\bwidth=([0-9]+)\b/i', $conf,$match)) $return['width'] = $match[1];
77 if(preg_match('/\bheight=([0-9]+)\b/i', $conf,$match)) $return['height'] = $match[1];
149 if($conf['debug']){
/plugin/tokenbucketauth/
H A Dadmin.php43 global $conf;
54 $lockf = $conf['cachedir'] . '/' . $this->getConf('tba_lockfile');
55 $banned_f = $conf['cachedir'] . '/' . $this->getConf('tba_block_file');
100 $track_f = $conf['cachedir'] . '/' . $this->getConf('tba_iptime_file');
131 global $conf;
133 $banned_f = $conf['cachedir'] . '/' . $this->getConf('tba_block_file');
183 echo '<td>'.strftime($conf['dformat'], $block_timestamp).'</td>';
/plugin/blogtng/action/
H A Dfeed.php72 $conf = [
80 $this->tools->cleanConf($conf);
81 $conf = array_merge($conf, $this->defaultConf);
82 $posts = $this->entryhelper->get_posts($conf);
128 global $conf;
129 if(!$conf['canonical']){
/plugin/oauth/
H A DSession.php125 global $conf;
128 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
137 'secure' => $conf['securecookie'] && is_ssl(),
162 global $conf;
167 if ($_SESSION[DOKU_COOKIE]['auth']['time'] < time() - $conf['auth_security_timeout']) return false;
/plugin/combo/ComboStrap/
H A DFsWikiUtility.php55 global $conf;
82 $conf['datadir'], // The root
112 global $conf;
121 $conf['datadir'], // The root
182 global $conf;
183 $dataDir = $conf['datadir'];
/plugin/confmanager/lang/de/
H A Dwordblock.txt5conf['usewordblock'] = 1;'' in "conf/local.php" (Standardmäßig ist diese auf 1 gesetzt) und passen…
/plugin/confmanager/lang/en/
H A Dwordblock.txt3conf['usewordblock'] = 1;'' option in ''conf/local.php'' (by default it is set to 1) and edit the …
/plugin/ditaa/
H A Dsyntax.php81 $conf = array_shift($lines);
85 if(preg_match('/\b(left|center|right)\b/i', $conf, $match)) $return['align'] = $match[1];
86 if(preg_match('/\b(\d+)x(\d+)\b/', $conf, $match)) {
90 if(preg_match('/\b(\d+(\.\d+)?)X\b/', $conf, $match)) $return['scale'] = $match[1];
91 if(preg_match('/\bwidth=([0-9]+)\b/i', $conf, $match)) $return['width'] = $match[1];
92 if(preg_match('/\bheight=([0-9]+)\b/i', $conf, $match)) $return['height'] = $match[1];
94 …if(preg_match_all('/\b(no)?(antialias|edgesep|round|shadow)\b/i', $conf, $matches, PREG_SET_ORDER)…
212 global $conf;
215 if($conf['debug']) {
381 @chmod($cache, $conf['dmode']);
/plugin/backup/
H A Dadmin.php127 global $conf;
130 …$targetdir = $conf['mediaolddir'] . '/' . $this->stripPrefix($self, fullpath(dirname(mediaFN($conf
413 global $conf;
414 $this->addDirectoryToTar($tar, $conf['datadir'], 'data/pages', $logger);
427 global $conf;
428 $this->addDirectoryToTar($tar, $conf['olddir'], 'data/attic', $logger);
441 global $conf;
442 $this->addDirectoryToTar($tar, $conf['metadir'], 'data/meta', $logger);
455 global $conf;
478 global $conf;
[all …]
/plugin/move/action/
H A Drewrite.php33 global $ACT, $conf;
50 if(strpos($path, $conf['datadir']) === 0) {
51 $path = substr($path, strlen($conf['datadir']) + 1);
85 global $conf;
92 if(strpos($path, $conf['datadir']) === 0) {
93 $path = substr($path, strlen($conf['datadir']) + 1);
/plugin/commentsyntax/_test/
H A Dsyntax.test.php21 global $conf;
23 $conf ['plugin']['commentsyntax']['use_cstyle_nest'] = 1;
24 $conf ['plugin']['commentsyntax']['use_oneline_style'] = 1;
25 $conf ['plugin']['commentsyntax']['log_invalid_macro'] = 0;
/plugin/twofactor/action/
H A Dlogin.php202 global $conf;
204 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
206 setcookie(self::TWOFACTOR_COOKIE, null, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
217 global $conf;
227 $cookieDir = empty($conf['cookiedir']) ? DOKU_REL : $conf['cookiedir'];
229 setcookie(self::TWOFACTOR_COOKIE, $data, $time, $cookieDir, '', ($conf['securecookie'] && is_ssl()), true);
/plugin/panorama/
H A Drender_helper.php19 global $conf;
27 $name = DOKU_BASE.$conf['savedir'].'/media/'.str_replace(":", "/", $name);
40 global $conf;
43 $archive = DOKU_BASE.$conf['savedir'].'/media/'.$archive;
48 $name = DOKU_BASE.$conf['savedir'].'/media/'.str_replace(":", "/", $name);
/plugin/menuext/
H A DMenuExtItem.php25 global $conf;
27 if (isset($data['label'][$conf['lang']])) $this->label = $data['label'][$conf['lang']];
28 if (isset($data['title'][$conf['lang']])) $this->title = $data['title'][$conf['lang']];
/plugin/graphviz/
H A Dsyntax.php62 $conf = array_shift($lines);
66 if(preg_match('/\b(left|center|right)\b/i',$conf,$match)) $return['align'] = $match[1];
67 if(preg_match('/\b(\d+)x(\d+)\b/',$conf,$match)){
71 if(preg_match('/\b(dot|neato|twopi|circo|fdp)\b/i',$conf,$match)){
74 if(preg_match('/\bwidth=([0-9]+)\b/i', $conf,$match)) $return['width'] = $match[1];
75 if(preg_match('/\bheight=([0-9]+)\b/i', $conf,$match)) $return['height'] = $match[1];
152 if($conf['debug']){
/plugin/revisionsdue/
H A Dsyntax.php19 global $conf;
43 $filename = $conf['datadir'].$file;
69 global $conf;
71 $filename = $conf['datadir'].$file;
189 global $conf;
192 search($data,$conf['datadir'],'revision_callback_search_wanted',array('ns' => $ns));
201 global $conf;
/plugin/indexmenu2/syntax/
H A Dindexmenu.php245 …search($data,$conf['datadir'],"indexmenu_search_index",$opts,"/".utf8_encodeFN(str_replace(':','/'…
278 'id' => $conf['start'],
279 'target' => $conf['start'],
280 … 'title' => ($conf['useheading'] && ($title=p_get_first_heading($conf['start'])))?$title:"",
430 global $conf;
469 …if(!$opts['nons'] && $type=='f' && $conf['useheading'] && syntax_plugin_indexmenu_indexmenu::getCo…
471 $id==$conf['start'] || // <ns> == <start_page>
472 $id==getNS($id).":".$conf['start'] || // /<ns>/<start_page>.txt
503 $id.":".$conf['start']
532 … ,'title' => ($conf['useheading'] && ($title=p_get_first_heading($target)))?$title:$id // NS title
/plugin/googledrawing/
H A Dsyntax.php77 $conf = array_shift($lines);
84 if(preg_match('/\bgdraw>([^ ]+?) /i',$conf,$match)) $data['id'] = $match[1];
85 if(preg_match('/\b(left|center|right)\b/i',$conf,$match)) $data['align'] = $match[1];
86 if(preg_match('/\btitle="([^"]+?)"/i',$conf,$match)) $data['title'] = $match[1];
87 … if(preg_match('/\b(width|height)=([^\b\}]+?)(\b|})/i',$conf,$match)) $data[$match[1]] = $match[2];
93 $conf,
/plugin/twistienav/
H A Dhelper.php32 global $conf;
41 $this->exclusions[] = $conf['start'];
44 $this->exclusions[] = $conf['sidebar'];
67 global $conf, $ID;
77 search($data,$conf['datadir'],'search_index',array('ns' => $idx),$dir);
96 $target = $item['id'].':'.$conf['start'];
/plugin/csstimeline/
H A Dfeed.php25 $type = $conf['rss_type'];
67 ($cmod + $conf['rss_update'] > time())
69 ($cmod > @filemtime($conf['changelog']))
73 if($conf['allowdebug']) header("X-CacheUsed: $cache");
83 $rss->title .= ' · ' . $conf['title'];
91 $image->title = $conf['title'];
/plugin/twistienav4bootstrap3/
H A Dhelper.php32 global $conf;
41 $this->exclusions[] = $conf['start'];
44 $this->exclusions[] = $conf['sidebar'];
67 global $conf, $ID;
73 search($data,$conf['datadir'],'search_index',array('ns' => $idx),$dir);
92 $target = $item['id'].':'.$conf['start'];

1...<<21222324252627282930>>...90