. /** * @package gradingform * @subpackage rubric * @copyright 2011 David Mudrak * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Keeps track or rubric plugin upgrade path * * @param int $oldversion the DB version of currently installed plugin * @return bool true */ function xmldb_gradingform_rubric_upgrade($oldversion) { global $CFG, $DB, $OUTPUT; $dbman = $DB->get_manager(); // Moodle v2.2.0 release upgrade line // Put any upgrade step following this return true; }