output message if quota is exceeded

This commit is contained in:
steinm 2012-12-19 10:11:08 +00:00
parent 0bda534985
commit ab1a241a16

View File

@ -72,6 +72,14 @@ class LetoDMS_View_MyAccount extends LetoDMS_Blue_Style {
print "<td>".htmlspecialchars($user->getPwdExpiration())."</td>\n";
print "</tr>\n";
}
print "<tr>\n";
print "<td>".getMLText("quota")." : </td>\n";
print "<td>".LetoDMS_Core_File::format_filesize($user->getQuota())."</td>\n";
print "</tr>\n";
print "<tr>\n";
print "<td>".getMLText("used_discspace")." : </td>\n";
print "<td>".LetoDMS_Core_File::format_filesize($user->getUsedDiskSpace())."</td>\n";
print "</tr>\n";
print "</table>\n";
$this->contentContainerEnd();