options['class'] = 'biginput'; /* $this->options['wrap'] = 'soft'; */ $this->options['name'] = $name; $this->options['rows'] = $rows; $this->options['cols'] = $cols; $this->SetReadonly($readonly); $this->AddItem($value); } function SetReadonly($value='yes') { if($value=='yes') return $this->options['readonly'] = 'readonly'; $this->DelOption("readonly"); } function SetValue($value="") { return $this->AddItem($value); } function SetRows($value) { return $this->options['rows'] = $value; } function SetCols($value) { return $this->options['cols'] = $value; } } ?>