forked from bozoh/moodle-mod_simplecertificate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.php
More file actions
23 lines (20 loc) · 881 Bytes
/
Copy pathversion.php
File metadata and controls
23 lines (20 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* Code fragment to define the version of the simplecertificate module
*
* @package mod
* @subpackage simplecertificate
* @author Carlos Alexandre S. da Fonseca
* @copyright 2013 - Carlos Alexandre S. da Fonseca
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or late
*/
defined('MOODLE_INTERNAL') || die();
//Date: YYYYMMDDXX where XX is moodle version
$plugin->version = 2015013028; // The current module version (Date: YYYYMMDDXX)
$plugin->requires = 2014101000; // Requires this Moodle version (moodle 2.8.x)
$plugin->cron = 4 * 3600; // Period for cron to check this module (secs)
$plugin->component = 'mod_simplecertificate';
$plugin->dependencies = array();
$plugin->release = '2.2.1'; // Human-friendly version name
//MATURITY_ALPHA, MATURITY_BETA, MATURITY_RC, MATURITY_STABLE
$plugin->maturity = MATURITY_STABLE;