예제 #1
0
파일: Form.php 프로젝트: sevikerr/form
 /**
  * @param string $name
  * @param null $text
  * @return TextArea
  */
 public function textarea($name, $text = null)
 {
     $input = new TextArea();
     $input->setName($name);
     $input->setText($text);
     $this->addElement($input);
     return $input;
 }