Frontend\Modules\Faq\Actions\Category::parse PHP Method

parse() private method

Parse the data into the template
private parse ( )
    private function parse()
    {
        $this->breadcrumb->addElement($this->record['title']);
        $this->header->setPageTitle($this->record['title']);
        // assign category and questions
        $this->tpl->assign('category', $this->record);
        $this->tpl->assign('questions', $this->questions);
    }