Home
last modified time | relevance | path

Searched refs:cachetime (Results 1 – 16 of 16) sorted by relevance

/plugin/rssticker/
Dsyntax.php33 list($title,$url,$cachetime,$css,$delay,$optionalswitch,$align) = explode(',',$match);
36 if ( empty($cachetime)) {$cachetime = 600;}
41 return array($title,$url,$cachetime,$css,$delay,$optionalswitch,$align);
Drssticker.js40 function rssticker_ajax(RSS_url, cachetime, divId, divClass, delay, logicswitch){ argument
42 this.cachetime=cachetime //Time to cache feed, in minutes. 0=no cache.
64 var parameters="rss_url="+encodeURIComponent(this.RSS_url)+"&cachetime="+this.cachetime+"&bustcache…
/plugin/pureldap/classes/
H A DGroupHierarchyCache.php53 $cachetime = @filemtime($cachename);
56 if ($cachetime && (time() - $cachetime) < $conf['auth_security_timeout']) {
H A DClient.php213 $cachetime = @filemtime($cachename);
214 if ($cachetime && (time() - $cachetime) < $conf['auth_security_timeout']) {
H A DADClient.php388 $cachetime = @filemtime($cachename);
391 if ($useCache && $cachetime && (time() - $cachetime) < $conf['auth_security_timeout']) {
/plugin/svgpureinsert/
Dhelper.php18 * @param int $cachetime
21 public function getAdjustedSVG($id, $cachetime = -1) { argument
25 if($cachedate && $cachetime < (time() - $cachedate)) {
/plugin/siteexport/inc/
Dsettings.php26 public $cachetime = 0; variable in settings_plugin_siteexport_settings
71 $this->cachetime = $this->getConf('cachetime');
73 $this->cachetime = 0;
Dfilewriter.php164 if ($mtime == 0 || $mtime < time()-$this->functions->settings->cachetime)
/plugin/smartcache/
Daction.php49 //$event->data[] = 'Cache-Control: public, max-age='.max($conf['cachetime'], 2000000);
/plugin/webcomponent/_test/
DREADME.md31 $conf['cachetime'] = -1;
/plugin/netlogo/syntax/
Dapplet.php268 …$expires = time()+min(max($conf['cachetime'],60), 3600); // expires in cachetime, but no less than…
/plugin/authucenter/lib/uc_client/lib/
Ddb.class.php89 function query($sql, $type = '', $cachetime = FALSE) { argument
Ddbi.class.php78 function query($sql, $type = '', $cachetime = FALSE) { argument
/plugin/tuxquote/
DREADME38 - Point a browser to the Administration - Configuration Settings panel and set 'cachetime' to 0
/plugin/snap/
Dsyntax.php.ori172 ((time()-filemtime($imagePath))>$conf['cachetime']) ||
/plugin/siteexport/action/
Dajax.php1179 $cache = $this->functions->settings->cachetime;