name=($p_name==null)?$this->name:$p_name; $this->value=($p_value==null)?$this->value:$p_value; if ( $this->readOnly==true) return $this->display(); $td=""; $etd=""; $r=sprintf("$td $etd $td $etd", $this->name, $this->extra, $this->extra2, $this->name, $this->name, $this->value ); return $r; } /*!\brief print in html the readonly value of the widget*/ public function display() { $r=sprintf("%s",$this->value); $r.=sprintf('', $this->name,$this->value); return $r; } static public function test_me() { } }