. /** * Add event handlers for H5P * * @package mod_hvp * @category event * @copyright 2020 Joubel AS * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); $observers = array( // Handle attempt submitted event, as a way to send confirmation messages asynchronously. array( 'eventname' => '\mod_hvp\event\attempt_submitted', 'includefile' => '/mod/hvp/locallib.php', 'callback' => 'hvp_attempt_submitted_handler', 'internal' => false ), );