Home
last modified time | relevance | path

Searched refs:cache (Results 151 – 175 of 671) sorted by relevance

12345678910>>...27

/plugin/explorertree/
H A Dhelper.php27 function cache(){ function in helper_plugin_explorertree
107 if (!($this->cache() && is_array($data = $this->cache()->get('explorertree_cache_'.$dir)))){
117 if ($this->cache()) {
118 …$this->cache()->set($cache_id = 'explorertree_cache_'.$dir,$data,60); // store the data itself (ca…
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DServiceFactory.php56 $cache = new Cache($cacheBasePath, $config['cacheCleanupInterval']);
63 $cssManager = new CssManager($mpdf, $cache, $sizeConverter, $colorConverter, $remoteContentFetcher);
86 $cache,
95 $cache,
134 'cache' => $cache,
H A DTag.php23 private $cache;
67 * @param \Mpdf\Cache $cache
79 Cache $cache,
91 $this->cache = $cache;
112 $this->cache,
26 private $cache; global() variable in Mpdf\\Tag
82 __construct(Mpdf $mpdf, Cache $cache, CssManager $cssManager, Form $form, Otl $otl, TableOfContents $tableOfContents, SizeConverter $sizeConverter, ColorConverter $colorConverter, ImageProcessor $imageProcessor, LanguageToFontInterface $languageToFont) global() argument
/plugin/settingstree/settings/
H A Dsettingshierarchy.class.php19 public static $cache = null; // memcache variable in settingshierarchy
90 if (static::$cache //if caching is enabled
91 …&& @filemtime($path) <= static::$cache->get("plugin_{$pluginname}_lang_{$l}_{$type}_time") // and…
92 …&& $ll = static::$cache->get("plugin_{$pluginname}_lang_{$l}_{$type}") // and cache contains …
101 if (static::$cache){ // update the cache so next we don't need to read filesystem
102 static::$cache->set("plugin_{$pluginname}_lang_{$l}_{$type}",$lang,0);
103 static::$cache->set("plugin_{$pluginname}_lang_{$l}_{$type}_time",filemtime($path),0);
/plugin/latexport/implementation/
H A Ddecorator_images.php38 * @param string $cache cache|recache|nocache
42 … $height = null, $cache = null, $linking = null, $positionInGroup = 0, $totalInGroup = 1) { argument
45 …$this->internalMediaGroup[] = new InternalMedia($src, $title, $align, $width, $height, $cache, $li…
H A Ddecorator.php833 * @param string $cache cache|recache|nocache
839 … $height = null, $cache = null, $linking = null, $positionInGroup = 1, $totalInGroup = 1) { argument
852 * @param string $cache cache|recache|nocache
856 $height = null, $cache = null, $linking = null) { argument
858 $this->decorator->externalmedia($src, $title, $align, $width, $height, $cache, $linking);
869 * @param string $cache cache|recache|nocache
872 $width = null, $height = null, $cache = null) { argument
874 $this->decorator->internalmedialink($src, $title, $align, $width, $height, $cache);
885 * @param string $cache cache|recache|nocache
888 $width = null, $height = null, $cache = null) { argument
[all …]
/plugin/quickstats/db/
H A Dphp-local-browscap.php65 function get_browser_local($user_agent=null,$return_array=false,$db='./browscap.ini',$cache=false) argument
71 if ((!isset($browscapIni))||(!$cache)||($browscapPath!==$db))
95 if (!$cache) $browscapIni=null;
/plugin/xslfo/
H A Daction.php71 $pdf_cache = new cache($cache_key, '.pdf');
79 if (!$this->generatePDF($cache_key, $pdf_cache->cache)) {
84 $this->sendFile($pdf_cache->cache, $title);
200 $xml_cache = new cache($ID.$REV.'_xslfo', '.xml');
202 return $xml_cache->cache;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dhtml5shiv.min.js139 if (data.cache[nodeName]) {
140 node = data.cache[nodeName].cloneNode();
142 node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
188 if (!data.cache) {
189 data.cache = {};
/plugin/diagrams/script/
H A DDiagramsEditor.js61 cache: 'no-cache',
89 cache: 'no-cache',
128 cache: 'no-cache',
158 cache: 'no-cache',
166 * Save the PNG cache for a diagram
182 cache
[all...]
/plugin/nodetailsxhtml/
H A Drenderer.php32 'cache' => true, // may the rendered result cached?
409 * @param string $cache cache|recache|nocache
414 $h = null, $cache = null, $render = true) {
433 $srcset[] = ml($src, array('w' => 2*$w, 'h' => 2*$h, 'cache' => $cache, 'rev'=>$this->_getLastMediaRevisionAt($src))) . ' 2x';
444 $srcset[] = ml($additionalSrc, array('w' => 2*$w, 'h' => 2*$h, 'cache' => $cache, 'rev'=>$this->_getLastMediaRevisionAt($srcSetURL))) . ' 2x';
450 $ret = parent::_media($src, $title, $align, $w, $h, $cache, $render);
459 return parent::_media($src, $title, $align, $w, $h, $cache,
235 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = NULL) global() argument
455 _media($src, $title = null, $align = null, $w = null, $h = null, $cache = null, $render = true) global() argument
[all...]
/plugin/authucenter/lib/uc_client/model/
H A Dbase.php32 var $cache = array(); variable in base
93 $this->settings = $this->cache('settings');
110 function &cache($cachefile) { function in base
137 $this->settings = $this->cache('settings');
138 $this->cache['apps'] = $this->cache('apps');
/plugin/webdav/vendor/sabre/xml/lib/
H A DService.php276 static $cache = [];
278 if (!isset($cache[$str])) {
284 $cache[$str] = [
290 return $cache[$str];
/plugin/icalevents/vendor/sabre/xml/lib/
H A DService.php275 static $cache = [];
277 if (!isset($cache[$str])) {
283 $cache[$str] = [
289 return $cache[$str];
/plugin/authgooglesheets/vendor/google/auth/src/
H A DFetchAuthTokenCache.php43 * @param CacheItemPoolInterface $cache
48 CacheItemPoolInterface $cache argument
51 $this->cache = $cache;
/plugin/dokutexit/
H A Dlatex.php1209 $height=NULL, $cache=NULL, $linking=NULL) { argument
1213 $cache, $linking);
1322 $height, $cache, $linking);
1344 function calc_cache($cache) { argument
1361 function get_from_URL($url,$ext,$cache) { argument
1371 ($cache != -1 && $mtime < time()-$cache) // expired
1404 $height, $cache, $linking);
1502 $height=NULL, $cache=NULL) { argument
1520 $height=NULL, $cache=NULL) { argument
1533 $height, $cache, $linking);
[all …]
/plugin/svg/
H A Dmanager.dat2 url=http://www.cvpcs.org/dokuwiki/lib/exe/fetch.php?id=project%3Adokuwiki-svg&cache=cache&media=pro…
/plugin/const/
H A Daction.php208 $cache =& $event->data;
210 if ((isset($cache->page) === true) && ($cache->mode === "i")) {
212 $const = p_get_metadata($cache->page, 'plugin_const');
219 $cache->depends["purge"] = $const["invalidate"];
/plugin/icalevents/vendor/sabre/vobject/
H A D.travis.yml18 cache:
20 - $HOME/.composer/cache
/plugin/lightbox/
H A Daction.php47 $cache =& $event->data;
50 if (!isset($cache->page)) return;
/plugin/bibtex/
H A Dsyntax.php377 //$link['url'] = ml($src,array('id'=>$ID,'cache'=>$cache),true);
403 $link['url'] = ml($src,array('id'=>$ID,'cache'=>$cache),($linking=='direct'));
417 $link['url'] = ml($src,array('id'=>$ID,'cache'=>$cache),true);
419 $link['name'] = $this->_media ($src, $title, $align, $width, $height, $cache);
503 $height=NULL, $cache=NULL) { argument
510 $ret .= '<img src="'.ml($src,array('w'=>$width,'h'=>$height,'cache'=>$cache)).'"';
/plugin/attribute/
H A Dhelper.php17 protected $cache = null; variable in helper_plugin_attribute
36 $this->cache = array();
190 if (array_key_exists($filename, $this->cache)) {
191 return $this->cache[$filename];
217 $this->cache[$filename] = $data;
241 $this->cache[$filename] = $data;
/plugin/icalevents/vendor/sabre/xml/
H A D.travis.yml13 cache:
15 - $HOME/.composer/cache
/plugin/davcal/action/
H A Dcache.php26 $cache = &$event->data;
27 if(!isset($cache->page)) return;
/plugin/zotero/
H A DREADME.md15 4. Enter your Zotero entries into the cache file (the newly created wiki page
18 5. If you cite a source that is not already in the cache, the plugin will
20 cache. For this to work you have to set `autoupdating` in `config.ini` to `1`.

12345678910>>...27