######################################################################################### ## MOD Title: BB Usage Statistics ## MOD Version: 0.30.2 (First Public Release) ## MOD Author: calennert ## Christopher Lennert (http://lennertmods.sourceforge.net) ## ## MOD Description: ## The Board Usage Statistics mod displays statistical information on a bulletin ## board user's Profile page detailing the user's per forum and per category ## posts, post rate, percent of user's total posts, new topics initiated, topic ## rate, and the number of topics watched. ## ## Installation Level: Easy ## Installation Time: 15 minutes ## Files to Edit: ## includes/usercp_viewprofile.php ## admin/admin_board.php ## templates/subSilver/profile_view_body.tpl ## templates/subSilver/admin/board_config_body.tpl ######################################################################################### ## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ 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/downloads/ ######################################################################################### ## Author Notes: ## Initially written for www.AnimeMusicVideos.org's forum, the mod is being made ## available for the benefit of the broader phpBB community. Thanks go to that ## site's administrator, Kristofer McCormic (Phade), for proposing the original ## mod idea, for offering his support and encouragement, and for testing the ## mod in a live bulletin board environment. ######################################################################################### ## MOD History: ## See the MOD's manual at http://lennertmods.sourceforge.net ######################################################################################### ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To ## This MOD. ######################################################################################### ## ##-----[ COPY ]------------------------------------------ ## mods/ => PHPBBROOT/ templates/ => PHPBBROOT/ ## ##-----[ OPEN ]------------------------------------------ ## includes/usercp_viewprofile.php ## ##-----[ FIND ]------------------------------------------ ## $template->pparse('body'); ## ##-----[ BEFORE, ADD ]------------------------------------------ ## include($phpbb_root_path . 'mods/bb_usage_stats/includes/bb_usage_stats.'.$phpEx); ## ##-----[ OPEN ]------------------------------------------ ## admin/admin_board.php ## ##-----[ FIND ]------------------------------------------ ## $template->pparse('body'); ## ##-----[ BEFORE, ADD ]------------------------------------------ ## include($phpbb_root_path . 'mods/bb_usage_stats/admin/bb_usage_stats_admin.'.$phpEx); ## ##-----[ OPEN ]------------------------------------------ ## templates/subSilver/profile_view_body.tpl ## ##-----[ FIND ]------------------------------------------ ##

{JUMPBOX}
## ##-----[ BEFORE, ADD ]------------------------------------------ ## {BB_USAGE_STATS_TEMPLATE} ## ##-----[ OPEN ]------------------------------------------ ## templates/subSilver/admin/board_config_body.tpl ## ##-----[ FIND ]------------------------------------------ ## {L_COOKIE_SETTINGS} ## ##-----[ BEFORE, ADD ]------------------------------------------ ## {BB_USAGE_STATS_ADMIN_TEMPLATE} ## ##-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ ## # EoM