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

parse() protected method

Parse the datagrid and the reports
protected parse ( )
    protected function parse()
    {
        parent::parse();
        // datagrid
        $this->tpl->assign('dataGrid', $this->dataGrid->getNumResults() != 0 ? $this->dataGrid->getContent() : false);
        // form info
        $this->tpl->assign('name', $this->record['name']);
        $this->tpl->assign('id', $this->record['id']);
        $this->tpl->assignArray($this->filter);
    }