Searched refs:dt_date (Results 1 – 2 of 2) sorted by relevance
| /plugin/schedule/ |
| D | scheduleRoot.class.php | 113 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… 135 elseif (preg_match ("#".$this->currentDateFormat ["longScan"]."#", $df_date, $dt_date)) 136 $ds_date = sprintf ("%04d%02d%02d", $dt_date["Y"], $dt_date["m"], $dt_date["d"]); 137 elseif (preg_match ("#".$this->currentDateFormat ["shortScan"]."#", $df_date, $dt_date)) 138 $ds_date = sprintf ("20%02d%02d%02d", $dt_date["Y"], $dt_date["m"], $dt_date["d"]); 146 … (preg_match ("#(?<Y>[0-9][0-9][0-9][0-9])(?<m>[0-9][0-9])(?<d>[0-9][0-9])#", $ds_date, $dt_date)) 148 $dt_date[$this->currentDateFormat["fieldName"][0]], 149 $dt_date[$this->currentDateFormat["fieldName"][1]], [all …]
|
| /plugin/glossary/ |
| D | glossary.class.php | 629 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;
|