View file upload/src/addons/MMO/Hide/BbCode/Tag/HideReply.php
<?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']
]);
}
}