View file upload/src/addons/MMO/Hide/BbCode/Tag/HideReply.php

File size: 453B
<?php

namespace MMO\Hide\BbCode\Tag;

class HideReply extends AbstractTag
{
    /**
     * @inheritDoc
     */
    public function render($content, array $tagChildren, $tagOption, array $tag, array $options)
    {
        return $this->renderTemplate($content, \XF::phrase('mh_tag_reply'), [
            'canView' => $this->canReplyView($options),
            'options' => $options,
            'tag' => $tag['tag']
        ]);
    }
}