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

File size: 458B
<?php

namespace MMO\Hide\BbCode\Tag;

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