You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
3.4 KiB
103 lines
3.4 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* This script displays info about the course disk use and quota:
|
|
* how large (in megabytes) is the documents area of the course,
|
|
* what is the maximum allowed for this course...
|
|
*
|
|
* @author Roan Embrechts
|
|
* @package chamilo.document
|
|
*/
|
|
|
|
// Name of the language file that needs to be included
|
|
$language_file = 'document';
|
|
|
|
// Including the global dokeos file
|
|
require_once '../inc/global.inc.php';
|
|
|
|
// Including additional libraries
|
|
require_once api_get_path(LIBRARY_PATH).'fileUpload.lib.php';
|
|
require_once api_get_path(LIBRARY_PATH).'document.lib.php';
|
|
|
|
// Some constants and variables
|
|
$courseDir = $_course['path'].'/document';
|
|
$maxFilledSpace = DEFAULT_DOCUMENT_QUOTA;
|
|
|
|
// Breadcrumbs
|
|
$interbreadcrumb[] = array('url' => 'document.php','name' => get_lang('ToolDocument'));
|
|
|
|
// Title of the page
|
|
$nameTools = get_lang('DocumentQuota');
|
|
|
|
// Display the header
|
|
Display::display_header($nameTools,'Doc');
|
|
|
|
/* FUNCTIONS */
|
|
|
|
/**
|
|
* Here we count 1 kilobyte = 1000 byte, 12 megabyte = 1000 kilobyte.
|
|
*/
|
|
function display_quota($course_quota, $already_consumed_space) {
|
|
$course_quota_m = round($course_quota / 1000000);
|
|
$already_consumed_space_m = round($already_consumed_space / 1000000);
|
|
$message = get_lang('CourseCurrentlyUses') . ' <strong>' . $already_consumed_space_m . ' megabyte</strong>.<br />'. get_lang('MaximumAllowedQuota') . ' <strong>'.$course_quota_m.' megabyte</strong>.<br />';
|
|
|
|
$percentage = $already_consumed_space / $course_quota * 100;
|
|
$percentage = round($percentage);
|
|
|
|
$other_percentage = $percentage < 100 ? 100 - $percentage : 0;
|
|
|
|
// Decide where to place percentage in graph
|
|
if ($percentage >= 50) {
|
|
$text_in_filled = ' '.$other_percentage.'%';
|
|
$text_in_unfilled = '';
|
|
} else {
|
|
$text_in_unfilled = ' '.$other_percentage.'%';
|
|
$text_in_filled = '';
|
|
}
|
|
|
|
// Decide the background colour of the graph
|
|
if ($percentage < 65) {
|
|
$colour = '#00BB00'; // Safe - green
|
|
} elseif ($percentage < 90) {
|
|
$colour = '#ffd400'; // Filling up - yelloworange
|
|
} else {
|
|
$colour = '#DD0000'; // Full - red
|
|
}
|
|
|
|
// This is used for the table width: a table of only 100 pixels looks too small
|
|
$visual_percentage = 4 * $percentage;
|
|
$visual_other_percentage = 4 * $other_percentage;
|
|
|
|
$message .= get_lang('PercentageQuotaInUse') . ': <strong>'.$percentage.'%</strong>.<br />' .
|
|
get_lang('PercentageQuotaFree') . ': <strong>'.$other_percentage.'%</strong>.<br />';
|
|
|
|
$show_percentage = $percentage >= 10 ? ' '.$percentage.'%' : '';
|
|
$message .= '<br /><table cellpadding="" cellspacing="0" height="40"><tr>
|
|
<td bgcolor="'.$colour.'" width="'.$visual_percentage.'">'.$show_percentage.'</td>
|
|
<td bgcolor="Silver" width="'.$visual_other_percentage.'"> '.$other_percentage.'%</td>
|
|
</tr></table>';
|
|
echo $message;
|
|
}
|
|
|
|
// Actions
|
|
echo '<div class="actions">';
|
|
// link back to the documents overview
|
|
echo '<a href="document.php">'.Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('DocumentsOverview')).get_lang('BackTo').' '.get_lang('DocumentsOverview').'</a>';
|
|
echo '</div>';
|
|
|
|
// Getting the course quota
|
|
$course_quota = DocumentManager::get_course_quota();
|
|
|
|
// Setting the full path
|
|
$full_path = $baseWorkDir.$courseDir;
|
|
|
|
// Calculating the total space
|
|
$already_consumed_space = documents_total_space($_course);
|
|
|
|
// Displaying the quota
|
|
display_quota($course_quota, $already_consumed_space);
|
|
|
|
// Display the footer
|
|
Display::display_footer();
|
|
|