Home
last modified time | relevance | path

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

/plugin/schedule/
H A DscheduleRoot.class.php113 function dt2dn ($dt_date) { argument
114 $dn_date = mktime (0, 0, 0, $dt_date["m"], $dt_date["d"], $dt_date["Y"]);
116 …$this->message ('error', $dt_date["Y"]."-".$dt_date["d"]."-".$dt_date["m"]." : ".$this->plugin->ge…
136 $ds_date = sprintf ("%04d%02d%02d", $dt_date["Y"], $dt_date["m"], $dt_date["d"]);
138 $ds_date = sprintf ("20%02d%02d%02d", $dt_date["Y"], $dt_date["m"], $dt_date["d"]);
148 $dt_date[$this->currentDateFormat["fieldName"][0]],
149 $dt_date[$this->currentDateFormat["fieldName"][1]],
150 $dt_date[$this->currentDateFormat["fieldName"][2]]);
161 $dt_date[$this->currentDateFormat["fieldName"][1]],
162 $dt_date[$this->currentDateFormat["fieldName"][0]],
[all …]
/plugin/glossary/
H A Dglossary.class.php629 if (preg_match ("#(?<Y>[0-9]{4})(?<m>[0-9]{1,2})(?<d>[0-9]{1,2})#", $record['date'], $dt_date)) {
630 … $delta = (mktime (0, 0, 0, $dt_date["m"], $dt_date["d"], $dt_date["Y"]) - $recentTime) / 86400;