Backend\Modules\FormBuilder\Actions\Edit::parse PHP Method

parse() protected method

Parse the form
protected parse ( )
    protected function parse()
    {
        $this->parseFields();
        parent::parse();
        $this->tpl->assign('id', $this->record['id']);
        $this->tpl->assign('name', $this->record['name']);
        // parse error messages
        $this->parseErrorMessages();
    }