version.php 799 B

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