name = $name; } function setDate_global( ) { if (!$this->setDate_array($GLOBALS[$this->name])) { return $this->setDate_timestamp(time()); } return true; } function setDate_timestamp($time) { $this->timestamp = $time; return true; } function setDate_array($inputdate) { if (is_array($inputdate) && isset($inputdate['mon']) && isset($inputdate['mday']) && isset($inputdate['year'])) { $this->timestamp = mktime(11, 59, 59, $inputdate['mon'], $inputdate['mday'], $inputdate['year']); return true; } return false; } function setYearStart($year) { $this->yearstart = $year; } function setYearEnd($year) { $this->yearend = $year; } function getYearStart() { if ($this->yearstart < 0) { $nowarray = getdate(time()); $this->yearstart = $nowarray[year]-5; } return $this->yearstart; } function getYearEnd() { if ($this->yearend < 0) { $nowarray = getdate(time()); $this->yearend = $nowarray[year]+5; } return $this->yearend; } function output() { if ($this->timestamp < 0) { $this->setDate_global(); } $datearray = getdate($this->timestamp); $out = $this->day_select($this->name, $datearray); $out .= $this->month_select($this->name, $datearray); $out .= $this->year_select($this->name, $datearray); return $out; } function day_select($fieldname, $datearray) { $out = "\n"; return $out; } function month_select($fieldname, $datearray) { $out = "\n"; return $out; } function year_select($fieldname, $datearray) { $out = "\n"; return $out; } } ?>