Customize excel report of quiz.

Customize excel report of quiz.

by Padmahasa B N -
Number of replies: 0

I'm new to Moodle. Trying to customize the excel report that is exported from "/moodle/mod/quiz/report.php?id=9&mode=overview". Like adding new field etc (to excel file).

So far I've tracked the download button to moodle/lib/tablelib.php. It has a function called "download_buttons" which has

global $OUTPUT;


        if ($this->is_downloadable() && !$this->is_downloading()) {

            return $OUTPUT->download_dataformat_selector(get_string('downloadcsv', 'table'),

                    $this->baseurl->out_omit_querystring(), 'download', $this->baseurl->params());

        } else {

            return '';

        }

I would also like to add date wise sorting option to this page. Please give me some tips.

This page is created using so many other functions from different files.

Thank you.

Average of ratings: -