Example #1
0
 public function outputInForm()
 {
     $area = new CHTMLArea();
     $area->name = $this->name;
     $area->content = $this->value;
     //
     return $area->generate();
 }
Example #2
0
 public function getControl()
 {
     require_once CONTROL_PATH . 'htmlarea.php';
     $control = new CHTMLArea();
     $control->name = $this->szName;
     $control->content = $this->szContent;
     return $control->generate();
 }