X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FDateField.class.php;h=3906db6c895e276d6c751a87b53edd4a3ab76791;hb=60d2288b7fca6caf0f5d9d3eee972f040eb24fb0;hp=aa8a1498079ea26a3f38568a25ce14512bf3d07c;hpb=9a23a8c0a51b7ec38a96f525484134f3cb85dc7e;p=timetracker.git diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index aa8a1498..3906db6c 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -35,23 +35,22 @@ class DateField extends TextField { var $lToday = "Today"; var $mDateObj; - var $cClassName = "DateField"; + var $class = 'DateField'; var $lCalendarButtons = array('today'=>'Today', 'close'=>'Close'); - function DateField($name) { - $this->mName = $name; + function __construct($name) { + $this->name = $name; $this->mDateObj = new DateAndTime(); if (isset($GLOBALS["I18N"])) { - $this->setLocalization($GLOBALS["I18N"]); + $this->localize($GLOBALS["I18N"]); } } - function setLocalization($i18n) { - global $user; + function localize($i18n) { + global $user; - FormElement::setLocalization($i18n); $this->mDateObj->setFormat($user->date_format); $this->mMonthNames = $i18n->monthNames; @@ -68,28 +67,27 @@ class DateField extends TextField { function setValueSafe($value) { if (isset($value) && (strlen($value) > 0)) { $this->mDateObj->parseVal($value, DB_DATEFORMAT); - $this->mValue = $this->mDateObj->toString($this->mDateFormat); //? + $this->value = $this->mDateObj->toString($this->mDateFormat); //? } } // get value for storing in session or database function getValueSafe() { - if (strlen($this->mValue)>0) { - $this->mDateObj->parseVal($this->mValue, $this->mDateFormat); //? + if (strlen($this->value)>0) { + $this->mDateObj->parseVal($this->value, $this->mDateFormat); //? return $this->mDateObj->toString(DB_DATEFORMAT); } else { return null; } } - function toStringControl() { - if (!$this->isRenderable()) return ""; + function getHtml() { - if (!$this->isEnable()) { + if (!$this->isEnabled()) { $html = htmlspecialchars($this->getValue()). - "mName\" value=\"".htmlspecialchars($this->getValue())."\">\n"; + "name\" value=\"".htmlspecialchars($this->getValue())."\">\n"; } else { - if ($this->mId=="") $this->mId = $this->mName; + if ($this->id=="") $this->id = $this->name; $html = ""; @@ -393,27 +391,21 @@ class DateField extends TextField { $html .= "\n"; $html .= "\n\tmName\" id=\"$this->mId\""; + $html .= " name=\"$this->name\" id=\"$this->id\""; - if ($this->mSize!="") - $html .= " size=\"$this->mSize\""; + if ($this->size!="") + $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; $html .= " maxlength=\"50\""; - if ($this->mOnChange!="") - $html .= " onchange=\"$this->mOnChange\""; + if ($this->on_change!="") + $html .= " onchange=\"$this->on_change\""; - if ($this->mOnBlur!="") - $html .= " onblur=\"$this->mOnBlur\""; - - if ($this->mOnClick!="") - $html .= " onclick=\"$this->mOnClick\""; - - if ($this->mOnFocus!="") - $html .= " onfocus=\"$this->mOnFocus\""; + if ($this->on_click!="") + $html .= " onclick=\"$this->on_click\""; $html .= " value=\"".htmlspecialchars($this->getValue())."\""; $html .= ">"; @@ -421,10 +413,9 @@ class DateField extends TextField { if (APP_NAME) $app_root = '/'.APP_NAME; - $html .= " mName."');\">\n"; + $html .= " name."');\">\n"; } return $html; } } -?> \ No newline at end of file