Some renaming.
[timetracker.git] / WEB-INF / lib / form / DateField.class.php
index 0ed220d..46ff7b8 100644 (file)
@@ -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');
 
@@ -81,10 +81,9 @@ class DateField extends TextField {
     }
   }
 
-  function toStringControl()  {
-    if (!$this->isRenderable()) return "";
+  function toStringControl() {
 
-    if (!$this->isEnable()) {
+    if (!$this->isEnabled()) {
       $html = htmlspecialchars($this->getValue()).
         "<input type=\"hidden\" name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\">\n";
     } else {
@@ -398,19 +397,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 .= ">";