mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
16 lines
487 B
PHP
16 lines
487 B
PHP
<?php // $Id$
|
|
/**
|
|
* Code fragment to define the version of lesson
|
|
* This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
*
|
|
* @version $Id$
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
* @package lesson
|
|
**/
|
|
|
|
$module->version = 2006091801; // The current module version (Date: YYYYMMDDXX)
|
|
$module->requires = 2006080900; // Requires this Moodle version
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
?>
|