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.
157 lines
5.0 KiB
157 lines
5.0 KiB
<?php // $Id: quota.php 10204 2006-11-26 20:46:53Z pcool $
|
|
/*
|
|
==============================================================================
|
|
Dokeos - elearning and course management software
|
|
|
|
Copyright (c) 2004 Dokeos S.A.
|
|
Copyright (c) 2005 Roan Embrechts, Vrije Universiteit Brussel
|
|
|
|
For a full list of contributors, see "credits.txt".
|
|
The full license can be read in "license.txt".
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
|
|
==============================================================================
|
|
*/
|
|
/**
|
|
==============================================================================
|
|
* 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 dokeos.document
|
|
==============================================================================
|
|
*/
|
|
|
|
/*
|
|
==============================================================================
|
|
INIT SECTION
|
|
==============================================================================
|
|
*/
|
|
|
|
// name of the language file that needs to be included
|
|
$language_file = 'document';
|
|
|
|
|
|
// global settings initialisation
|
|
// also provides access to main api (inc/lib/main_api.lib.php)
|
|
include("../inc/global.inc.php");
|
|
|
|
/*
|
|
-----------------------------------------------------------
|
|
Libraries
|
|
-----------------------------------------------------------
|
|
*/
|
|
|
|
//many useful functions in main_api.lib.php, by default included
|
|
include_once(api_get_path(LIBRARY_PATH) . 'fileUpload.lib.php');
|
|
include_once(api_get_path(LIBRARY_PATH) . 'document.lib.php');
|
|
|
|
/*
|
|
-----------------------------------------------------------
|
|
Constants and variables
|
|
-----------------------------------------------------------
|
|
*/
|
|
|
|
$courseDir = $_course['path']."/document";
|
|
$maxFilledSpace = DEFAULT_DOCUMENT_QUOTA;
|
|
|
|
/*
|
|
-----------------------------------------------------------
|
|
Header
|
|
-----------------------------------------------------------
|
|
*/
|
|
|
|
$interbreadcrumb[]=array("url" => "document.php","name" => get_lang("Doc"));
|
|
|
|
$nameTools = get_lang("DocumentQuota"); // title of the page
|
|
|
|
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);
|
|
|
|
if ($percentage < 100) $other_percentage = 100 - $percentage;
|
|
else $other_percentage = 0;
|
|
|
|
//decide where to place percentage in graph
|
|
if ($percentage >= 50)
|
|
{
|
|
$text_in_filled = " $percentage%".
|
|
$text_in_unfilled = "";
|
|
}
|
|
else
|
|
{
|
|
$text_in_unfilled = " $percentage%".
|
|
$text_in_filled = "";
|
|
}
|
|
|
|
//decide the background colour of the graph
|
|
if ($percentage < 65) $colour = "#00BB00"; //safe - green
|
|
else if ($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>";
|
|
|
|
$message .= "<br/><table cellpadding=\"\" cellspacing=\"0\" height=\"40\"><tr>
|
|
<td bgcolor=\"$colour\" width=\"$visual_percentage\">$text_in_filled</td>
|
|
<td bgcolor=\"Silver\" width=\"$visual_other_percentage\">$text_in_unfilled</td>
|
|
</tr></table>";
|
|
|
|
echo $message;
|
|
}
|
|
|
|
/*
|
|
==============================================================================
|
|
MAIN CODE
|
|
==============================================================================
|
|
*/
|
|
|
|
api_display_tool_title($nameTools);
|
|
|
|
$course_quota = DocumentManager::get_course_quota();
|
|
|
|
$full_path = $baseWorkDir . $courseDir;
|
|
|
|
$already_consumed_space = documents_total_space($_course);
|
|
|
|
display_quota($course_quota, $already_consumed_space);
|
|
|
|
|
|
/*
|
|
==============================================================================
|
|
FOOTER
|
|
==============================================================================
|
|
*/
|
|
|
|
Display::display_footer();
|
|
?>
|