. /** * Defines the view event. * * @package mod_appstream * @copyright 2018 Amazon.com, Inc. and its affiliates. All Rights Reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 */ namespace mod_appstream\event; defined('MOODLE_INTERNAL') || die(); class course_module_viewed extends \core\event\course_module_viewed { /** * Initialize the event */ protected function init() { $this->data['objecttable'] = 'appstream'; parent::init(); } }