Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Usergroup Legend on Mouseover Details »»
Usergroup Legend on Mouseover
Version: 1.02, by SuperTaz SuperTaz is offline
Developer Last Online: Mar 2022 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 4.1.x Rating:
Released: 03-03-2011 Last Update: 04-28-2012 Installs: 19
Template Edits
Re-useable Code Code Changes Translations  
No support by the author.

/*================================================= =========*\
|| ################################################## ## ||
|| # Usergroup Legend For vBulletin Forums 4.1.x
|| # Version 1.01
|| # Author: Warden
|| # This mod may only be used from vbulletin.org
|| # DO NOT display this mod on any other modification site without my
|| # permission!
|| # You can alter this code and re-display it here on vbulletin.org
|| ################################################## ## ||
\*================================================ ==========*/

Description: This makes a usergroup legend that you can see what group belongs to whom by hovering over the color.

This mod is ported from this one here: https://vborg.vbsupport.ru/showthread.php?t=140019

All credits go to Digitalus since he came up with this design.

Note: This mod does work with vBulletin 4.1.8.

It is easy to add more colors for usergroups. I will post that below.

Installation time: About 2 minutes (2 Phrases, 1 Manual Template Change)

Note: If you are using this mod, https://vborg.vbsupport.ru/showthread.php?t=254239, it will conflict with my mod. Make sure if you use my mod, to delete the other one.

Also note: Make sure your style is updated to the newest version or there may be issues.

Also Note: This mod may contain a few glitches and/or bugs until I get them worked out. If someone wants to make this into an XML product, knock yourself out.

Installation:

Step 1: Go to admincp > Languages & Phrases > Phrase Manager > Add New Phrase:

Code:
Phrase Type: Global
Product: vBulletin
Varname: legend_title
Text: Usergroup Legend
Save!

Step 2: Go to Admincp > Languages & Phrases > Phrase Manager > Ass New Phrase:

Code:
Phrase Type: Global
Product: vBulletin
Varname: legend_alt_title
Text: User Group Legend
Save!

Step 3: Go to your AdminCP > Styles & Templates > Style Manager

Step 4: Choose your style

Step 5: Click on "Forum Home Templates", then click on "Forum Home"

Step 6: Look for:


Code:
<!-- what's going on box -->
Add Below:

Code:
<script type="text/javascript">
<!--

setup_memberlegend = function(tobj)
{
	prefix = ''
	suffix = ''

	if (tobj.getAttribute('ital'))
	{
		prefix += '<em>'
		suffix += '</em>'
	}

	if (tobj.getAttribute('undr'))
	{
		prefix += '<u>'
		suffix += '</u>'
	}

	if (tobj.getAttribute('bold'))
	{
		prefix += '<b>'
		suffix += '</b>'
	}

	if (tobj.getAttribute('line'))
	{
		prefix += '<s>'
		suffix += '</s>'
	}

	if (tobj.getAttribute('clr'))
	{
		prefix += '<span style="color:' + tobj.getAttribute('clr') + ';">'
		suffix += '</span>'
	}



	fetch_object('memberlegend').innerHTML = prefix + tobj.getAttribute('group') + suffix
}

-->
</script>
Step 7: Also in the "Forum Home" template, look for:

Code:
<!-- end logged-in users -->
Add below:

Code:
<!-- Usergroup Legend --> 
<div id="wgo_legend" class="wgo_subblock section collapse"><h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:phrase legend_alt_title}"/>{vb:phrase legend_title}</h3> <a class="collapse" id="collapse_legend_list" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse_40b.png" alt="Collapse/Expand" /></a>
</div>
            <div>
               <div style="float:left; width:18px; height:2px"></div>
                <div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Administrator" 

clr="#FF0000" bold="y" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = 

''">
			<div style="height:15px;width:15px;background:#FF0000;"></div>
                </div>
                <div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Super Moderator" 

bold="y" clr="#00FF00" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = 

''">
			<div style="height:15px;width:15px;background:#00FF00;"></div>
		</div>
                <div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Moderator" 

bold="y" clr="#008000" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = 

''">
			<div style="height:15px;width:15px;background:#008000;"></div>
		</div>
                <div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Supporter" 

bold="y" clr="#FFFF00" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = 

