renderFormEnd() public static method

Renders form end.
public static renderFormEnd ( Form $form, $withTags = TRUE ) : string
$form Nette\Forms\Form
return string
Example #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);
 }
Example #3
0
 /** @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);
 }