Frontend\Modules\Faq\Widgets\AskOwnQuestion::loadForm PHP Метод

loadForm() приватный Метод

Load the form
private loadForm ( )
    private function loadForm()
    {
        // create form
        $this->frm = new FrontendForm('own_question', '#' . FL::getAction('OwnQuestion'));
        $this->frm->addText('name')->setAttributes(array('required' => null));
        $this->frm->addText('email')->setAttributes(array('required' => null, 'type' => 'email'));
        $this->frm->addTextarea('message')->setAttributes(array('required' => null));
    }