class date_pulldown {
var $name;
var $timestamp = -1;
var $months = array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
var $yearstart = -1;
var $yearend = -1;
function date_pulldown($name) {
$this->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;
}
}
?>
Fatal error: Uncaught Error: Class 'date_pulldown' not found in /var/www/361zn.is/htdocs/Week 8/ExamplesSet12b/dateselector_withclass.php:7
Stack trace:
#0 {main}
thrown in /var/www/361zn.is/htdocs/Week 8/ExamplesSet12b/dateselector_withclass.php on line 7