X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=WEB-INF%2Flib%2Fform%2FDateField.class.php;h=3906db6c895e276d6c751a87b53edd4a3ab76791;hb=60d2288b7fca6caf0f5d9d3eee972f040eb24fb0;hp=49c2354425038587097b30fa656133c273c0c7b5;hpb=04bc6bdd39d67bcf9f63d8af4b067f1fafc06f8a;p=timetracker.git diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index 49c23544..3906db6c 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -35,7 +35,7 @@ class DateField extends TextField { var $lToday = "Today"; var $mDateObj; - var $cClassName = "DateField"; + var $class = 'DateField'; var $lCalendarButtons = array('today'=>'Today', 'close'=>'Close'); @@ -44,14 +44,13 @@ class DateField extends TextField { $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; @@ -81,7 +80,7 @@ class DateField extends TextField { } } - function toStringControl() { + function getHtml() { if (!$this->isEnabled()) { $html = htmlspecialchars($this->getValue()).