Quote:
Originally Posted by 2shae
PHP Code:
$this->tag_list['no_option']['hidea']['callback'] = 'handle_external';
$this->tag_list['no_option']['hidea']['external_callback'] = 'handle_bbcode_hidea';
$this->tag_list['no_option']['hidea']['strip_empty'] = true;
if (!function_exists('handle_bbcode_hidea'))
{
function handle_bbcode_hideg(&$parser, $text)
{
$parser->options['cachable'] = false;
if (!$parser->registry->userinfo->usergroup['6'])
{
return $text;
}
return '';
}
}
would that code only show the contents of [hidea] to people in group 6?
ps the hide from guests worked perfectly thanks
|
That would always show the Text
This is what you want (if you want to hide from anybody except Usergroup 6):
PHP Code:
$this->tag_list['no_option']['hidea']['callback'] = 'handle_external';
$this->tag_list['no_option']['hidea']['external_callback'] = 'handle_bbcode_hidea';
$this->tag_list['no_option']['hidea']['strip_empty'] = true;
if (!function_exists('handle_bbcode_hidea'))
{
function handle_bbcode_hideg(&$parser, $text)
{
$parser->options['cachable'] = false;
if ($parser->registry->userinfo['usergroupid'] == 6)
{
return $text;
}
return '';
}
}