> * @author Leônidas O. Brandão <> * @author Igor Moreira Félix <> * * Contributors * - Marcelo de Arce Alemany <> * + Translation into Spanish. * - Danilo Leite Dalmon <> * + Translation into French. * - Luciano Oliveira Borges <> * + Refactoring code documentation. * + Filter files in view of select iLM files (Block and Module). * + Changes for implement iLM version. * + Change file for Moodle filesystem (MoodleData). * * @version v 2.2.0 2017/04/28 * @version v 2.1.16 2013/10/31 * @since 2010/09/27 * @copyright iMath (http://www.matematica.br) and LInE (http://line.ime.usp.br) - Computer Science Dep. of IME-USP (Brazil) * * License * - http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * *

Return to iAssign Documentation */ /** * Code fragment to define the version of iAssign * This fragment is called by moodle_needs_upgrading() at ./admin/index.php * * @author Patricia Alves Rodrigues * @author Leônidas O. Brandão * @author Igor Moreira Félix * @version v 2.2.0 2017/02/18 (2017042800) * @package mod_iassign_version * @since 2010/09/27 * @copyright iMatica (iMath) - Computer Science Dep. of IME-USP (Brazil) * * License * - http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * */ defined('MOODLE_INTERNAL') || die(); // v 2.8 2020/06/17 (2.8.00 2020061700) several bug fixes and auto_eval // v 2.5 2019/02/10 (2.5.00 2019021000) complete revision of all ./mod/iassign/lang/*/iassign.php // v 2.4 2018/03/10 (2.4.00 2018031000) now iLM (HTML5 and JAR) in ./mod/iassign/ilm/ // v 2.3 2017/12/02 (2.3.00 2017120100) with iFractions in automatic installation of HTML5 packages // v 2.2 2017/02/19 (2.2.00 2017042800) // v 1.1 2016/02/13 (2.1.88 2016021300) // v 1.0 2012/10/16 $plugin->component = 'mod_iassign'; // Full name of the plugin (used for diagnostics) $plugin->release = '2.8.01 (Build: 2020080300)'; // Human-readable version name $plugin->version = 2021020701; // The current module version (Date: YYYYMMDDXX) $plugin->requires = 2014021100; // Requires this Moodle version since 3.0.0) $plugin->maturity = MATURITY_STABLE; // How stable the plugin is: MATURITY_ALPHA, MATURITY_BETA, MATURITY_RC, MATURITY_STABLE (Moodle 2.0 and above) $plugin->cron = 60;