App\Presenters\DashboardPresenter::createComponentDeleteForm PHP Method

createComponentDeleteForm() protected method

Delete form factory.
protected createComponentDeleteForm ( ) : Nette\Application\UI\Form
return Nette\Application\UI\Form
    protected function createComponentDeleteForm()
    {
        $form = new Form();
        $form->addSubmit('cancel', 'Cancel')->onClick[] = [$this, 'formCancelled'];
        $form->addSubmit('delete', 'Delete')->setHtmlAttribute('class', 'default')->onClick[] = [$this, 'deleteFormSucceeded'];
        $form->addProtection();
        return $form;
    }