. /** * 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( "eventname" => "*", "callback" => "\local_webhooks\\events::handler", "includefile" => null, "priority" => 200, "internal" => true ) );