| 1234567891011121314151617181920212223 | 
							- <?php
 
- /**
 
-  * Defines the version of nasatlx
 
-  *
 
-  * This code fragment is called by moodle_needs_upgrading() and ./admin/index.php
 
-  *
 
-  * This module is an implementation of the NASA-TLX protocol to test 2 different implementation under Moodle.
 
-  * 
 
-  * @author Leônidas O. Brandão
 
-  * @version v 0.1 2019/03/04
 
-  * @package    mod_nasatlx
 
-  * @copyright  2014 LInE - http://line.ime.usp.br
 
-  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 
-  */
 
- defined('MOODLE_INTERNAL') || die();
 
- $plugin->component = 'mod_nasatlx';   // To check on upgrade, that module sits in correct place
 
- $plugin->cron      = 0;               // Period for cron to check this module (secs)
 
- $plugin->maturity = MATURITY_STABLE;  // How stable the plugin is: MATURITY_ALPHA, MATURITY_BETA, MATURITY_RC, MATURITY_STABLE (Moodle 2.0 and above)
 
- $plugin->requires  = 2010031900;      // Requires this Moodle version
 
- $plugin->version   = 2019030100;      // 1 = 2014
 
 
  |