<?php
class GamingForums_BbCode_Formatter_Base extends XenForo_BbCode_Formatter_Base
{
protected $_tags;
public function getTags()
{
$requestPaths = XenForo_Application::get('requestPaths');
$this->_tags = parent::getTags();
$this->_tags['goto'] = array(
'hasOption' => true,
'replace' => array('<a href="' . $requestPaths['fullUri'] . '#%s">', '</a>')
);
$this->_tags['anchor'] = array(
'hasOption' => true,
'replace' => array('<a id="%s">', '</a>')
);
return $this->_tags;
}
}