mirror of
https://github.com/moodle/moodle.git
synced 2025-03-06 16:59:56 +01:00
16 lines
379 B
PHP
16 lines
379 B
PHP
<?php //$Id$
|
|
|
|
// This file is executed right after the install.xml
|
|
//
|
|
|
|
function xmldb_quiz_statistics_install() {
|
|
global $DB;
|
|
|
|
$record = new object();
|
|
$record->name = 'statistics';
|
|
$record->displayorder = 8000;
|
|
$record->cron = 18000;
|
|
$record->capability = 'quizreport/statistics:view';
|
|
$DB->insert_record('quiz_report', $record);
|
|
|
|
} |