overviewsettings_form.php

来自「很棒的在线教学系统」· PHP 代码 · 共 38 行

PHP
38
字号
<?php  // $Id: overviewsettings_form.php,v 1.1.2.7 2008/07/04 09:48:02 jamiesensei Exp $require_once "$CFG->libdir/formslib.php";class mod_quiz_report_overview_settings extends moodleform {    function definition() {        global $COURSE;        $mform    =& $this->_form;//-------------------------------------------------------------------------------        $mform->addElement('header', 'preferencespage', get_string('preferencespage', 'quiz_overview'));        $options = array();        if (!$this->_customdata['currentgroup']){            $options[QUIZ_REPORT_ATTEMPTS_ALL] = get_string('optallattempts','quiz_overview');        }        if ($this->_customdata['currentgroup'] || $COURSE->id != SITEID) {            $options[QUIZ_REPORT_ATTEMPTS_ALL_STUDENTS] = get_string('optallstudents','quiz_overview', $COURSE->students);            $options[QUIZ_REPORT_ATTEMPTS_STUDENTS_WITH] =                     get_string('optattemptsonly','quiz_overview', $COURSE->students);            $options[QUIZ_REPORT_ATTEMPTS_STUDENTS_WITH_NO] = get_string('optnoattemptsonly', 'quiz_overview', $COURSE->students);        }        $mform->addElement('select', 'attemptsmode', get_string('show', 'quiz_overview'), $options);        if ($this->_customdata['qmsubselect']){            $gm = '<span class="highlight">'.quiz_get_grading_option_name($this->_customdata['quiz']->grademethod).'</span>';            $mform->addElement('advcheckbox', 'qmfilter', get_string('show', 'quiz_overview'), get_string('optonlygradedattempts', 'quiz_overview', $gm), null, array(0,1));        }//-------------------------------------------------------------------------------        $mform->addElement('header', 'preferencesuser', get_string('preferencesuser', 'quiz_overview'));        $mform->addElement('text', 'pagesize', get_string('pagesize', 'quiz_overview'));        $mform->setType('pagesize', PARAM_INT);        $mform->addElement('selectyesno', 'detailedmarks', get_string('showdetailedmarks', 'quiz_overview'));        $this->add_action_buttons(false, get_string('preferencessave', 'quiz_overview'));    }}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?