Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons

Reply
 
Thread Tools
Buddylist on Forumhome Details »»
Buddylist on Forumhome
Version: 1.00, by ThorstenA ThorstenA is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.7.2 Rating:
Released: 08-17-2008 Last Update: 08-18-2008 Installs: 14
Uses Plugins Template Edits
Re-useable Code Translations Is in Beta Stage  
No support by the author.

Notice: This mod uses Re-usable Code, so please feel free to port it to vbulletin 4 under your username. Thanks.

What does this Product do?
It displays Buddylist on Forumhome

How to install?
  • Import Product
  • Open template FORUMHOME and put $fh_buddylist where you want to show buddylist.
  • Create template BUDDYLIST_FH and put this code into it
    Code:
    	<script type="text/javascript">
    	<!--
    	function pm(tform)
    	{
    		var users = new Array();
    		var arrCount = 0;
    		for (i = 0; i < tform.elements.length; i++)
    		{
    			var element = tform.elements[i];
    			if ((element.name != "allbox") && (element.type == "checkbox") && (element.checked == true))
    			{
    				users[arrCount] = element.value;
    				arrCount++;
    			}
    		}
    		if (arrCount == 0)
    		{
    			alert("$vbphrase[no_users_selected]");
    		}
    		else
    		{
    			var querystring = "";
    			for (i = 0; i < users.length; i++)
    			{
    				querystring += "&userid[]=" + users[i];
    			}
    			if (opener && !opener.closed )
    			{ // parent window is still open
    			self.location=	"private.php?$session[sessionurl]do=newpm" + querystring;
     // opener.location="private.php?$session[sessionurl]do=newpm" + querystring;
    			}
    			else
    			{ // parent window has closed or went to a different URL.
    self.location=	"private.php?$session[sessionurl]do=newpm" + querystring;
    				//window.open("private.php?$session[sessionurl]do=newpm" + querystring, "pm");
    			}
    		}
    	}
    	// -->
    	</script>
    
    
    <form action="private.php" method="post" target="_blank" name="vbform">
    
    <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
    <tr>
    	<td class="tcat" colspan="3">$vbphrase[contacts]</td>
    </tr>
    <tr>
    	<td class="thead" align="center" colspan="3"><span class="smallfont">-- <strong>$vbphrase[online]</strong> --</span></td>
    </tr>
    $onlineusers
    <tr>
    	<td class="thead" align="center" colspan="3"><span class="smallfont">-- <strong>$vbphrase[offline]</strong> --</span></td>
    </tr>
    $offlineusers
    <tr>
    	<td class="tfoot" align="center" colspan="3">
    
    		<input type="button" class="button" value="$vbphrase[pm_users]" onclick="pm(this.form);" title="$vbphrase[send_private_message_to_selected_users]" />
    	</td>
    </tr>
    </table>
    
    </form>
  • optional: Open template buddylistbit and change it to
    Code:
    <tr>
    	<td class="alt1"><a href="member.php?$session[sessionurl]u=$buddy[userid]"><img src="$stylevar[imgdir_statusicon]/user_$buddy[statusicon].gif" alt="" title="<phrase 1="$buddy[username]" 2="$buddy[statusicon]">$vbphrase[x_is_y]</phrase>" border="0" /></a></td>
    	<td class="alt2" width="100%"><label class="smallfont" for="buddy_$buddy[userid]"><a href="member.php?$session[sessionurl]u=$buddy[userid]"><if condition="$show['highlightuser']"><span class="highlight">$buddy[username]</span><else />$buddy[username]</if></a></label></td>
    	<td class="alt1"><input type="checkbox" name="userid[]" id="buddy_$buddy[userid]" value="$buddy[userid]" /></td>
    </tr>
  • Done

How to uninstall?
  • Deinstall Product
  • Rechange FORUMHOME
  • Done

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 08-18-2008, 09:44 PM
KURTZ KURTZ is offline
 
Join Date: Nov 2006
Location: Italy
Posts: 2,257
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

screen shots?
Reply With Quote
  #3  
Old 08-18-2008, 09:49 PM
ThorstenA's Avatar
ThorstenA ThorstenA is offline
 
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No screenshots available, sorry. Variable $fh_buddylist includes only BUDDYLIST template and you can put this variable where you want on Forumhome. Nothing special here. Point is that users see immediately who from their friends is online and they can pn them very fast.
Reply With Quote
  #4  
Old 08-18-2008, 10:20 PM
whitetigergrowl whitetigergrowl is offline
 
Join Date: Jun 2004
Posts: 243
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Will not install this mod without screenshots or a demo.
Reply With Quote
  #5  
Old 08-18-2008, 10:22 PM
StonePilot StonePilot is offline
 
Join Date: Jan 2007
Location: Texas
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I agree, this has some merit for a product, but I'm wary of going through the trouble w/o at least an example of what it looks like and what information it shows.
Reply With Quote
  #6  
Old 08-18-2008, 10:29 PM
ThorstenA's Avatar
ThorstenA ThorstenA is offline
 
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by StonePilot View Post
I agree, this has some merit for a product, but I'm wary of going through the trouble w/o at least an example of what it looks like and what information it shows.
Product shows exactly BUDDYLIST template within $fh_buddylist variable. You can see this template in your forum via Quick Links > Open Contacts Popup. Be sure to put this variable in some container like < div > or < table > as it is not restricted horizontally.

If there is interest in this product I am thinking of publishing an auto-template version.
Reply With Quote
  #7  
Old 08-18-2008, 10:52 PM
MrBig's Avatar
MrBig MrBig is offline
 
Join Date: May 2005
Posts: 53
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if you added the friends avatar next to it it would be gold!
Reply With Quote
  #8  
Old 08-18-2008, 10:55 PM
ThorstenA's Avatar
ThorstenA ThorstenA is offline
 
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrBig View Post
if you added the friends avatar next to it it would be gold!
Great idea, looking into it.
Reply With Quote
  #9  
Old 08-19-2008, 06:15 AM
masons_mum masons_mum is offline
 
Join Date: Aug 2008
Location: Where the haggis run free
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i have installed this..but my problem with it is that its not collapsable. So someone like me, an admin, has over 20 contacts...it takes a while to get to my forums LOL. Is there a wayt o make the table collapseable? other wise great idea thank you.

Just tested it out...and nothing happens when you click pm.
Reply With Quote
  #10  
Old 08-19-2008, 06:39 AM
ThorstenA's Avatar
ThorstenA ThorstenA is offline
 
Join Date: Nov 2004
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by masons_mum View Post
Just tested it out...and nothing happens when you click pm.
Please change template BUDDYLIST_FH to the updated content in my Mod Information post (#1) within this thread. Is it working now?
Reply With Quote
Reply

Thread Tools

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 06:50 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.04703 seconds
  • Memory Usage 2,294KB
  • Queries Executed 23 (?)
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
  • (2)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete