end() 공개 메소드

Echoes a closing tag and unbinds the Form helper from any Record or Document object used to generate the corresponding form.
public end ( ) : string
리턴 string Returns a closing `` tag.
예제 #1
0
파일: Form.php 프로젝트: bruensicke/radium
 public function end()
 {
     unset($this->model);
     unset($this->instance);
     unset($this->schema);
     unset($this->rules);
     return parent::end();
 }