moodle/mod/quiz/version.php
moodler 29d5d0b40c New modular plugin structure for quiz reports.
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).
2003-07-24 05:18:00 +00:00

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)?
?>