mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
29d5d0b40c
The code for reviewing an existing attempt is now separate in review.php and now has a log entry of it's own. The overview and regrade reports are now in separate subdirectories under the "report" directory. Each has a primary "report.php" file which implements the report as a class. These existing reports are very simple, but now more complex ones can easily be written. (I am about to do one).
12 lines
466 B
PHP
12 lines
466 B
PHP
<?PHP // $Id$
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Code fragment to define the version of quiz
|
|
// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2003072400; // The (date) version of this module
|
|
$module->cron = 0; // How often should cron check this module (seconds)?
|
|
|
|
?>
|