Kumi
80ac83db92
Introduces XLSX export functionality to the user grades report. Adds a checkbox for selecting XLSX export in the form interface. Uses PhpSpreadsheet to generate and download detailed Excel files containing user grades and quiz attempts. Enhancement enables convenient data export for offline analysis and sharing.
8 lines
218 B
PHP
8 lines
218 B
PHP
<?php
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->component = 'report_usergrades';
|
|
$plugin->version = 2024112500;
|
|
$plugin->requires = 2022041900;
|
|
$plugin->maturity = MATURITY_ALPHA;
|
|
$plugin->release = 'v1.0';
|