renderFormEnd() 공개 정적인 메소드

Renders form end.
public static renderFormEnd ( Form $form, $withTags = TRUE ) : string
$form Nette\Forms\Form
리턴 string
예제 #1
0
 /** @deprecated */
 public static function renderFormEnd(Form $form, $withTags = TRUE)
 {
     echo Runtime::renderFormEnd($form, $withTags);
 }
 public function renderEnd($withTags = TRUE)
 {
     $this->assertInForm();
     $form = $this->form;
     $this->form = NULL;
     /** @noinspection PhpInternalEntityUsedInspection */
     return Runtime::renderFormEnd($form, $withTags);
 }
예제 #3
0
파일: FormMacros.php 프로젝트: nette/forms
 /** @deprecated */
 public static function renderFormEnd(Form $form, $withTags = TRUE)
 {
     trigger_error(__METHOD__ . '() is deprecated, use Nette\\Bridges\\FormsLatte\\Runtime::renderFormEnd()', E_USER_DEPRECATED);
     echo Runtime::renderFormEnd($form, $withTags);
 }