Side List MOD Version 1.1.0

Side List MOD
  • This Mod will add a side bar to your site. The side bar will include list of currently online members and list of general members, Also, a quick search for web / forum / users. You can easily contact any member via ICQ or access his profile page.
  • Version: 1.1.0
  • Installation Level: Easy
  • Installation Time: ~6 minutes
Author(s)

Files To Edit

Included Files


Disclaimer

For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the latest version of this MOD. Downloading this MOD from other sites could cause malicious code to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered in our MOD-Database, located at: http://www.phpbb.com/mods/

Author Notes

Side List MOD only works with IE. Others will not see the link.

Other Notes

Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD


SQL

File Copy

Copy: list.php
To: /list.php
Copy: listsearch.php
To: /listsearch.php
Copy: list_body.tpl
To: /templates/subSilver/list_body.tpl
Copy: icon_mini_list.gif
To: /templates/subSilver/images/icon_mini_list.gif

Edits

Open: language/lang_english/lang_main.php

Find

//
// That's all, Folks!
// -------------------------------------------------

Before, Add

//
// MOD: Side List
//
$lang['Web'] = 'Web';
$lang['Send'] = 'Send';
$lang['Total_online_user_prefix'] = 'Total Online Users:';
$lang['Reg_user_prefix'] = 'Register Users:';
$lang['Hidden_user_prefix'] = 'Hidden Users:';
$lang['Guest_user_prefix'] = 'Guest Users:';
$lang['Need_login_to_pm'] = 'You need to log in to send private messages';
$lang['No_icq'] = 'Can\'t send ICQ. User\'s ICQ number is unknown';
$lang['Error_email'] = 'Please Enter a Valid E-mail!';
$lang['Error_msg_empty'] = 'Please enter your message!';
$lang['Error_msg_long'] = 'Your message is too long. Please enter a message up to 400 chars';
$lang['List_users_total'] = 'Total %d members'; //%d replaced by total number of registered users
$lang['Set_list_preferences'] = 'Preferences';
$lang['Has_ICQ'] = 'Do you have ICQ installed?';
$lang['Has_ICQ_yes'] = ' - Use client to send ICQ';
$lang['Has_ICQ_no'] = ' - Use pager to send ICQ';
$lang['Web_search'] = 'Select web search:';
$lang['Search_google_icq'] = 'Google + images(ICQ search)';
$lang['Search_google'] = 'Google';
$lang['Change'] = 'Change';
$lang['Update_list'] = 'Refresh list every:';
$lang['Minutes'] = 'Minutes';
$lang['Links'] = 'Links';
$lang['Edit_ICQ_profile'] = 'View/Edit ICQ details';
$lang['Edit_profile_icq'] = 'Add your ICQ to profile ';
$lang['Download_ICQ'] = 'Download ICQ ';
$lang['Send_ICQ'] = 'Send %s an ICQ Message'; //%s replaced by user name
$lang['Legend'] ='Legend' ;
$lang['Icq_help_disabled'] ='User\'s status indicator is disabled' ;
$lang['Icq_help_online'] ='User\'s ICQ is online' ;
$lang['Icq_help_offline'] ='User\'s ICQ is offline' ;
$lang['Icq_help_send_msg'] = 'You can send this user an ICQ message';
$lang['help_user_online'] = 'This user is currently browsing the site. Mouse over the image to see on what page. Click on the image to get to that page';
$lang['User'] = 'User';
$lang['SideList'] = 'Side List';
//
// MOD: -END-
//

Open: includes/page_header.php

Find

	'NAV_LINKS' => $nav_links_html)

Before, Add

	// Side List MOD	
	'L_SIDE_LIST' => $lang['SideList'],
	'U_SIDE_LIST' => append_sid('list.'.$phpEx),
	// END Side List MOD	

Open: templates/subSilver/overall_header.tpl

Find

<!-- END switch_user_logged_out -->

After, Add

						<!-- Side List MOD -->
						<script type="text/javascript"><!--

						if (document.all){ //IE5+
						    document.write("<a href=\"{U_SIDE_LIST}\" class=\"mainmenu\" target = \"_search\"))><img src=\"templates/subSilver/images/icon_mini_list.gif\" width=12 height=13 border=0 alt=\"{L_SIDE_LIST}\" hspace=\"3\" />{L_SIDE_LIST}</a>");
						}
						// --></script>

						<!-- //Side List MOD -->

Save all files. End of MOD.