''">
			<div style="height:15px;width:15px;background:#FFFF00;"></div>
		</div>
                <div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Member" 

clr="#00FFFF" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = ''">
			<div style="height:15px;width:15px;background:#00FFFF;"></div>
		</div>
                <div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Validating" 

clr="#A0522D" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = 

''">
			<div style="height:15px;width:15px;background:#A0522D;"></div>
		</div>
                <div style="float:left">&nbsp;</div>
                <div class="alt2" style="float:left;height:15px;width:15px;padding:0px;" group="Banned" 

ital="y" line="y" clr="#FF00FF" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object

('memberlegend').innerHTML = ''">
			<div style="height:15px;width:15px;background:#FF00FF;"></div>
		</div>
		<div style="float:left;width:10px;height:1px;">&nbsp;</div>
		<div style="float:left;" id="memberlegend"></div>
         </div>
<br><br>
<!-- End Usergroup Legend -->
Click on Save and Reload!

You can adjust the usergroup names and colors to your liking.

If you want to add another usergroup, find the spot you want in the code above, and add this code:


Code:
<div style="float:left;">&nbsp;</div>
		<div class="alt2" style="float:left;height:12px;width:12px;padding:0px;" group="Member" bold="y" 

clr="#000000" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('memberlegend').innerHTML = ''">
			<div style="height:12px;width:12px;background:#000000;"></div>
		</div>
The blue highlighted area is the name you can change
The red highlighted area is the html color code you can change.

Live Demo Here

Scroll down to the bottom.

Remember: If you want support, CLICK INSTALL

Any problems, let me know.

Download Now

File Type: txt Usergroup Legend Install - Updated.txt (6.7 KB, 40 views)

Screenshots

File Type: png userlegend.png (9.8 KB, 0 views)
File Type: png userlegend1.png (11.2 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
JamalFree

Comments
  #12  
Old 03-12-2011, 08:11 PM
SuperTaz's Avatar
SuperTaz SuperTaz is offline
 
Join Date: Apr 2007
Location: Pennsylvania
Posts: 744
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This does not change the colors of your users. This only shows the colors that you want for each usergroup.

In order to change your usergroup colors, you have to do this:

Go to your Admincp > Click on Usergroups dropdown menu > Usergroup Manager > Click on "GO" next to the usergroup you want to change > Look for Username HTML Markup and add this:

For the first box add, you can change the color:
Code:
<span style="font-weight: bold; color: red;">
For the second box add:
Code:
</span>
Save.

Then, on my mod, you change the color to the one you chose for each usergroup as shown above.
Reply With Quote
  #13  
Old 03-12-2011, 11:56 PM
commonwealth commonwealth is offline
 
Join Date: Nov 2009
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

oh perfect, thanks a ton for that!
Reply With Quote
  #14  
Old 03-13-2011, 09:06 PM
Fire112 Fire112 is offline
 
Join Date: Sep 2007
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

when convenient for me not someone has an idea?
Attached Images
File Type: jpg i.jpg (20.9 KB, 0 views)
Reply With Quote
  #15  
Old 03-14-2011, 12:31 AM
SuperTaz's Avatar
SuperTaz SuperTaz is offline
 
Join Date: Apr 2007
Location: Pennsylvania
Posts: 744
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Fire112 View Post
when convenient for me not someone has an idea?
What version of vBulletin are you using?
Reply With Quote
  #16  
Old 03-14-2011, 06:23 AM
Fire112 Fire112 is offline
 
Join Date: Sep 2007
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have 4.1.2
Reply With Quote
  #17  
Old 03-15-2011, 01:56 AM
SuperTaz's Avatar
SuperTaz SuperTaz is offline
 
Join Date: Apr 2007
Location: Pennsylvania
Posts: 744
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can you pm me the URL of your site so I can take a look at it? The only thing I can think of is that the style that you have it on is not a 4.1.2 style.
Reply With Quote
  #18  
Old 03-15-2011, 07:20 AM
Fire112 Fire112 is offline
 
Join Date: Sep 2007
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

here is my forumhome

PHP Code:
{vb:stylevar htmldoctype}
<
html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<
head>
    {
vb:raw headinclude}
    <
title>{vb:raw vboptions.bbtitle}</title>

    <
vb:if condition="$vboptions['storecssasfile']">
    {
vb:cssfile forumhome-rollup.css}
    <
vb:else />
    {
vb:cssfile forumbits.css,forumhome.css,widgets.css,sidebar.css,options.css,tagcloud.css}
    </
vb:if>

    <!--[if 
lt IE 8]>{vb:cssfile forumbits-ie.css,sidebar-ie.css,options-ie.css}<![endif]-->
    <
vb:if condition="$show['sidebar']">
    <
script type="text/javascript" src="{vb:stylevar yuipath}/animation/animation-min.js?v={vb:raw vboptions.simpleversion}"></script>
    <
script type="text/javascript">
        var 
sidebar_align '{vb:raw show.sidebarposition}';
        var 
content_container_margin parseInt('{vb:math {vb:stylevar forum_sidebar_width}+{vb:math {vb:stylevar padding}*2}}');
        var 
sidebar_width parseInt('{vb:stylevar forum_sidebar_width}');
    </
script>
    <
script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/vbulletin-sidebar.js?v={vb:raw vboptions.simpleversion}"></script>
    </
vb:if>
    {
vb:raw headinclude_bottom}
</
head>
    <
body>

    {
vb:raw header}

    {
vb:raw navbar}

    <
div id="pagetitle">
        <
h1>{vb:raw vboptions.bbtitle}</h1>
        <
p id="welcomemessage" class="description">{vb:rawphrase welcome_to_the_x, {vb:raw vboptions.bbtitle}}</p>
    </
div>

    <
vb:if condition="$show['sidebar']">
    <
div id="content_container"<vb:if condition="$show['sidebarposition'] == 'left'"> class="contentright"</vb:if>>
        <
div id="content">
    </
vb:if>
    <!-- 
main -->
        {
vb:raw template_hook.forumhome_above_forums}
    <
ol id="forums" class="floatcontainer">
        {
vb:raw forumbits}
    </
ol>
        {
vb:raw template_hook.forumhome_below_forums}
    <!-- /
main -->

    {
vb:raw forumhome_markread_script}

    {
vb:raw ad_location.board_after_forums}

    <!-- 
what's going on box -->
<script type="text/javascript">
<!--

setup_memberlegend = function(tobj)
{
    prefix = ''
    suffix = ''

    if (tobj.getAttribute('
ital'))
    {
        prefix += '
<em>'
        suffix += '
</em>'
    }

    if (tobj.getAttribute('
undr'))
    {
        prefix += '
<u>'
        suffix += '
</u>'
    }

    if (tobj.getAttribute('
bold'))
    {
        prefix += '
<b>'
        suffix += '
</b>'
    }

    if (tobj.getAttribute('
line'))
    {
        prefix += '
<s>'
        suffix += '
</s>'
    }

    if (tobj.getAttribute('
clr'))
    {
        prefix += '
<span style="color:' + tobj.getAttribute('clr') + ';">'
        suffix += '
</span>'
    }



    fetch_object('
memberlegend').innerHTML = prefix + tobj.getAttribute('group') + suffix
}

-->
</script>
    <div id="wgo" class="collapse wgo_block block">
        <h2 class="blockhead">{vb:rawphrase whats_going_on}</h2>
        <div class="blockbody formcontrols floatcontainer">
            {vb:raw template_hook.forumhome_wgo_pos1}
            <vb:if condition="$show['
loggedinusers']">
            <!-- logged-in users -->
            <div id="wgo_onlineusers" class="wgo_subblock section">
                <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/users_online.png" alt="{vb:rawphrase currently_active_users}" /></h3>
                <div class="wgo_new_blk1">
                                     <div class="wgo_infolist_blk">
                    <p>{vb:rawphrase there_are_x_y_online_link, {vb:raw totalonline}, {vb:raw session.sessionurl}} <span class="shade">{vb:rawphrase x_members_and_y_guests, {vb:raw numberregistered}, {vb:raw numberguest}}</span></p>
                    <p>{vb:rawphrase most_users_ever_online_was_x_y_at_z, {vb:raw recordusers}, {vb:raw recorddate}, {vb:raw recordtime}}</p>
                                     </div>
                                     <div class="wgo_userlist_blk">
                    <vb:if condition="$activeusers">
                    <ol class="commalist" id="wgo_onlineusers_list">
                        <vb:each from="activeusers" value="loggedin">
                            <li> {vb:stylevar dirmark}<a class="username" href="{vb:link member, {vb:raw loggedin}}">{vb:raw loggedin.musername}</a>{vb:raw loggedin.invisiblemark}{vb:raw loggedin.buddymark}</li>
                        </vb:each>
                    </ol>
                    </vb:if>
                                     </div>
                </div>
            </div>
            <!-- end logged-in users -->
<!-- Usergroup Legend --> 
<div id="wgo_legend" class="wgo_subblock section">
<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase usergroup_legend, 

{vb:raw vboptions.bbtitle}}" />{vb:rawphrase usergroup_legend, {vb:raw vboptions.bbtitle}}</h3>
</div>
            <div>
               <div style="float:left; width:18px; height:2px"></div>
                <div style="float:left;">&nbsp;</div>
        <div class="alt2" style="float:left;height:12px;width:12px;padding:0px;" group="T&T Admin" 

clr="#ff0000" bold="y" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('
memberlegend').innerHTML = 

''">
            <div style="height:12px;width:12px;background:#ff0000;"></div>
        </div>
                <div style="float:left;">&nbsp;</div>
        <div class="alt2" style="float:left;height:12px;width:12px;padding:0px;" group="T&T Mod" 

bold="y" clr="#008000" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('
memberlegend').innerHTML = 

''">
            <div style="height:12px;width:12px;background:#008000;"></div>
        </div>
                <div style="float:left;">&nbsp;</div>
        <div class="alt2" style="float:left;height:12px;width:12px;padding:0px;" group="T&T Support" 

bold="y" clr="#0000ff" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('
memberlegend').innerHTML = 

''">
            <div style="height:12px;width:12px;background:#0000ff;"></div>
        </div>
                <div style="float:left;">&nbsp;</div>
        <div class="alt2" style="float:left;height:12px;width:12px;padding:0px;" group="T&T Kunden" bold="y" 

clr="#ffff00" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object('
memberlegend').innerHTML = ''">
            <div style="height:12px;width:12px;background:#ffff00;"></div>
        </div>
                <div style="float:left">&nbsp;</div>
                    <div class="alt2" style="float:left;height:12px;width:12px;padding:0px;" group="Banned Member" 

ital="y" line="y" clr="#8b008b" onmouseover="setup_memberlegend(this)" onmouseout="fetch_object

('
memberlegend').innerHTML = ''">
            <div style="height:12px;width:12px;background:#8b008b;"></div>
        </div>
        <div style="float:left;width:10px;height:1px;">&nbsp;</div>
        <div style="float:left;" id="memberlegend"></div>
         </div>
<br><br>
<!-- End Usergroup Legend -->
            </vb:if>
            {vb:raw template_hook.forumhome_wgo_pos2}
            <vb:if condition="$show['
upcomingevents']">
            <div id="wgo_events" class="wgo_subblock section">
                <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/event.png" alt="{vb:rawphrase todays_events}" /></h3>
                           <div class="wgo_new_blk1">
                <ol>
                    {vb:raw upcomingevents}
                </ol>
                           </div>
            </div>
            </vb:if>
            {vb:raw template_hook.forumhome_wgo_pos3}
            <vb:if condition="$show['
birthdays']">
            <!-- today'
s birthdays -->
            <
div id="wgo_birthdays" class="wgo_subblock section">
                <
h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/birthday.png" alt="{vb:rawphrase todays_birthdays}" /></h3>
                            <
div class="wgo_new_blk1">
                <
ol class="commalist">
                    {
vb:raw birthdays}
                </
ol>
                            </
div>
            </
div>
            <!-- 
end today's birthdays -->
            </vb:if>
            {vb:raw template_hook.forumhome_wgo_pos4}
            <div id="wgo_stats" class="wgo_subblock section">
                <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase x_statistics, {vb:raw vboptions.bbtitle}}" /></h3>
                <div class="wgo_new_blk1">
                    <dl>
                        <dt>{vb:rawphrase threads}</dt>
                            <dd>{vb:raw totalthreads}</dd>
                        <dt>{vb:rawphrase posts}</dt>
                            <dd>{vb:raw totalposts}</dd>
                        <dt>{vb:rawphrase members}</dt>
                            <dd>{vb:raw numbermembers}</dd>
                        <vb:if condition="$show['
activemembers']">
                                                <dt>{vb:rawphrase active_members}</dt>
                                                         <dd>{vb:raw activemembers}</dd>
                                                </vb:if>
                    </dl>
                    <p>{vb:rawphrase welcome_to_our_newest_member_x, {vb:link member, {vb:raw newuserinfo}}, {vb:raw newuserinfo.username}}</p>
                    {vb:raw template_hook.forumhome_wgo_stats}
                </div>
            </div>
            <div id="wgo_legend" class="wgo_subblock section">
                <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/legend.png" alt="{vb:rawphrase icon_legend}" /></h3>
                <div class="wgo_new_blk1">
                    <dl id="icon_legends" class="icon_legends">
                        <dt><img src="{vb:stylevar imgdir_statusicon}/forum_new-16.png" alt="{vb:rawphrase new_posts_forum}" /></dt><dt>{vb:rawphrase new_posts_forum}</dt>
                        <dt><img src="{vb:stylevar imgdir_statusicon}/forum_old-16.png" alt="{vb:rawphrase no_new_posts_forum}" /></dt><dt>{vb:rawphrase no_new_posts_forum}</dt>
                        <dt><img src="{vb:stylevar imgdir_statusicon}/category-16.png" alt="{vb:rawphrase category_forum}" /></dt><dt>{vb:rawphrase category_forum}</dt>
                        <dt><img src="{vb:stylevar imgdir_statusicon}/forum_link-16.png" alt="{vb:rawphrase link_forum}" /></dt><dt>{vb:rawphrase link_forum}</dt>
                    <vb:if condition="$vboptions['
pt_hasprojectforums']">
                        <dt><img src="{vb:stylevar imgdir_statusicon}/project_new-16.png" alt="{vb:rawphrase project_forum}" /></dt><dt>{vb:rawphrase project_forum}</dt>
                    </vb:if>
                    </dl>
                </div>
            </div>
            {vb:raw template_hook.forumhome_wgo_pos5}
        </div>
    </div>
    <!-- end what'
s going on box -->

    {
vb:raw ad_location.board_below_whats_going_on}
    <
vb:if condition="$show['sidebar']">
        </
div>
    </
div>

    <
div id="sidebar_container"<vb:if condition="$show['sidebarposition'] == 'left'"> class="sidebarleft"</vb:if>>
        <
a id="sidebar_button_link" href="#">
            <
vb:if condition="$show['sidebarposition'] == 'left'">
            <
img id="sidebar_button" src="{vb:stylevar imgdir_misc}/tab-collapsed-left.png" alt="" />
            <
vb:else />
            <
img id="sidebar_button" src="{vb:stylevar imgdir_misc}/tab-collapsed.png" alt="" />
            </
vb:if>
        </
a>
        <
ul id="sidebar">
            {
vb:raw sidebar}
        </
ul>
    </
div>
    </
vb:if>

    {
vb:raw footer}
</
body>
</
html
Reply With Quote
  #19  
Old 03-16-2011, 03:45 AM
SuperTaz's Avatar
SuperTaz SuperTaz is offline
 
Join Date: Apr 2007
Location: Pennsylvania
Posts: 744
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you can, check to see if this mod works on the default vB template for me. I have checked my styles and it works on all of them. All of my styles are all updated to 4.1.2 though.

If it works on the default template, but not on the style you showed above, then it is a style issue. Make sure they are all 4.1.2 compatible styles.
Reply With Quote
  #20  
Old 05-29-2011, 02:59 AM
SuperTaz's Avatar
SuperTaz SuperTaz is offline
 
Join Date: Apr 2007
Location: Pennsylvania
Posts: 744
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Confirmed that this mod still works on 4.1.3 and 4.1.4 Beta 1. If anyone is having any issues, try on a test site with no mods installed using the default style.

I have taken this mod off beta stage for now. If any issues arise, let me know and I will see what I can do.
Reply With Quote
  #21  
Old 05-29-2011, 05:22 AM
mitch84 mitch84 is offline
 
Join Date: Mar 2008
Location: france
Posts: 516
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very nice, thank you
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:01 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07427 seconds
  • Memory Usage 2,463KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (9)bbcode_code
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (4)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete