. /** * Post installation code for enrol_lti. * * @package enrol_lti * @copyright 2022 Jake Dallimore * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Stub for database installation. */ function xmldb_enrol_lti_install() { global $CFG, $OUTPUT; // LTI 1.3: Set a private key for this site (which is acting as a tool in LTI 1.3). require_once($CFG->dirroot . '/enrol/lti/upgradelib.php'); $warning = enrol_lti_verify_private_key(); if (!empty($warning)) { echo $OUTPUT->notification($warning, 'notifyproblem'); } }