Home
last modified time | relevance | path

Searched refs:mtime (Results 26 – 46 of 46) sorted by last modified time

12

/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DSplFileInfo.php112 $mtime = $this->sample($timestamp),
119 'mtime' => $mtime
129 ->isEqualTo($mtime);
/plugin/cleanup/
H A Dhelper.php127 $mtime = filemtime($testfile);
134 return ($mtime != $atime);
/plugin/src/
H A Daction.php92 $mtime = @filemtime($file);
93 if (!$mtime) { return 0; }
95 $age = max($age,$mtime);
/plugin/reflect/
H A Daction.php39 $mtime = @filemtime($cacheFile); // 0 if not exists
42 if( ($mtime == 0) || // cache does not exist
43 ($mtime < time()-$cache) // 'recache' and cache has expired
/plugin/authgoogle/google/cache/
H A DGoogle_FileCache.php98 …if (! $expiration || (($mtime = @filemtime($storageFile)) !== false && ($now - $mtime) < $expirati…
/plugin/eclipseupdateurl/
H A Dsyntax.php290 $mtime = @filemtime($local); // 0 if not exists
293 if( ($mtime == 0) || // cache does not exist
294 ($cache != -1 && $mtime < time()-$cache) // 'recache' and cache has expired
304 if($mtime) return $local;
/plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/
H A Dxlsx.js1148 var i = 0, namelen = 0, name, o, ctime, mtime;
1170 mtime = blob.read_shift(2) + blob.read_shift(2) + blob.read_shift(2) + blob.read_shift(2);
1171 if(mtime !== 0) {
1172 o.mtime = mtime; o.mt = read_date(blob, blob.l-8);
H A Dxlsx.min.js3mtime;for(;i<sector.length;i+=128){blob=sector.slice(i,i+128);prep_blob(blob,64);namelen=blob.read…
H A Dxlsx.min.map1 …,"modulus","addr","nodes","__toBuffer","minifat_store","namelen","ctime","mtime","__utf16le","colo…
/plugin/eventum/
H A Dsyntax.php94 $mtime = time() - $conf['locktime'];
96 if ($ent['mtime'] < $mtime) {
/plugin/livemark/
H A Daction.php30 $mtime = @filemtime($cacheFile); // 0 if not exists
33 if( ($mtime == 0) || // cache does not exist
34 ($mtime < time()-$cache) // 'recache' and cache has expired
/plugin/txt2tags/
H A Dtxt2tags.class.php87 var $mtime; # last modified timestamp of the input file variable in T2T
683 $line = preg_replace('/%%(date|mtime)(\\((.+?)\\))?/ie',
/plugin/owncloud/ajax/
H A Dfilelist.php58 $mtime = strftime($conf['dformat'],filemtime($fullpath.'/'.$folder)); variable
63 …ng.'> '.$link.' </td><td class="col1"> </td><td class="col2 fileinfo">'.$mtime.'</td><td class="c…
69 $mtime = strftime($conf['dformat'],filemtime($fullpath.'/'.$file)); variable
87 …class="col1 fileinfo">'.$authorsString.'</td><td class="col2 fileinfo">'.$mtime.'</td><td class="c…
/plugin/dokutexit/
H A Dlatex.php1365 $mtime = @filemtime($local); // 0 if not exists
1369 ($mtime != 0 && $cache != -1) || // exists but no endless cache
1370 ($mtime == 0) || // not exists
1371 ($cache != -1 && $mtime < time()-$cache) // expired
1381 if($mtime) return $local;
/plugin/mindmap/
H A Dsyntax.php313 'time' => $item['mtime'],
355 'mtime' => filemtime(wikiFN($ns)),
376 if(!$time) $time = $item['mtime'];
/plugin/latex/
H A Dadmin.php87 case 'mtime':
/plugin/svgimg2/
H A Daction.php50 $mtime = @filemtime($cacheFile); // 0 if not exists
51 if( ($mtime == 0) || // cache does not exist
52 ($data['cache'] != -1 && $mtime < time()-$data['cache']) ) { // 'recache' and cache has expired
/plugin/source/
H A Daction.php90 $mtime = @filemtime($file);
91 if (!$mtime) { return 0; }
93 $age = max($age,$mtime);
/plugin/chat/
H A Dajax.php39 function _getChatHtml($pageFN, $ltime = 0, $mtime = 0) { argument
188 $mtime = @filemtime($pageFN);
190 if ($ltime == 0 || $mtime > $ltime) {
219 $mtime = @filemtime($pageFN);
225 if ($ltime == 0 || $mtime > $ltime) {
226 print "<!--AJAXCHAT_MTIME:$mtime-->\n";
227 print _getChatHtml($pageFN, $ltime, $mtime);
251 $mtime = time();
253 $html = "<!--AJAXCHAT_MTIME:$mtime-->\n";
296 print $html . _getChatHtml($pageFN, $ltime, $mtime);
/plugin/zip/pear/File/Archive/Reader/
H A DAr.php137 $mtime = $this->source->getData(12);
167 if (empty($name) || empty($mtime) || empty($uid) ||
182 9 => $mtime,
183 'mtime' => $mtime
/plugin/zip/pear/File/Archive/Writer/
H A DZip.php96 $mtime = preg_replace(
100 ($mtime['mon' ]<<21)|
103 ($mtime['minutes']<<5)|
105 eval('$mtime = "'.$mtime.'";');
106 return $mtime;
130 $mtime.
162 $mtime.
178 $mtime.
198 $mtime = filemtime($dataFilename);
208 $info['mtime'] != $mtime) {
[all …]

12