Home
last modified time | relevance | path

Searched refs:depends (Results 1 – 12 of 12) sorted by last modified time

/dokuwiki/vendor/geshi/geshi/
H A DLICENSE77 Whether that is true depends on what the Program does.
/dokuwiki/inc/
H A Dtemplate.php244 $depends = getConfigFiles('main');
245 $depends[] = DOKU_CONF . "tpl/" . $conf['template'] . "/style.ini";
246 foreach ($depends as $f) $tseed .= @filemtime($f);
/dokuwiki/
H A DCOPYING77 Whether that is true depends on what the Program does.
H A Dfeed.php46 // prepare cache depends
47 $depends['files'] = getConfigFiles('main');
48 $depends['age'] = $conf['rss_update'];
49 $depends['purge'] = $INPUT->bool('purge');
57 if ($cache->useCache($depends)) {
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE149 writing it). Whether that is true depends on what the Library does
/dokuwiki/conf/
H A Dmysql.conf.php.example63 * %{pass} encrypted or clear text password (depends on 'encryptPass')
140 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
216 * %{pass} password (encrypted or clear text, depends on 'encryptPass')
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE147 writing it). Whether that is true depends on what the Library does
/dokuwiki/lib/plugins/logviewer/lang/en/
H A Dintro.txt4 here (it depends on your [[doku>config:dontlog|log settings]]). However if something goes wrong, chances are high
/dokuwiki/inc/Cache/
H A DCache.php18 public $depends = []; // array containing cache dependency information, variable in dokuwiki\\Cache\\Cache
69 * @param array $depends array of cache dependencies, support dependecies:
76 public function useCache($depends = []) argument
78 $this->depends = $depends;
97 * this function processes the following keys in the depends array
115 if (!empty($this->depends['purge'])) {
123 if (!empty($this->depends['age']) && ((time() - $this->_time) > $this->depends['age'])) {
127 if (!empty($this->depends['file
[all...]
H A DCacheImageMod.php42 * Caching depends on the source and the wiki config
49 $this->depends['files'] = array_merge(
H A DCacheParser.php58 $this->depends['files'] = empty($this->depends['files']) ?
60 array_merge($files, $this->depends['files']);
H A DCacheRenderer.php27 // meta cache older than file it depends on?
64 // 0 : cache never expires (can be overridden) - no need to set depends['age']
69 $this->depends['age'] = isset($this->depends['age']) ?
70 min($this->depends['age'], $conf['cachetime']) : $conf['cachetime'];
81 $this->depends['age'] = isset($this->depends['age']) ?
82 min($this->depends['age'], $valid['age']) : $valid['age'];
86 $this->depends['files'] = empty($this->depends['file
[all...]