Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/monara/public_html/test.athavaneng.com/themes.php on line 99

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
. defined('MOODLE_INTERNAL') || die; /** * Definition of the summary report class * * @package gradereport_summary * @copyright 2022 Ilya Tregubov * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once($CFG->dirroot . '/grade/report/lib.php'); /** * Class providing an API for the summary report building. * * @package gradereport_summary * @uses grade_report * @copyright 2022 Ilya Tregubov * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class grade_report_summary extends grade_report { /** * Capability check caching * * @var boolean $canviewhidden */ public $canviewhidden; /** * Constructor. Sets local copies of user preferences and initialises grade_tree. * * @param int $courseid * @param object $gpr grade plugin return tracking object * @param context_course $context */ public function __construct($courseid, $gpr, $context) { parent::__construct($courseid, $gpr, $context); $this->canviewhidden = has_capability('moodle/grade:viewhidden', $context); $this->setup_groups(); } /** * Processes a single action against a category, grade_item or grade. Not used in summary report. * * @param string $target eid ({type}{id}, e.g. c4 for category4) * @param string $action Which action to take (edit, delete etc...) */ public function process_action($target, $action) { } /** * Handles form data sent by this report for this report. Not used in summary report. * * @param array $data */ public function process_data($data) { } }