Some more refactoring in Form classes.
[timetracker.git] / WEB-INF / lib / form / DateField.class.php
index d233138..ecfdaf9 100644 (file)
@@ -33,25 +33,23 @@ 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();
+    $this->class = 'DateField';
+    $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;
@@ -81,9 +79,9 @@ class DateField extends TextField {
     }
   }
 
-  function toStringControl() {
+  function getHtml() {
 
-    if (!$this->isEnable()) {
+    if (!$this->isEnabled()) {
       $html = htmlspecialchars($this->getValue()).
         "<input type=\"hidden\" name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\">\n";
     } else {