name=($p_name==null)?$this->name:$p_name; $this->value=($p_value==null)?$this->value:$p_value; if ( !isset ($this->style )) $this->style=' class="itextarea" '; $this->id=($this->id=="")?$this->name:$this->id; if ( $this->readOnly==true) return $this->display(); $r=""; $r.='"; return $r; } /*!\brief print in html the readonly value of the widget*/ public function display() { $r='
'; $r.=h($this->value); $r.=sprintf('', $this->name,h($this->value)); $r.='
'; } static public function test_me() { } }