. /** * Describe the observers required plug-in. * * @package local_billingpatch * @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_billingpatch\\observer::course_module", "eventname" => "\core\\event\\course_module_updated", "includefile" => null, "internal" => true, "priority" => 9999 ), array( "callback" => "\local_billingpatch\\observer::course_module", "eventname" => "\core\\event\\course_module_created", "includefile" => null, "internal" => true, "priority" => 9999 ) );