X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/cd5e077ecb497431decde4835138b877d63b261c..1cf228c258ba8a8950b1a55bc25b93768bf50184:/WEB-INF/lib/form/DateField.class.php diff --git a/WEB-INF/lib/form/DateField.class.php b/WEB-INF/lib/form/DateField.class.php index ecfdaf92..f1487d04 100644 --- a/WEB-INF/lib/form/DateField.class.php +++ b/WEB-INF/lib/form/DateField.class.php @@ -41,24 +41,22 @@ class DateField extends TextField { $this->class = 'DateField'; $this->name = $name; $this->mDateObj = new DateAndTime(); - - if (isset($GLOBALS["I18N"])) { - $this->localize($GLOBALS["I18N"]); - } + $this->localize(); } - function localize($i18n) { + function localize() { global $user; + global $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; } @@ -80,6 +78,7 @@ class DateField extends TextField { } function getHtml() { + global $user; if (!$this->isEnabled()) { $html = htmlspecialchars($this->getValue()). @@ -296,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); }