Home
last modified time | relevance | path

Searched refs:cache (Results 126 – 150 of 671) sorted by relevance

12345678910>>...27

/plugin/abortlogin/
H A Daction.php77 static $cache = '';
79 if($cache) {
80 $allowed = $cache;
86 $cache = $allowed;
/plugin/mdpage/vendor/cebe/markdown/
H A D.travis.yml19 # cache composer cache
20 cache:
22 - $HOME/.composer/cache
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DTag.php31 protected $cache; variable in Mpdf\\Tag\\Tag
88 Cache $cache, argument
100 $this->cache = $cache;
/plugin/odt/action/
H A Dcache.php41 $cache =& $event->data;
43 if($cache->mode != "odt") return;
51 $cache->depends['files'][] = $template_path;
/plugin/dataplot/
H A Dsyntax.php240 $cache = $this->_cachename($data, 'png');
243 if ( !file_exists($cache) ) {
246 $ok = $this->_run($data, $in, $cache);
256 $cache = media_resize_image($cache, 'png', $data['width'], $data['height']);
260 if ( !file_exists($cache) ) return false;
262 return $cache;
/plugin/authorstats/
H A Daction.php136 $cache = &$event->data;
138 if (!isset($cache->page)) return;
139 if (!isset($cache->mode) || !in_array($cache->mode, $this->supportedModes)) return;
141 $enabled = p_get_metadata($cache->page, "authorstats-enabled");
143 if (@filemtime($cache->cache) < @filemtime($this->helpers->summaryfile)) {
/plugin/fksnewsfeed/syntax/
H A Dfeed.php78 $cache = new Cache($f, '');
79 if ($cache->useCache()) {
81 $innerHtml = json_decode($cache->retrieveCache());
85 $cache->storeCache(json_encode($innerHtml));
/plugin/quickstats/lang/en/
H A Dintro.txt1 …ad its table sorting scripts only if needed. For this purpose it keeps a cache file of pages which
3 …etions to memory; clicking on 'Confirm Deletion' will remove them from the cache. There is no harm
4 in removing a page from the cache file. If it contains ''quickstats'' syntax, it will be added to …
/plugin/btable/
H A Dexport.php89 $cache = & $cache_cleanid;
92 if (isset($cache[$raw_id])) {
93 return $cache[$raw_id];
125 $cache[$raw_id] = $id;
/plugin/quickstats/lang/nl/
H A Dintro.txt1 …oodzakelijk de tabel sorteer scrips downloaden. Hiervoor bewaart het een cache bestand van pagina…
3 …n het geheugen te plaatsen; klik op 'Bevestig verwijderen' om deze uit de cache te verwijderen. H…
4 een pagina uit de cache te verwijderen. Indien het de ''quickstats'' syntax bevat, zal het weer in…
/plugin/quickstats/lang/fr/
H A Dintro.txt1 …cript de tri de tableau à la demande. Dans ce but, il conserve un fichier cache qui utilise la syn…
2 …ent du cache. Il n'y a aucun mal à supprimer une page du cache. Si elle contient de la syntaxe ''q…
/plugin/btable2/
H A Dexport.php89 $cache = & $cache_cleanid;
92 if (isset($cache[$raw_id])) {
93 return $cache[$raw_id];
125 $cache[$raw_id] = $id;
/plugin/datatemplate/syntax/inc/
H A Dcache.php99 $cache = $this->getData($sql);
101 foreach($cache as $num=>$row) {
108 unset($cache[$num]);
110 file_put_contents($cachefile, serialize($cache), LOCK_EX);
/plugin/move/action/
H A Drewrite.php87 $cache = $event->data;
88 $id = $cache->page;
91 $path = $cache->file;
105 $cache->depends['purge'] = true;
/plugin/rater/scripts/
H A Djquery.tablesorter.js257 cache = { class in AnonymousFunctionb162a0010100.buildCache
271 cache.row[cache.row.length - 1] = cache.row[cache.row.length - 1].add(c);
276 cache.row.push(c);
283 cache.normalized.push(cols);
291 return cache;
322 function appendToTable(table, cache) { argument
328 var c = cache,
627 cache.normalized.sort(sortWrapper);
633 return cache;
716 cache = buildCache(this);
[all …]
/plugin/visrep/
H A Dsyntax.php143 $cache = $this->_cachename($data, 'png');
145 if (!file_exists($cache)) {
147 $ok = $this->_run($data, $in, $cache);
158 if(!file_exists($cache)) return false;
159 return $cache;
/plugin/feed/
H A Dfeed.php46 $cache = getCacheName($plugin . $fn . $ns . $num . $other . $type . $INPUT->server->str('REMOTE_USE… variable
47 $cmod = @filemtime($cache); // 0 if not exists
71 if ($conf['allowdebug']) header("X-CacheUsed: $cache");
72 print io_readFile($cache);
103 io_saveFile($cache, $feed);
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DEnvironment.php55 protected $cache; variable in Twig\\Environment
296 public function setCache($cache) argument
298 if (\is_string($cache)) {
299 $this->originalCache = $cache;
300 $this->cache = new FilesystemCache($cache);
301 } elseif (false === $cache) {
302 $this->originalCache = $cache;
303 $this->cache = new NullCache();
304 } elseif (null === $cache) {
309 $this->originalCache = $this->cache = $cache;
[all …]
/plugin/epub/lang/nl/
H A Dadmin_header.txt2 Met behulp van dit gereedschap kunnen toevoegingen aan de epub cache worden verwijderd en, indien g…
3 …. Bij de keuze **Cache Only** worden de gekozen titels verwijderd uit de cache. Bij de keuze **C…
4 titels uit de cache en de geassocieerde ebooks uit de media directory verwijderd. Het laatste werk…
/plugin/icon/
H A DSVG.php34 $cache = getCacheName(
39 if (!file_exists($cache) || filemtime($cache) < filemtime(__FILE__)) {
44 io_saveFile($cache, $svg);
47 return $cache;
/plugin/refnotes/
H A Daction.php449 /* Touch local config file to expire the cache */
569 $cache = $event->data;
571 if (isset($cache->page) && ($cache->page == $ID)) {
572 if (isset($cache->mode) && (($cache->mode == 'xhtml') || ($cache->mode == 'i'))) {
576 $this->addDependencies($cache, array_keys($meta['dbref']));
583 * Add extra dependencies to the cache
585 private function addDependencies($cache,
556 addDependencies($cache, $depends) global() argument
[all...]
/plugin/authsmf20/
H A Dauth.php337 $cache = new cache('authsmf20_getUserData_' . $user, $this->_cache_ext_name);
340 if (($this->_cache_duration > 0) && $cache->useCache($depends)) {
341 $user_data = unserialize($cache->retrieveCache(false));
344 $cache->removeCache();
397 $cache->storeCache(serialize($user_data));
400 $cache = null;
401 unset($cache);
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.generic.php57 static $cache = array();
58 if (!isset($cache[$code])) {
59 $cache[$code] =& CSS::get_handler($code);
62 $cache[$code]->replace_array($value, $this->_css);
71 static $cache = array();
72 if (!isset($cache[$code])) {
73 $cache[$code] =& CSS::get_handler($code);
76 $value =& $cache[$code]->get($this->_css);
/plugin/epub/lang/en/
H A Dadmin_header.txt2 Using this tool, you can delete entries from the epub cache and, if you choose, you can also delete…
3 …ou click the **Cache Only** button, those titles will be removed from the cache. If you click the…
4 titles will be removed from the cache and their associated ebooks will be deleted from the media di…
/plugin/fksnewsfeed/
H A Daction.php142 $cache = new Cache($file, '');
143 $cache->removeCache();
191 $cache = new cache($file, '');
192 $cache->removeCache();
221 $cache = new Cache($f, '');
222 $cache->removeCache();
226 $cache = new Cache($f, '');
227 $cache->removeCache();

12345678910>>...27