'document.php','name' => get_lang('ToolDocument')); // Title of the page $nameTools = get_lang('DocumentQuota'); // Display the header Display::display_header($nameTools,'Doc'); /* FUNCTIONS */ // Actions echo '
'; // link back to the documents overview echo ''.Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('DocumentsOverview'),'',ICON_SIZE_MEDIUM).''; echo '
'; // 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 = DocumentManager::documents_total_space($_course); // Displaying the quota DocumentManager::display_quota($course_quota, $already_consumed_space); // Display the footer Display::display_footer();