mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Cleaned up the stats view, added slightly better code for computing the avatar dir size
git-svn-id: file:///svn/phpbb/trunk@743 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
d2cf278d44
commit
70b74fc706
2 changed files with 71 additions and 19 deletions
|
@ -29,11 +29,14 @@ if($setmodules == 1)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$from_index)
|
if($from_index != 1)
|
||||||
{
|
{
|
||||||
$phpbb_root_path = "./../";
|
$phpbb_root_path = "./../";
|
||||||
include($phpbb_root_path . 'extension.inc');
|
include($phpbb_root_path . 'extension.inc');
|
||||||
include($phpbb_root_path . 'common.'.$phpEx);
|
include($phpbb_root_path . 'common.'.$phpEx);
|
||||||
|
|
||||||
|
$template_header = "admin/page_header.tpl";
|
||||||
|
include('page_header_admin.'.$phpEx);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -86,9 +89,23 @@ if ($avatar_dir = opendir($phpbb_root_path . $board_config['avatar_path']))
|
||||||
}
|
}
|
||||||
closedir($avatar_dir);
|
closedir($avatar_dir);
|
||||||
}
|
}
|
||||||
if($avatar_dir_size > 0)
|
|
||||||
|
//
|
||||||
|
// This bit of code translates the avatar directory size into human readable format
|
||||||
|
// Borrowed the code from the PHP.net annoted manual, origanally written by:
|
||||||
|
// Jesse (jesse@jess.on.ca)
|
||||||
|
//
|
||||||
|
if($avatar_dir_size >= 1048576)
|
||||||
{
|
{
|
||||||
$avatar_dir_size = sprintf("%.2f", $avatar_dir_size / 1024);
|
$avatar_dir_size = round($avatar_dir_size / 1048576 * 100) / 100 . "MB";
|
||||||
|
}
|
||||||
|
else if($avatar_dir_size >= 1024)
|
||||||
|
{
|
||||||
|
$avatar_dir_size = round($avatar_dir_size / 1024 * 100) / 100 . "KB";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$avatar_dir_size = $avatar_dir_size . "Bytes";
|
||||||
}
|
}
|
||||||
|
|
||||||
if($posts_per_day > $total_posts)
|
if($posts_per_day > $total_posts)
|
||||||
|
@ -265,7 +282,7 @@ $template->assign_vars(array("L_USERNAME" => $lang['Username'],
|
||||||
|
|
||||||
$template->pparse("body");
|
$template->pparse("body");
|
||||||
|
|
||||||
if(!$from_index)
|
if($from_index != 1)
|
||||||
{
|
{
|
||||||
include('page_footer_admin.'.$phpEx);
|
include('page_footer_admin.'.$phpEx);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,19 +7,54 @@
|
||||||
|
|
||||||
|
|
||||||
<h2>Forum Statistics</h2>
|
<h2>Forum Statistics</h2>
|
||||||
<p>
|
<table border="0" cellpadding="1" cellspacing="0" width="65%">
|
||||||
Current number of posts: <b>{NUMBER_OF_POSTS}</b><br />
|
<tr>
|
||||||
Current number of topics: <b>{NUMBER_OF_TOPICS}</b><br />
|
<td class="tablebg">
|
||||||
Current number of users: <b>{NUMBER_OF_USERS}</b><br />
|
<table width="100%" cellpadding="4" cellspacing="1" border="0">
|
||||||
<br />
|
<tr>
|
||||||
Board started on: <b>{STARTDATE}</b><br />
|
<th width="50%">Statistic</th>
|
||||||
Posts per day: <b>{POSTS_PER_DAY}</b><br />
|
<th width="50%">Value</th>
|
||||||
Topics per day: <b>{TOPICS_PER_DAY}</b><br />
|
</tr>
|
||||||
Users per day: <b>{USERS_PER_DAY}</b><br />
|
<tr>
|
||||||
<br />
|
<td class="row1">Current number of posts:</td>
|
||||||
Avatar directory size: <b>{AVATAR_DIR_SIZE} (in kilobytes)</b><br />
|
<td class="row2"><b>{NUMBER_OF_POSTS}</b></td>
|
||||||
Database size: <b>{DB_SIZE}</b>
|
</tr>
|
||||||
</p>
|
<tr>
|
||||||
|
<td class="row1">Current number of topics:</td>
|
||||||
|
<td class="row2"><b>{NUMBER_OF_TOPICS}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Current number of users:</td>
|
||||||
|
<td class="row2"><b>{NUMBER_OF_USERS}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Board started on:</td>
|
||||||
|
<td class="row2"><b>{STARTDATE}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Posts per day:</td>
|
||||||
|
<td class="row2"><b>{POSTS_PER_DAY}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Topics per day:</td>
|
||||||
|
<td class="row2"><b>{TOPICS_PER_DAY}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Users per day:</td>
|
||||||
|
<td class="row2"><b>{USERS_PER_DAY}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Avatar directory size:</td>
|
||||||
|
<td class="row2"><b>{AVATAR_DIR_SIZE}</b></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="row1">Database size:</td>
|
||||||
|
<td class="row2"><b>{DB_SIZE}</b></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
<h2>Users Online</h2>
|
<h2>Users Online</h2>
|
||||||
<table border="0" cellpadding="1" cellspacing="0" width="98%" align="center">
|
<table border="0" cellpadding="1" cellspacing="0" width="98%" align="center">
|
||||||
|
|
Loading…
Add table
Reference in a new issue