Adjusted time.php to honor note on separate row option.
[timetracker.git] / WEB-INF / lib / form / TextField.class.php
index e4d5865..6b745a2 100644 (file)
 // +----------------------------------------------------------------------+
 
 import('form.FormElement');
-       
+
 class TextField extends FormElement {
-    var $mPassword     = false;
-    var $cClassName            = "TextField";
 
-       function __construct($name,$value="")
-       {
-               $this->name = $name;
-               $this->value = $value;
-       }
-       
-       function setAsPassword($name)   { $this->mPassword = $name;     }
-       function getAsPassword()        { return $this->mPassword; }
+  var $title = null; // Control title (ex: to display a tooltip).
+
+  function __construct($name)
+  {
+    $this->class = 'TextField';
+    $this->name = $name;
+  }
+
+  function setTitle($title) { $this->title = $title; }
+
+  function getHtml() {
+    if (empty($this->id)) $this->id = $this->name;
+    $html = "\n\t<input type=\"text\"";
+    $html .= " id=\"$this->id\" name=\"$this->name\"";
+    if (!empty($this->size)) $html .= " size=\"$this->size\"";
+    if (!empty($this->style)) $html .= " style=\"$this->style\"";
+    if (!empty($this->title)) $html .= " title=\"$this->title\"";
+
+    if($this->isEnabled()) {
+      if (!empty($this->max_length)) $html .= " maxlength=\"$this->max_length\"";
+      if (!empty($this->on_change)) $html .= " onchange=\"$this->on_change\"";
+    }
 
-       function toStringControl()      {
-               if (!$this->isRenderable()) return "";
-           
-               if (!$this->isEnable()) {
-                       $html = "<input name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n";
-               } else {
-                       
-                   if ($this->id=="") $this->id = $this->name;
-                   
-                       $html = "\n\t<input";
-                       $html .= ( $this->mPassword ? " type=\"password\"" : " type=\"text\"");
-                       $html .= " name=\"$this->name\" id=\"$this->id\"";
-                       
-                       if ($this->size!="")
-                         $html .= " size=\"$this->size\"";
-                         
-                       if ($this->style!="")
-                          $html .= " style=\"$this->style\"";
-                         
-                       if ($this->max_length!="")
-                          $html .= " maxlength=\"$this->max_length\"";
-                          
-                       if ($this->on_change!="")
-                          $html .= " onchange=\"$this->on_change\"";
+    $html .= " value=\"".htmlspecialchars($this->getValue())."\"";
 
-                       $html .= " value=\"".htmlspecialchars($this->getValue())."\"";
-                       $html .= ">";
-               }
-               
-               return $html;
-       }
+    if(!$this->isEnabled()) $html .= " readonly";
+    $html .= ">\n";
+    return $html;
+  }
 }