2 Mosh: Ok, thanks, i will try it.
BTW: Edited my previous post
EDIT: ARGHHHHHHH!!!
Now i rlly DON'T KNOW WHY, but if now i'm looking in code of
Banned Members Log (3) of my copy of life forum i see uncomplete code!!
PHP Code:
// version information
$bml_version = 'v3.8.002';
// set display link flag to false
$show_bml_nav_link = false;
// if allow show to all usergroups, then set display link flag to true
if ($vbulletin->options['bml_all_grps'] == 0)
{
$show_bml_nav_link = true;
}
// if user in allowed usergroup, then set display link flag to true
$banned_allowed_groups = explode(',',$vbulletin->options['bml_grps']);
if ($vbulletin->options['bml_all_grps'] == 1 && (is_member_of($vbulletin->userinfo,$banned_allowed_groups)))
{
$show_bml_nav_link = true;
}
// if the display link flag is true, then add the link to the navbar or quicklinks
if ($show_bml_nav_link)
{
if ($vbulletin->options['bml_nav_link'] == 1)
{
$template_hook['navbar_buttons_left'] .= '<!-- '.$vbphrase['banned_members_log'].' '.$bml_version.'.
BTW: The lastest row missing one
' here in PHP tag ... accualy i see this:
$template_hook['navbar_buttons_left'] .= '<!-- '.$vbphrase['banned_members_log'].' '.$bml_version.'.
And if i look into fresh vBull instalation with this MOD i see this (correct code). And ofcourse, after i copy&pasted full code to my forum, problem solved, everything is FINE ... so, there is some &ł@$&!!! mistake in plugin importation.
PHP Code:
Plugin PHP Code
// version information
$bml_version = 'v3.8.002';
// set display link flag to false
$show_bml_nav_link = false;
// if allow show to all usergroups, then set display link flag to true
if ($vbulletin->options['bml_all_grps'] == 0)
{
$show_bml_nav_link = true;
}
// if user in allowed usergroup, then set display link flag to true
$banned_allowed_groups = explode(',',$vbulletin->options['bml_grps']);
if ($vbulletin->options['bml_all_grps'] == 1 && (is_member_of($vbulletin->userinfo,$banned_allowed_groups)))
{
$show_bml_nav_link = true;
}
// if the display link flag is true, then add the link to the navbar or quicklinks
if ($show_bml_nav_link)
{
if ($vbulletin->options['bml_nav_link'] == 1)
{
$template_hook['navbar_buttons_left'] .= '<!-- '.$vbphrase['banned_members_log'].' '.$bml_version.'. ? Mosh Shigdar 2008 - 2009 --><td class="vbmenu_control"><a href="'.$vbulletin->options['bburl'].'/ban_log.php?'.$session['sessionurl'].'">'.$vbphrase['banned_members_link'].'</a></td><!-- end of Banned Members Log -->';
}
if ($vbulletin->options['bml_nav_link'] == 2)
{
$template_hook['navbar_quick_links_menu_pos1'] .= '<!-- '.$vbphrase['banned_members_log'].' '.$bml_version.'. ? Mosh Shigdar 2008 - 2009 --><tr><td class="vbmenu_option"><a href="'.$vbulletin->options['bburl'].'/ban_log.php?'.$session['sessionurl'].'">'.$vbphrase['banned_members_link'].'</a></td></tr><!-- end of Banned Members Log -->';
}
}