#################################################################
## Mod Title: Admin reminder
## Mod Version: 1.0.7
## Mod Author: Chaze <
c.h.a.s.e@gmx.net >
## Mod Description: Allows you to select inactive user and zero poster to remind them by mail to activate/use their account.
## Furthermore you can delete user which were reminded more than 3 times.
##
##
## Installation Level: (easy)
## Installation Time: 5 Minutes
##
## Files To Edit: 2
##
## Included Files: 8
## - admin/admin_reminder.php
##
## - language/lang_english/email/reminde_zeroposter.tpl
## - language/lang_english/email/reminde_inactive_accounts.tpl
## - language/lang_english/email/reminde_inactive_user.tpl
##
## - language/lang_german/email/reminde_zeroposter.tpl
## - language/lang_german/email/reminde_inactive_accounts.tpl
## - language/lang_german/email/reminde_inactive_user.tpl
##
## - admin/admin_reminde_inactive_user.tpl
##
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
##
##
## Run the following command on your sql database (replace phpbb_ with your db prefix):
##
## ALTER TABLE `phpbb_users` ADD `user_reminded` TINYINT(4) DEFAULT '0' NOT NULL
##
##
##
##-----[ OPEN ]------------------------------------------------------
##
## open language/lang_german/lang_admin.php
##
##-----[ FIND ]------------------------------------------------------
##
##
//
// That's all Folks!
##
##-----[ BEFORE ADD ]----------------------------------------------
##
##
//
// Admin reminder
//
$lang['ar_1Day'] = ' 1 Tag';
$lang['ar_7Days'] = ' 7 Tage';
$lang['ar_2Weeks'] = ' 2 Wochen';
$lang['ar_1Month'] = ' 1 Monat';
$lang['ar_3Months'] = ' 3 Monate';
$lang['ar_6Months'] = ' 6 Monate';
$lang['ar_1Year'] = ' 1 Jahr';
$lang['days'] = 'Tage';
$lang['ar_reg_exc'] = "Reg.-Datum überschreitet:";
$lang['ar_title_ia'] = "Erinnert <u>nicht aktivierte Konten</u><br><font size=1>mit Reg.-Datum älter als <b>";
$lang['ar_title_sp'] = "Erinnert <u>0-Poster</u><br><font size=1>mit Reg.-Datum älter als <b>";
$lang['ar_title_sp'] = "Erinnert <u>inaktive User</u><br><font size=1>mit letztem Login älter als <b>";
$lang['ar_title_sh_ia'] = 'Per E-Mail erinnerte <u>inaktive Konten</u></font>';
$lang['ar_title_sh_zp'] = 'Per E-Mail erinnerte <u>0-Poster</u>';
$lang['ar_title_sh_iau'] = 'Per E-Mail erinnerte <u>inaktive User</u><br><font size=1>0-Posters sind nicht enthalten</font>';
$lang['ar_title_sh_pu1'] = '<u>LÖSCHE User, die öfter als ';
$lang['ar_title_sh_pu2'] = ' mal erinnert wurden</u><br><font size=1>!!! Alle ausgewählten User werden endgültig gelöscht !!!</font>';
$lang['ar_act_link'] = 'Akt.-Link';
$lang['ar_reg_date'] = 'Reg.- Datum';
$lang['ar_times_rem'] = 'Erinnerungen';
$lang['ar_remind'] = 'ERINNERN!';
$lang['ar_last_visit_exc'] = 'Letzter Besuch älter als:';
$lang['ar_last_visit'] = 'Letzter Besuch';
##
##
##-----[ OPEN ]------------------------------------------------------
##
## open language/lang_english/lang_admin.php
##
##-----[ FIND ]------------------------------------------------------
##
##
//
// That's all Folks!
##
##-----[ BEFORE ADD ]----------------------------------------------
##
##
//
// Admin reminder
//
$lang['ar_1Day'] = ' 1 Day';
$lang['ar_7Days'] = ' 7 Days';
$lang['ar_2Weeks'] = ' 2 Weeks';
$lang['ar_1Month'] = ' 1 Month';
$lang['ar_3Months'] = ' 3 Month';
$lang['ar_6Months'] = ' 6 Months';
$lang['ar_1Year'] = ' 1 Year';
$lang['days'] = 'days';
$lang['ar_reg_exc'] = 'Reg.-date exceeds:';
$lang['ar_title_ia'] = 'Remind <u>inactive accounts</u><br><font size=1>where the reg.-date exceeds <b>';
$lang['ar_title_sp'] = 'Remind <u>zero-poster</u><br><font size=1>where the reg.-date exceeds <b>';
$lang['ar_title_sp'] = 'Remind <u>inactive user</u><br><font size=1>where the last visit exceeds <b>';
$lang['ar_title_sh_ia'] = 'By e-mail reminded <u>inactive</u> user</font>';
$lang['ar_title_sh_zp'] = 'By e-mail reminded <u>inactive user</u>';
$lang['ar_title_sh_iau'] = 'By e-mail reminded <u>inactive user</u><br><font size=1>Zero-posters are not included</font>';
$lang['ar_title_sh_pu1'] = '<u>DELETE USER reminded > ';
$lang['ar_title_sh_pu2'] = ' times</u><br><font size=1>!!! All selected users will be deleted finally !!!</font>';
$lang['ar_act_link'] = 'Act.-link';
$lang['ar_reg_date'] = 'Reg.-date';
$lang['ar_times_rem'] = 'times reminded';
$lang['ar_remind'] = 'REMIND THEM!';
$lang['ar_last_visit_exc'] = 'Last visit exceeds:';
$lang['ar_last_visit'] = 'Last visit';
##
##
##-----[ SAVE & UPLOAD ALL FILES ]------------------------------------------
##
##
##
##
##-----[ OPTIONAL ]--------------------------------------------------
##
## If you want to set the x-times reminded counter to 0, every time the user is logging in, make the following changes
##
##-----[ OPEN ]------------------------------------------------------
##
## open sessions.php
##
##-----[ FIND ]------------------------------------------------------
##
## SET user_session_time = $current_time, user_session_page = $page_id, user_lastvisit = $last_visit
##
##-----[ REPLACE WITH ]----------------------------------------------
##
## SET user_session_time = $current_time, user_session_page = $page_id, user_lastvisit = $last_visit, user_reminded = '0'
##
##
##-----[ SAVE AND UPLOAD FILE ]--------------------------------------
##
##
## EoM