. * * For more information, contact Colosa Inc, 2566 Le Jeune Rd., * Coral Gables, FL, 33134, USA, or email info@colosa.com. * */ /** * @package gulliver.system **/ class XmlForm_Field_HTML extends XmlForm_Field_Textarea { /* //'default','office2003','silver' var $skin = 'default'; //'Default','Basic' var $toolbarSet = 'Default'; var $width = '90%'; var $height = '200' ; var $cols = 40; var $rows = 6; function render( $value , $owner=NULL ) { if ($this->mode==='edit') { if ($this->readOnly) $html=''; else $html=''; } elseif ($this->mode==='view') { $html=''; } else { $html=''; } return $html; }*/ /** * attachEvents function is putting its events * * @access public * @param string $element * @return string * @package gulliver.system * */ function attachEvents($element) { $html='var _editor_url = "";editor_generate("form['.$this->name.']");'; return $html; } }