vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   [SOVED]Banned Group Avatar ( modification based on groupid ) 3.8.x (https://vborg.vbsupport.ru/showthread.php?t=269964)

danyxxx 09-09-2011 08:50 AM

[SOVED]Banned Group Avatar ( modification based on groupid ) 3.8.x
 
Hello,

I need a modification that will put a single image to all users that are banned maybe the modification can be made for the usergroupd id .. or something like that ( 3.8.x ) .

Kind Regards !

BirdOPrey5 09-09-2011 03:25 PM

You could make a plugin in Plugin Manager-> Add A New Plugin

hook: postbit_display_complete

Give it a name, leave execution order as 5.

php code:
PHP Code:

if (is_member_of($vbulletin->userinfo8))
{
  
$this->post['avatarurl'] = "/forums/images/misc/noavatar.gif";
  
$this->post['avwidth']  = 'width="120"';
  
$this->post['avheight'] = 'height="120"';



Assuming 8 is your banned usergroup... Change the file name to the avatar and height and width to your needs.

danyxxx 09-09-2011 03:29 PM

ok, thanks a lot, I will try that :D

danyxxx 09-13-2011 06:42 AM

Hei... doesn't work man :(

BirdOPrey5 09-13-2011 10:59 AM

Quote:

Originally Posted by danyxxx (Post 2245188)
Hei... doesn't work man :(

Did you set the plugin as Active? Does anything happen at all?

danyxxx 09-14-2011 07:18 AM

Yes ...
But I use another modification for the users with no avatar .. maybe because that?

BirdOPrey5 09-14-2011 12:34 PM

Possible... try changing the execution order from 5 to 8.... if nothing change it from 8 to 2, see if either helps.

danyxxx 09-14-2011 01:10 PM

aaa , I will try this , I return with reply

--------------- Added [DATE]1316009592[/DATE] at [TIME]1316009592[/TIME] ---------------

Nothing happens.. I try with 2, 8, 1, 10 ... doesn't work .
I have this modification:
PHP Code:

                        <if condition="$bbuserinfo[showavatars]">
                                <
div class="smallfont">
                                        &
nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/noavatar.png" $post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                                </
div>
            </if> 

I need the condition for usergroupid :D :p

I try this way -->

PHP Code:

                       <if condition="$bbuserinfo[showavatars]">
                       <if 
condition="is_member_of($bbuserinfo, array(123))">

                                <
div class="smallfont">
                                        &
nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/banned.png" $post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                                </
div>
            </if>
            </if> 

An this way -->

PHP Code:

                       <if condition="$bbuserinfo[showavatars]">
                       <if 
condition="$bbuserinfo['usergroupid'] ==123">  

                                <
div class="smallfont">
                                        &
nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/banned.png" $post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                                </
div>
            </if>
            </if> 

Before the:

PHP Code:

                        <if condition="$bbuserinfo[showavatars]">
                                <
div class="smallfont">
                                        &
nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/noavatar.png" $post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                                </
div>
            </if> 

I try that inside the above code .. nothing happens :(

I try this way to -->
PHP Code:

                        <if condition="$bbuserinfo[showavatars]">
                                <
div class="smallfont">
                                        &
nbsp;<br /><if condition="is_member_of($bbuserinfo, array(123))"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/banned.png" $post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></if><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="/forum/images/noavatar.png" $post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                                </
div>
            </if> 

Doesn't work :(

BirdOPrey5 09-14-2011 03:51 PM

I don't know what you are doing with:

Code:

<if condition="is_member_of($bbuserinfo, array(123))">
It would be;

Code:

<if condition="is_member_of($bbuserinfo, 1, 2, 3)">
If you wanted usergroups 1, 2, and 3.

Banned usergroup is usually 8.

danyxxx 09-14-2011 03:53 PM

My banned groupid is 123 :)
But not that is the problem ...

--------------- Added [DATE]1316020189[/DATE] at [TIME]1316020189[/TIME] ---------------

Yuhuuuuu , I make the modification succesfully .
Was pretty simple, look :

I search in postbit_legacy for <if condition="$show['avatar']">
And I find:
PHP Code:

            <if condition="$show['avatar']">
                <
div class="smallfont">
                    &
nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]$post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                </
div>
                        </if> 

The modification that must be added, is:

PHP Code:

                        <if condition="$post[usergroupid] == 123">
                          <
img src="/forum/images/banned.png" alt="" border="0" />
                        <else /> 

But, you must put this above the $show_avatar thing, and after the </if> of $show_avatar thing, you must put another </if> , LIKE THIS :

PHP Code:

                        <if condition="$post[usergroupid] == 123">
                          <
img src="/forum/images/banned.png" alt="" border="0" />
                        <else />
            <if 
condition="$show['avatar']">
                <
div class="smallfont">
                    &
nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]$post[avwidth$post[avheightalt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
                </
div>
                        </if>
                        </if> 

You can replace /forum/images/banned.png with your image url .
You can replace 123 with your banned groupid , usually 8 .

ENJOY ( for who's looking after this modification ) :p


All times are GMT. The time now is 03:05 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02005 seconds
  • Memory Usage 1,811KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (9)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete