123456789101112131415161718 |
- <?php
- /**
- * Atto text editor integration version file.
- *
- * @package atto_iassign
- * @version v 1.1 2016/02/13 - v 1.0 2012/10/16
- * @copyright 2014
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
- defined('MOODLE_INTERNAL') || die();
- $plugin->component = 'atto_iassign'; // Full name of the plugin (used for diagnostics).
- $plugin->release = '2.1.88 (Build: 2016021300)'; // Human-readable version name
- $plugin->version = 2016021300; // The current module version (Date: YYYYMMDDXX)
- $plugin->requires = 2012112900; // Requires this Moodle version
- $plugin->maturity = MATURITY_STABLE; // How stable the plugin is: MATURITY_ALPHA, MATURITY_BETA, MATURITY_RC, MATURITY_STABLE (Moodle 2.0 and above)
- $plugin->dependencies = array('mod_iassign' => 2016021300);
|