Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
function handle_bbcode_hide($pagetext, $amount)
{
global $vbulletin, $vbphrase, $stylevar;
$idnum = intval($pagetext);
$hide = doubleval($amount);
$text = $this->strip_front_back_whitespace(( ((string) $idnum != $pagetext) ? $pagetext : $this->parse($GLOBALS['credits_hidden'][$idnum]) ), 1);
if (($vbulletin->userinfo['usergroupid'] == 5)||($vbulletin->userinfo['usergroupid'] == 6)||($vbulletin->userinfo['usergroupid'] == 7)||($vbulletin->userinfo['usergroupid'] == 9)||($vbulletin->userinfo['usergroupid'] == 10)||($vbulletin->userinfo['usergroupid'] == 2))
{
if (get_parent_class($this) == 'vB_BbCodeParser')
{
$html = '[hide=' . $hide . ']' . $text . '[/hide]';
}
else
{
$hide *= (1 - $vbulletin->userinfo['permissions']['credits_hide_discount']) * (1 + $vbulletin->options['credits_hide_tax']);
$cost = vb_number_format($hide, $vbulletin->options['credits_decimals']);
$template = $this->printable ? 'bbcode_hide_printable' : 'bbcode_hide';
eval('$html = "' . fetch_template($template) . '";');
}
}
else
{
$html = '-=== Ваша группа не имеет прав пользования коммерческим сервисом форума ===-';
}
return $html;
}