Home
last modified time | relevance | path

Searched refs:mtime (Results 1 – 25 of 61) sorted by relevance

123

/plugin/zip/pear/File/Archive/Writer/
DZip.php95 $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/pagesicon/
H A Dhelper.php17 $mtime = @filemtime($path);
18 return $this->appendVersionToUrl($url, $mtime ? (int)$mtime : 0);
33 $mtime = @filemtime($file);
34 return $mtime ? (int)$mtime : 0;
37 private function appendVersionToUrl(string $url, int $mtime): string { argument
38 if ($url === '' || $mtime <= 0) return $url;
40 return $url . $sep . 'pi_ts=' . $mtime;
393 public function getDefaultIconUrl(array $params = ['w' => 55], ?int &$mtime = null) { argument
396 $mtime = $this->getMediaMTime((string)$mediaID);
399 return $this->appendVersionToUrl($url, $mtime);
[all …]
/plugin/calendar/classes/
H A DEventCache.php91 $mtime = filemtime($cacheFile);
92 if ($mtime === false || (time() - $mtime) > $ttl) {
221 $mtime = filemtime($file);
225 if ($stats['oldest'] === null || $mtime < $stats['oldest']) {
226 $stats['oldest'] = $mtime;
228 if ($stats['newest'] === null || $mtime > $stats['newest']) {
229 $stats['newest'] = $mtime;
249 $mtime = filemtime($file);
250 if ($mtime !== false && ($now - $mtime) > $ttl) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/
DBuildBazelRemoteExecutionV2NodeProperties.php23 public $mtime; variable in Google\\Service\\RemoteBuildExecution\\BuildBazelRemoteExecutionV2NodeProperties
28 public function setMtime($mtime) argument
30 $this->mtime = $mtime;
34 return $this->mtime;
/plugin/chat/
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/pglist/
Dsyntax.php177 $renderer->cdata(' '.dformat($item['mtime']));
204 if ($b['mtime'] < $a['mtime']) {
206 } elseif($b['mtime'] > $a['mtime']) {
/plugin/upgrade/myvendor/splitbrain/php-archive/src/
H A DFileInfo.php21 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;
/plugin/repo/
Dsyntax.php103 $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/visualindex/syntax/
H A Dvisualindex.php214 $mtime = null;
215 $iconUrl = $helper->getMediaIconUrl($mediaID, 'bigorsmall', ['width' => 55], $mtime, false);
218 $mtime = null;
228 $iconUrl = $helper->getMediaIcon($mediaID, 'bigorsmall', ['width' => 55], $mtime, false);
230 $iconUrl = $helper->getMediaIcon($mediaID, 'bigorsmall', ['width' => 55], $mtime);
258 $mtime = null;
259 …>getPageIconUrl((string)$namespace, (string)$pageID, 'bigorsmall', ['width' => 55], $mtime, false);
262 $mtime = null;
272 …r->getImageIcon((string)$namespace, (string)$pageID, 'bigorsmall', ['width' => 55], $mtime, false);
274 … $helper->getImageIcon((string)$namespace, (string)$pageID, 'bigorsmall', ['width' => 55], $mtime);
/plugin/svgimg2/
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/
Daction.php90 $mtime = @filemtime($file);
91 if (!$mtime) { return 0; }
93 $age = max($age,$mtime);
/plugin/src/
Daction.php92 $mtime = @filemtime($file);
93 if (!$mtime) { return 0; }
95 $age = max($age,$mtime);
/plugin/owncloud/ajax/
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/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/
DAssetFactory.php253 $mtime = 0;
255 $mtime = max($mtime, $leaf->getLastModified());
278 $mtime = max($mtime, $this->getLastModified($child));
283 return $mtime;
/plugin/elwikiupgrade/
DVerboseTarLib.class.php284 * @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/
DAssetCollection.php201 $mtime = 0;
204 if ($assetMtime > $mtime) {
205 $mtime = $assetMtime;
209 return $mtime;
DHttpAsset.php72 list(, $mtime) = explode(':', $header, 2);
74 return strtotime(trim($mtime));
/plugin/livemark/
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/catmenu/syntax/
H A Dcatmenu.php240 $mtime = null;
241 …$iconUrl = $helper->getPageIconUrl($namespace, $pageID, 'smallorbig', ['width' => 55], $mtime, tru…
244 $mtime = null;
254 …$iconUrl = $helper->getImageIcon($namespace, $pageID, 'smallorbig', ['width' => 55], $mtime, true);
256 $iconUrl = $helper->getImageIcon($namespace, $pageID, 'smallorbig', ['width' => 55], $mtime);
/plugin/findologicxmlexport/vendor/hoa/iterator/
DSplFileInfo.php75 if (-1 !== $mtime = $this->getMTime()) {
76 $this->_hash = md5($this->getPathname() . $mtime);
/plugin/siteexport/inc/
H A Dfilewriter.php161 $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/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
DSplFileInfo.php112 $mtime = $this->sample($timestamp),
119 'mtime' => $mtime
129 ->isEqualTo($mtime);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/
DConfigCache.php101 if (false === $mtime = @filemtime($path)) {
107 return $mtime;
/plugin/zip/pear/File/Archive/Reader/
DAr.php137 $mtime = $this->source->getData(12);
167 if (empty($name) || empty($mtime) || empty($uid) ||
182 9 => $mtime,
183 'mtime' => $mtime
/plugin/nspages/fileHelper/
DnamespacePreparer.php77 private function buildSortAttribute($nameToDisplay, $nsId, $mtime){ argument
81 return $mtime;

123