. namespace mod_bigbluebuttonbn\event; /** * The mod_bigbluebuttonbn activity viewed event. * * @package mod_bigbluebuttonbn * @copyright 2010 onwards, Blindside Networks Inc * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class course_module_viewed extends \core\event\course_module_viewed { /** * Init method. * */ protected function init() { $this->data['crud'] = 'r'; $this->data['edulevel'] = self::LEVEL_PARTICIPATING; $this->data['objecttable'] = 'bigbluebuttonbn'; } /** * Return objectid mapping. * * @return array */ public static function get_objectid_mapping() { return ['db' => 'bigbluebuttonbn', 'restore' => 'bigbluebuttonbn']; } }