Closes #676, quota show totals

This commit is contained in:
Benjamin Sonntag 2006-05-25 13:14:23 +00:00
parent ced987466f
commit e4057ebcc0
2 changed files with 10 additions and 1 deletions

View File

@ -220,7 +220,7 @@ if (is_array($val)) {
</table> </table>
</form> </form>
<?php <?php
printf("<p>".__("%s accounts")."</p>",count($r)); printf("<p>"._("%s accounts")."</p>",count($r));
} }
?> ?>
</body> </body>

View File

@ -37,6 +37,9 @@ include("head.php");
<?php <?php
$quota_utilise = 0;
$tot = 0;
if ($mem->user['uid'] == "2000") if ($mem->user['uid'] == "2000")
$user_list = $admin->get_list(1); $user_list = $admin->get_list(1);
else{ else{
@ -74,11 +77,17 @@ foreach($sequence as $key) {
} else { } else {
$style = ''; $style = '';
} }
$quota_utilise = $quota_utilise + $q['u'];
$tot = $tot + $q['t'];
print "<td $style>".str_replace(" ", "&nbsp;", m_quota::display_val($key, $q['u']).'/'.m_quota::display_val($key, $q['t'])).'</td>'; print "<td $style>".str_replace(" ", "&nbsp;", m_quota::display_val($key, $q['u']).'/'.m_quota::display_val($key, $q['t'])).'</td>';
} }
print "</tr>"; print "</tr>";
$mem->unsu(); $mem->unsu();
} }
echo "<br><tr height=\"15\"></tr><tr><td>"._("Total")."</td><td $style>";
echo format_size($quota_utilise)." / ".format_size($tot)."</td></tr>";
print "</table>"; print "</table>";
?> ?>