| /plugin/zip/pear/File/Archive/Writer/ |
| D | Zip.php | 95 $mtime = ($time !== null ? getdate($time) : getdate()); 96 $mtime = preg_replace( 99 dechex(($mtime['year']-1980<<25)| 100 ($mtime['mon' ]<<21)| 101 ($mtime['mday' ]<<16)| 102 ($mtime['hours' ]<<11)| 103 ($mtime['minutes']<<5)| 104 ($mtime['seconds']>>1))); 105 eval('$mtime = "'.$mtime.'";'); 106 return $mtime; [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/ |
| D | BuildBazelRemoteExecutionV2NodeProperties.php | 23 public $mtime; variable in Google\\Service\\RemoteBuildExecution\\BuildBazelRemoteExecutionV2NodeProperties 28 public function setMtime($mtime) argument 30 $this->mtime = $mtime; 34 return $this->mtime;
|
| /plugin/chat/ |
| D | ajax.php | 39 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/pglist/ |
| D | syntax.php | 177 $renderer->cdata(' '.dformat($item['mtime'])); 204 if ($b['mtime'] < $a['mtime']) { 206 } elseif($b['mtime'] > $a['mtime']) {
|
| /plugin/upgrade/vendor/splitbrain/php-archive/src/ |
| D | FileInfo.php | 21 protected $mtime = 0; variable in splitbrain\\PHPArchive\\FileInfo 36 $this->mtime = time(); 132 return $this->mtime; 136 * @param int $mtime 138 public function setMtime($mtime) argument 140 $this->mtime = $mtime;
|
| D | Zip.php | 876 protected function makeUnixTime($mdate = null, $mtime = null) argument 878 if ($mdate && $mtime) { 883 $hour = ($mtime & 0xF800) >> 11; 884 $minute = ($mtime & 0x07E0) >> 5; 885 $seconde = ($mtime & 0x001F) << 1; 887 $mtime = mktime($hour, $minute, $seconde, $month, $day, $year); 889 $mtime = time(); 892 return $mtime;
|
| /plugin/repo/ |
| D | syntax.php | 103 $mtime = @filemtime($cache); // 0 if it doesn't exist 105 if (($mtime != 0) && !$_REQUEST['purge'] && ($mtime > time() - $refresh)) { 183 $mtime = @filemtime($cache); // 0 if it doesn't exist 185 if (($mtime != 0) && !$_REQUEST['purge'] && 186 ($mtime > time() - $refresh) && 187 ($mtime > filemtime(DOKU_INC.'vendor/geshi/geshi/src/geshi.php'))) {
|
| /plugin/svgimg2/ |
| D | action.php | 50 $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/ |
| D | action.php | 90 $mtime = @filemtime($file); 91 if (!$mtime) { return 0; } 93 $age = max($age,$mtime);
|
| /plugin/src/ |
| D | action.php | 92 $mtime = @filemtime($file); 93 if (!$mtime) { return 0; } 95 $age = max($age,$mtime);
|
| /plugin/owncloud/ajax/ |
| D | filelist.php | 58 $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/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/ |
| D | AssetFactory.php | 253 $mtime = 0; 255 $mtime = max($mtime, $leaf->getLastModified()); 278 $mtime = max($mtime, $this->getLastModified($child)); 283 return $mtime;
|
| /plugin/elwikiupgrade/ |
| D | VerboseTarLib.class.php | 284 * @param int $mtime 287 public function addData($name, $data, $uid = 0, $gid = 0, $perm = 0666, $mtime = 0) { argument 299 ($mtime) ? $mtime : time() 443 * @param int $mtime 446 protected function writeFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') { argument 472 $mtime = sprintf("%11s", decoct($mtime)); 474 $data_first = pack("a100a8a8a8a12A12", $name, $perm, $uid, $gid, $size, $mtime);
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/ |
| D | AssetCollection.php | 201 $mtime = 0; 204 if ($assetMtime > $mtime) { 205 $mtime = $assetMtime; 209 return $mtime;
|
| D | HttpAsset.php | 72 list(, $mtime) = explode(':', $header, 2); 74 return strtotime(trim($mtime));
|
| /plugin/livemark/ |
| D | action.php | 30 $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/findologicxmlexport/vendor/hoa/iterator/ |
| D | SplFileInfo.php | 75 if (-1 !== $mtime = $this->getMTime()) { 76 $this->_hash = md5($this->getPathname() . $mtime);
|
| /plugin/siteexport/inc/ |
| D | filewriter.php | 161 $mtime = @filemtime($cacheFile); // 0 if not exists 164 if ($mtime == 0 || $mtime < time()-$this->functions->settings->cachetime) 183 if ($mtime < @filemtime(wikiFN($site['id']))) {
|
| /plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/ |
| D | ConfigCache.php | 101 if (false === $mtime = @filemtime($path)) { 107 return $mtime;
|
| /plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/ |
| D | SplFileInfo.php | 112 $mtime = $this->sample($timestamp), 119 'mtime' => $mtime 129 ->isEqualTo($mtime);
|
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Ar.php | 137 $mtime = $this->source->getData(12); 167 if (empty($name) || empty($mtime) || empty($uid) || 182 9 => $mtime, 183 'mtime' => $mtime
|
| /plugin/nspages/fileHelper/ |
| D | namespacePreparer.php | 77 private function buildSortAttribute($nameToDisplay, $nsId, $mtime){ argument 81 return $mtime;
|
| /plugin/fuzzysearch/ |
| H A D | action.php | 168 $mtime = filemtime($path); 169 if ($mtime > $latest) $latest = $mtime;
|
| /plugin/eclipseupdateurl/ |
| D | syntax.php | 290 $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/combo/resources/snippet/js/ |
| H A D | cache.js | 73 … let mtime = combo.Date.createFromIso(result["mtime"]).toSqlTimestampString(); 86 …d>${slotLabel}</td><td>${styledFormatResult}</td><td>${hitHtml}</td><td>${mtime}</td><td>${depende…
|