本文整理匯總了PHP中XenForo_BbCode_Formatter_Base::_prepareSmilieUrlInternal方法的典型用法代碼示例。如果您正苦於以下問題:PHP XenForo_BbCode_Formatter_Base::_prepareSmilieUrlInternal方法的具體用法?PHP XenForo_BbCode_Formatter_Base::_prepareSmilieUrlInternal怎麽用?PHP XenForo_BbCode_Formatter_Base::_prepareSmilieUrlInternal使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XenForo_BbCode_Formatter_Base
的用法示例。
在下文中一共展示了XenForo_BbCode_Formatter_Base::_prepareSmilieUrlInternal方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _prepareSmilieUrlInternal
/**
* @see XenForo_BbCode_Formatter_Base::_prepareSmilieUrl()
*/
protected function _prepareSmilieUrlInternal($smilieUrl)
{
if ($smilieUrl[0] == '/') {
if (self::$_boardRoot === null) {
$boardUrl = XenForo_Application::get('options')->boardUrl;
self::$_boardRoot = substr($boardUrl, 0, strpos($boardUrl, '/', 8));
}
// absolute path to this server
return self::$_boardRoot . parent::_prepareSmilieUrlInternal($smilieUrl);
} else {
if (!preg_match('#^https?://#i', $smilieUrl)) {
// relative path to this server
return XenForo_Application::get('options')->boardUrl . '/' . parent::_prepareSmilieUrlInternal($smilieUrl);
} else {
// no change required
return parent::_prepareSmilieUrlInternal($smilieUrl);
}
}
}