. /** * Interception of all events in the system. * * @package local_webhooks * @copyright 2017 "Valentin Popov" * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); $observers = array( array( 'callback' => '\local_webhooks\handler::events', 'eventname' => '*', 'includefile' => null, 'internal' => true, 'priority' => 200, ), );