mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
83 lines
3.4 KiB
PHP
83 lines
3.4 KiB
PHP
<?php // $Id$
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// NOTICE OF COPYRIGHT //
|
|
// //
|
|
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
|
|
// http://moodle.com //
|
|
// //
|
|
// Copyright (C) 1999 onwards Martin Dougiamas http://moodle.com //
|
|
// //
|
|
// 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. //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License for more details: //
|
|
// //
|
|
// http://www.gnu.org/copyleft/gpl.html //
|
|
// //
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
require_once '../../../config.php';
|
|
require_once $CFG->dirroot.'/grade/lib.php';
|
|
require_once $CFG->libdir.'/gradelib.php';
|
|
|
|
$courseid = optional_param('id', SITEID, PARAM_INT);
|
|
$action = optional_param('action', '', PARAM_ALPHA);
|
|
|
|
if (!$course = get_record('course', 'id', $courseid)) {
|
|
print_error('nocourseid');
|
|
}
|
|
require_login($course);
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
if (!has_capability('moodle/grade:manage', $context) and !has_capability('moodle/grade:manageletters', $context)) {
|
|
error('Missing permission to view letter grades');
|
|
}
|
|
|
|
$gpr = new grade_plugin_return(array('type'=>'edit', 'plugin'=>'letter', 'courseid'=>$courseid));
|
|
|
|
$strgrades = get_string('grades');
|
|
$pagename = get_string('letters', 'grades');
|
|
|
|
$navigation = grade_build_nav(__FILE__, $pagename, $courseid);
|
|
|
|
/// Print header
|
|
print_header_simple($strgrades.': '.$pagename, ': '.$strgrades, $navigation, '', '', true, '', navmenu($course));
|
|
/// Print the plugin selector at the top
|
|
print_grade_plugin_selector($courseid, 'edit', 'letter');
|
|
|
|
$currenttab = 'lettersview';
|
|
require('tabs.php');
|
|
|
|
$letters = grade_get_letters($context);
|
|
|
|
$data = array();
|
|
|
|
$max = 100;
|
|
foreach($letters as $boundary=>$letter) {
|
|
$line = array();
|
|
$line[] = format_float($max,2).' %';
|
|
$line[] = format_float($boundary,2).' %';
|
|
$line[] = format_string($letter);
|
|
$data[] = $line;
|
|
$max = $boundary - 0.01;
|
|
}
|
|
|
|
$table = new object();
|
|
$table->head = array(get_string('max', 'grades'), get_string('min', 'grades'), get_string('letter', 'grades'));
|
|
$table->size = array('30%', '30%', '40%');
|
|
$table->align = array('left', 'left', 'left');
|
|
$table->width = '30%';
|
|
$table->data = $data;
|
|
print_table($table);
|
|
|
|
print_footer($course);
|
|
|
|
?>
|