예제 #1
0
파일: htmlfield.php 프로젝트: gudwin/extasy
 public function outputInForm()
 {
     $area = new CHTMLArea();
     $area->name = $this->name;
     $area->content = $this->value;
     //
     return $area->generate();
 }
예제 #2
0
파일: htmlarea.php 프로젝트: gudwin/extasy
 public function getControl()
 {
     require_once CONTROL_PATH . 'htmlarea.php';
     $control = new CHTMLArea();
     $control->name = $this->szName;
     $control->content = $this->szContent;
     return $control->generate();
 }