Backend\Modules\Blog\Widgets\Comments::parse PHP Method

parse() private method

Parse into template
private parse ( )
    private function parse()
    {
        $this->tpl->assign('blogComments', $this->comments);
        // comments to moderate
        if (isset($this->numCommentStatus['moderation']) && (int) $this->numCommentStatus['moderation'] > 0) {
            $this->tpl->assign('blogNumCommentsToModerate', $this->numCommentStatus['moderation']);
        }
    }