Frontend\Modules\Tags\Actions\Detail::parse PHP Method

parse() private method

Parse the data into the template
private parse ( )
    private function parse()
    {
        // assign tag
        $this->tpl->assign('tag', $this->record);
        // assign tags
        $this->tpl->assign('tagsModules', $this->results);
        // update breadcrumb
        $this->breadcrumb->addElement($this->record['name']);
        // tag-pages don't have any SEO-value, so don't index them
        $this->header->addMetaData(array('name' => 'robots', 'content' => 'noindex, follow'), true);
    }