Show dates in the past. 2013-04-22
authorIain Patterson <me@iain.cx>
Mon, 22 Apr 2013 20:08:53 +0000 (16:08 -0400)
committerIain Patterson <me@iain.cx>
Mon, 22 Apr 2013 20:12:11 +0000 (16:12 -0400)
Show dates up to two months in the past as well as the future when
creating a date dropdown.

lib/functions.php

index 20fdd7b..801ed78 100644 (file)
   }
 
   function show_date_form($name, $date = null) {
+    $past = 60;
+    $future = 60;
     echo "<select name=\"$name\">\n";
-    $now = time();
+    $now = date('Y-m-d', time());
+    list($y, $m, $d) = explode('-', $now);
+    $today = mktime(0, 0, 0, $m, $d, $y);
     if (isset($date)) {
       list($y, $m, $d) = explode('-', $date);
       $then = mktime(0, 0, 0, $m, $d, $y);
-      option($name, $date, date('l j F Y', $then), $date);
+      if ($then < $today - 86400 * $past || $then > $today + 86400 * $future) {
+        option($name, $date, date('l j F Y', $then), $date);
+      }
     }
-    for ($i = 0; $i < 60; $i++) {
-      $then = $now + 86400 * $i;
+    else $date = $now;
+    for ($i = -$past; $i < $future; $i++) {
+      $then = $today + 86400 * $i;
       option($name, date('Y-m-d', $then), date('l j F Y', $then), $date);
     }
     echo "</select>\n";