.
*/
/**
* Defines the TinyMCE HTML WYSIWYG editor,
* class "mceEditor" defines that textareal will be converted to tinymce
* class "mceNoEditor" will deselect textareas from being converted into editor instances
*/
require_once(FILESYSTEMROOTPATH."include/form/AbstractFormField.php");
class TextAreaHTMLField extends AbstractFormField {
/**
* Constructor
*/
public function __construct($name, $title, $rows=5, $columns=5) {
parent::__construct($name, $title);
$this->rows = $rows;
$this->columns = $columns;
}
public function getField() {
if( is_array($this->value) ) {
$ret = "";
$i = 0;
$ret .= "";
return $ret;
}else {
return "";
}
}
}
?>