############################################################## 
## MOD Title: Admin Userlist 
## MOD Author: wGEric < eric@egcnetwork.com > (Eric Faerber) http://eric.best-1.biz/ 
## MOD Description: This MOD lets you view a list of every user on your board from the ACP.
##		    While browsing the list you can activate, de-activate, delete, and ban
##		    multiple users at a time.  You can also edit one users permissions or
##		    manage their account.  Also see how many posts they have, when they
##		    last visited your board, and what group(s) they are in and their status
##		    in the group.
## MOD Version: 1.6.1 
## 
## Installation Level: (Easy) 
## Installation Time: 5 Minutes 
## Files To Edit: - language/lang_english/lang_admin.php
##		  - templates/subSilver/subSilver.cfg
## Included Files: - admin/admin_userlist.php
##		   - templates/subSilver/admin/userlist_body.tpl
##		   - templates/subSilver/images/lang_english/icon_delete.gif
##		   - templates/subSilver/images/lang_english/icon_mangmt.gif
##		   - templates/subSilver/images/lang_english/icon_perm.gif 
############################################################## 
## 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: Be careful when deleting users since it can't be undone!
##
############################################################## 
## MOD History: 
##
## 19 August 2003 - Version 1.6.1
##		  - Fixed typos and errors in the install script
##
## 08 July 2003 - Version 1.6.0
## 	  	- Made it so you can choose how many users to display
##		- Added users last visit
##
## 06/02/02 - Beta 1.5.0 
## 			- Added ability to change status, delete, or ban multiple users.
##			- Also added some images and fixed some little things in the code.
## 
## 03/24/03 -  Beta 1.4.0 
## 			- Made it so you can see what groups the user is in.
##
## 02/??/03 - Beta 1.3.0 
## 			- Added features and changed look. 
##
## 02/15/03 - Beta 1.2.0 
## 			- Added the delete option and added the alphabetic order (http://www.phpbb.com/phpBB/viewtopic.php?t=22307)
##
## 02/13/03 - Beta 1.1.0 
## 			- Fixed more bugs in the code. Changed it so when you click on their email address it uses the boards built in emailer even if you have it disabled. I also made it so you can change their status from the userlist. 
##
## 02/12/03 - Beta 1.0.1 
## 			- This fixed a bug. 
##
## 02/11/03 - Beta 1.0.0 
## 			- Initial release 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################

# 
#-----[ COPY ]------------------------------------------ 
# 
copy root/admin/admin_userlist.php to admin/admin_userlist.php
copy root/templates/subSilver/admin/userlist_body.tpl to templates/subSilver/admin/userlist_body.tpl
copy root/templates/subSilver/images/lang_english/icon_delete.gif to templates/subSilver/images/lang_english/icon_delete.gif
copy root/templates/subSilver/images/lang_english/icon_mangmt.gif to templates/subSilver/images/lang_english/icon_mangmt.gif
copy root/templates/subSilver/images/lang_english/icon_perm.gif to templates/subSilver/images/lang_english/icon_perm.gif
# 
#-----[ OPEN ]------------------------------------------ 
# 
language/lang_english/lang_admin.php

# 
#-----[ FIND ]------------------------------------------ 
# 
//
// That's all Folks!
# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
//
// start Admin Userlist 1.6.1
//
//title stuff
$lang['User_List'] = 'Users List';
$lang['User_list_title'] = 'Admin Userlist';
$lang['User_list_description'] = 'Here you can see a list of every user on your board and perform the following administrative tasks by clicking on:<ul>Action icons on the left.<br />Username to see their Profile.<br />Group name to modify Group settings.<br />Posts number to see all of their posts.<br />Alphabet Letters to list Usernames that start with that letter.<br />Check Boxes allow multiple users to be Activated/De-activated, Banned, or Deleted using the drop-down box at the bottom.</ul><b>Deleting can\'t be undone!';
$lang['Action'] = 'Action';
$lang['Edit_Profile'] = 'Profile';
$lang['Edit_Permission'] = 'Permissions';
$lang['Active'] = 'Active?';
$lang['PM'] = 'PM User';
$lang['User_group'] = 'Group';
$lang['Ban'] = 'Ban';
$lang['Check_all'] = 'Check All';
$lang['Uncheck_all'] = 'Un-Check All';
$lang['Activate'] = 'Activate/De-activate';
$lang['Click_return_userlist'] = 'Click %shere%s to return to the Admin Userlist';
$lang['User_status_updated'] = 'Users Status Updated Successfully!';
$lang['Last_visit'] = 'Last Visit';
$lang['Show'] = 'Display No. of Users';
$lang['Select_one'] = 'Select One';

$lang['Pending'] = 'Pending';
$lang['Group_moderator'] = 'Group Mod';
$lang['Member'] = 'Member';

//confirm delete user
$lang['Confirm_user_delete'] = 'Do you really want to delete these users?';
$lang['Yes_delete_user'] = '%sYes, Delete User%s';
$lang['No_delete_user'] = '%sNo, do not delete user%s';

//confirm ban user
$lang['Confirm_user_ban'] = 'Do you really want to Ban these users?';
$lang['Yes_ban_user'] = '%sYes, Ban User%s';
$lang['No_ban_user'] = '%sNo, do not Ban user%s';
$lang['User_banned'] = 'User banned';

//message box
$lang['Click_return_userslist'] = 'Click %sHere%s to return to the User List';
//
// end Admin Userlist 1.6.1
//

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/subSilver.cfg
# 
#-----[ FIND ]------------------------------------------ 
# 
?>
# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
//
// start Admin Userlist 1.6.1
//
$images['icon_delete'] = "$current_template_images/{LANG}/icon_delete.gif";
$images['icon_mangmt'] = "$current_template_images/{LANG}/icon_mangmt.gif";
$images['icon_perm'] = "$current_template_images/{LANG}/icon_perm.gif";
//
// end Admin Userlist 1.6.1
//

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM 