. /** * Version information * * @package mod_attendance * @copyright 2011 Artem Andreev * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ $module->version = 2014022803; $module->requires = 2013040500; $module->release = '2.6.2'; $module->maturity = MATURITY_STABLE; $module->cron = 0; $module->component = 'mod_attendance'; // Nasty upgrade code to check if need to upgrade from attforblock. // TODO: remove this asap. if (defined('MOODLE_INTERNAL')) { // Only run if config.php has already been included. global $DB; $moduleexists = false; try { $moduleexists = $DB->record_exists('modules', array('name' =>'attforblock')); } catch (Exception $e) { // Probably a fresh install - modules table doesn't exist } if ($moduleexists) { require_once('locallib.php'); attforblock_upgrade(); } }