mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 00:52:33 +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 = 2007072200; // The current module version (Date: YYYYMMDDXX)
|
|
$module->requires = 2007101000; // Requires this Moodle version
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
?>
|