Home
last modified time | relevance | path

Searched refs:lastmod (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/_test/tests/inc/
H A Dcommon_saveWikiText.test.php112 $lastmod = filemtime($file);
115 'date' => $lastmod,
129 $this->assertEquals($lastmod, filemtime($file));
139 $this->assertNotEquals($lastmod, $newmod);
140 $lastmod = $newmod;
144 'date' => $lastmod,
159 $this->assertNotEquals($lastmod, $newmod);
160 $lastmod = $newmod;
163 'date' => $lastmod,
179 $this->assertNotEquals($lastmod, $newmod);
[all …]
/dokuwiki/inc/Sitemap/
H A DItem.php13 public $lastmod; variable in dokuwiki\\Sitemap\\Item
21 * @param int $lastmod Timestamp of the last modification
27 public function __construct($url, $lastmod, $changefreq = null, $priority = null) argument
30 $this->lastmod = $lastmod;
62 . ' <lastmod>' . date_iso8601($this->lastmod) . '</lastmod>' . NL;