. /** * Base class for quiz report plugins. * * @package mod * @subpackage quiz * @copyright 1999 onwards Martin Dougiamas and others {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Base class for quiz report plugins. * * Doesn't do anything on it's own -- it needs to be extended. * This class displays quiz reports. Because it is called from * within /mod/quiz/report.php you can assume that the page header * and footer are taken care of. * * This file can refer to itself as report.php to pass variables * to itself - all these will also be globally available. You must * pass "id=$cm->id" or q=$quiz->id", and "mode=reportname". * * @copyright 1999 onwards Martin Dougiamas and others {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class quiz_default_report { /** * Override this function to displays the report. * @param $cm the course-module for this quiz. * @param $course the coures we are in. * @param $quiz this quiz. */ public abstract function display($cm, $course, $quiz); public function print_header_and_tabs($cm, $course, $quiz, $reportmode = 'overview') { global $PAGE, $OUTPUT; // Print the page header $PAGE->set_title(format_string($quiz->name)); $PAGE->set_heading($course->fullname); echo $OUTPUT->header(); } }