. /** * This page lists all the instances of certificate in a particular course * * @package mod * @subpackage certificate * @copyright Mark Nelson * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace mod_certificate\event; defined('MOODLE_INTERNAL') || die(); class course_module_viewed extends \core\event\course_module_viewed { protected function init() { $this->data['objecttable'] = 'certificate'; parent::init(); } }