. /** * Activity base class. * * @package mod_bigbluebuttonbn * @copyright 2010 onwards, Blindside Networks Inc * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @author Jesus Federico (jesus [at] blindsidenetworks [dt] com) */ namespace mod_bigbluebuttonbn\analytics\indicator; use core_analytics\local\indicator\community_of_inquiry_activity; /** * Activity base class. * * @package mod_bigbluebuttonbn * @copyright 2010 onwards, Blindside Networks Inc * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class activity_base extends community_of_inquiry_activity { /** * No need to fetch grades for resources. * * @return bool */ public function feedback_check_grades() { // BigBlueButtonBN's feedback is not contained in grades. return false; } }