mirror of
https://github.com/moodle/moodle.git
synced 2025-03-12 11:49:49 +01:00
The original code was shocking once I started reviewing it, and even after heavy editing I'm still not happy with it, but at least it works more like it was supposed to. Needs more cleaning up to make it clearer and probably safer. Also, presets can now contain langage packs and they'll be used. The image gallery is an example.
13 lines
403 B
PHP
13 lines
403 B
PHP
<?php // $Id$
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Code fragment to define the module version etc.
|
|
// This fragment is called by /admin/index.php
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2006100200;
|
|
$module->requires = 2006080900; // Requires this Moodle version
|
|
$module->cron = 60;
|
|
|
|
?>
|