Home
last modified time | relevance | path

Searched refs:timestamp (Results 201 – 225 of 262) sorted by path

1234567891011

/plugin/lastmod/
H A Dplugin.info.txt6 desc Displays the timestamp of the last modification of the current or another page.
/plugin/logger/action/
H A Dlogging.php51 $timestamp = time();
57 $log_dataset .= ";" . '"' . date("Y-m-d", $timestamp) . '"';
62 $log_dataset .= ";" . '"' . date("H:i:s", $timestamp) . '"';
105 $log_filename = date("Y-m", $timestamp) . '.csv';
107 $log_filename = date("Y", $timestamp) . '.csv';
/plugin/logstats/
H A Daction.php125 $timestamp = date("[d/M/Y:H:i:s O]");
172 …$logline = "$host - $user $timestamp \"$method $page $protocol\" $status $size \"$referer\" \"$age…
/plugin/mantis/lib/
H A Dclass.nusoap_base.php900 * @param string $timestamp Unix time stamp
904 function timestamp_to_iso8601($timestamp,$utc=true){ argument
905 $datestr = date('Y-m-d\TH:i:sO',$timestamp);
H A Dnusoap.php900 * @param string $timestamp Unix time stamp
904 function timestamp_to_iso8601($timestamp,$utc=true){ argument
905 $datestr = date('Y-m-d\TH:i:sO',$timestamp);
/plugin/mediathumbnails/
H A Ddokuwiki_plugin_page.wiki68 … replaced by another file (with the same name), this will be noticed by timestamp comparison - the…
/plugin/metadisplay/
H A Dadmin.php116 $timestamp = $commands['year'] .'-'. $commands['month'] .'-'. $commands['day'];
118 $cmdline .= $w . "$timestamp";
/plugin/metadisplay/helper/
H A Dhtml.php16 private $timestamp; variable in helper_plugin_metadisplay_html
54 list($this->timestamp,$this->t_when) = explode(':',$tm);
123 if($this->t_when == 'b' && $tmstmp > $this->timestamp) {
126 else if($this->t_when == 'a' && $tmstmp < $this->timestamp) {
H A Dplaintext.php16 private $timestamp; variable in helper_plugin_metadisplay_plaintext
53 list($this->timestamp,$this->t_when) = explode(':',$tm);
123 if($this->t_when == 'b' && $tmstmp > $this->timestamp) {
126 else if($this->t_when == 'a' && $tmstmp < $this->timestamp) {
/plugin/news/scripts/
H A DfeedData.php85 function timestamp() { function in feedData
99 return date('r',$this->timestamp());
/plugin/news/syntax/
H A Dfeed.php92 $metafile = $this->helper->getMetaFN('timestamp','.meta') ;
/plugin/notification/action/
H A Dcron.php120 $timestamp = $notification['timestamp'];
122 $date = strftime('%d.%m %H:%M', $timestamp);
/plugin/notification/syntax/
H A Dlist.php160 $timestamp = $notification['timestamp'];
164 $date = strftime($data['date'], $timestamp);
/plugin/odtsupport/
H A Ddokuwiki_plugin_page.wiki85 … the metadata value addressed by "last_change date" (that's the page's "timestamp, date of last mo…
/plugin/openid/Auth/OpenID/
H A DConsumer.php1347 list($timestamp, $salt) = $parts;
1349 if (!$this->store->useNonce($server_url, $timestamp, $salt)) {
H A DDumbStore.php99 * @param int $timestamp
103 function useNonce($server_url, $timestamp, $salt) argument
H A DFileStore.php139 $timestamp = $parts[0];
140 $timestamp = intval($timestamp, 16);
141 if (abs($timestamp - $now) > $Auth_OpenID_SKEW) {
390 * @param int $timestamp
394 function useNonce($server_url, $timestamp, $salt) argument
403 if ( abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
419 $filename = sprintf('%08x-%s-%s-%s-%s', $timestamp, $proto,
H A DInterface.php178 * @param int $timestamp
182 function useNonce($server_url, $timestamp, $salt) argument
H A DMDB2Store.php370 function useNonce($server_url, $timestamp, $salt) argument
374 if (abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
379 "timestamp" => $timestamp,
H A DMemcachedStore.php183 * @param int $timestamp
187 function useNonce($server_url, $timestamp, $salt) argument
192 if (abs($timestamp - time()) > $Auth_OpenID_SKEW) {
H A DNonce.php49 $timestamp =
52 if ($timestamp === false || $timestamp < 0) {
56 return [$timestamp, $uniquifier];
H A DPredisStore.php151 function useNonce($server_url, $timestamp, $salt) argument
156 if (abs($timestamp - time()) > $Auth_OpenID_SKEW) {
H A DSQLStore.php483 * @param int $timestamp
487 function _add_nonce($server_url, $timestamp, $salt) argument
492 $timestamp,
503 function useNonce($server_url, $timestamp, $salt) argument
507 if ( abs($timestamp - time()) > $Auth_OpenID_SKEW ) {
511 return $this->_add_nonce($server_url, $timestamp, $salt);
H A DSQLiteStore.php58 function _add_nonce($server_url, $timestamp, $salt) argument
67 return parent::_add_nonce('x' . $server_url, $timestamp, $salt);
/plugin/photogallery/phpThumb/
H A Dphpthumb.class.php4320 foreach ($this->debugtiming as $timestamp => $timingstring) {
4321 $DebugOutput[] = ' * '.$timestamp.' '.$timingstring;
4590 public function DebugTimingMessage($message, $file='', $line='', $timestamp=0) { argument
4591 if (!$timestamp) {
4592 $timestamp = array_sum(explode(' ', microtime()));
4594 …$this->debugtiming[number_format($timestamp, 6, '.', '')] = ': '.$message.($file ? ' in file "'.(b…

1234567891011