af52eceef4
Allow question types to be displayed in order that is better than random or alphabetical. Since we don't know all the qtypes there may be: 1. Store the order in the DB (config plugins). 2. Set up a good default order for the standard types. (Unknown types go at the end by default.) 3. Allow admins to edit the order on the qtype admin screen.
15 lines
466 B
PHP
15 lines
466 B
PHP
<?php
|
|
|
|
// MOODLE VERSION INFORMATION
|
|
|
|
// This file defines the current version of the core Moodle code being used.
|
|
// This is compared against the values stored in the database to determine
|
|
// whether upgrades should be performed (see lib/db/*.php)
|
|
|
|
$version = 2009030300; // YYYYMMDD = date of the last version bump
|
|
// XX = daily increments
|
|
|
|
$release = '2.0 dev (Build: 20090303)'; // Human-friendly version name
|
|
|
|
?>
|