X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FDateField.class.php;h=f1487d04b81f0c83667315c184b7bade5184e8e4;hb=75a1eedb8977b8f2db459128bab9aaf367e3b58b;hp=0ed220d915d994748162d2b7bf41ee97721065ad;hpb=8368d1ed9b3acdd13dc8ef325161661186935435;p=timetracker.git diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index 0ed220d9..f1487d04 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -33,34 +33,30 @@ class DateField extends TextField { var $mWeekStartDay = 0; var $mDateFormat = "d/m/Y"; var $lToday = "Today"; - var $mDateObj; - var $cClassName = "DateField"; var $lCalendarButtons = array('today'=>'Today', 'close'=>'Close'); function __construct($name) { - $this->name = $name; - $this->mDateObj = new DateAndTime(); - - if (isset($GLOBALS["I18N"])) { - $this->setLocalization($GLOBALS["I18N"]); - } + $this->class = 'DateField'; + $this->name = $name; + $this->mDateObj = new DateAndTime(); + $this->localize(); } - function setLocalization($i18n) { - global $user; + function localize() { + global $user; + global $i18n; - FormElement::setLocalization($i18n); - $this->mDateObj->setFormat($user->date_format); + $this->mDateObj->setFormat($user->getDateFormat()); $this->mMonthNames = $i18n->monthNames; $this->mWeekDayShortNames = $i18n->weekdayShortNames; - $this->lToday = $i18n->getKey('label.today'); - $this->lCalendarButtons['today'] = $i18n->getKey('label.today'); - $this->lCalendarButtons['close'] = $i18n->getKey('button.close'); + $this->lToday = $i18n->get('label.today'); + $this->lCalendarButtons['today'] = $i18n->get('label.today'); + $this->lCalendarButtons['close'] = $i18n->get('button.close'); - $this->mDateFormat = $user->date_format; + $this->mDateFormat = $user->getDateFormat(); $this->mWeekStartDay = $user->week_start; } @@ -81,10 +77,10 @@ class DateField extends TextField { } } - function toStringControl() { - if (!$this->isRenderable()) return ""; + function getHtml() { + global $user; - if (!$this->isEnable()) { + if (!$this->isEnabled()) { $html = htmlspecialchars($this->getValue()). "name\" value=\"".htmlspecialchars($this->getValue())."\">\n"; } else { @@ -299,9 +295,7 @@ class DateField extends TextField { function getDateString(dateVal) {\n"; - if (isset($GLOBALS['i18n'])) { - $html .= "dateVal.locale = \"".$GLOBALS['i18n']->lang."\";\n"; - } + $html .= "dateVal.locale = \"".$user->lang."\";\n"; $html .= "return dateVal.strftime(dateFormat); } @@ -398,19 +392,16 @@ class DateField extends TextField { 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->on_change!="") $html .= " onchange=\"$this->on_change\""; - 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 .= ">";