⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 outcomeitem_form.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php  //$Id: outcomeitem_form.php,v 1.12.2.14 2008/10/22 09:09:32 nicolasconnault Exp $/////////////////////////////////////////////////////////////////////////////                                                                       //// NOTICE OF COPYRIGHT                                                   ////                                                                       //// Moodle - Modular Object-Oriented Dynamic Learning Environment         ////          http://moodle.com                                            ////                                                                       //// Copyright (C) 1999 onwards  Martin Dougiamas  http://moodle.com       ////                                                                       //// This program is free software; you can redistribute it and/or modify  //// it under the terms of the GNU General Public License as published by  //// the Free Software Foundation; either version 2 of the License, or     //// (at your option) any later version.                                   ////                                                                       //// This program is distributed in the hope that it will be useful,       //// but WITHOUT ANY WARRANTY; without even the implied warranty of        //// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         //// GNU General Public License for more details:                          ////                                                                       ////          http://www.gnu.org/copyleft/gpl.html                         ////                                                                       /////////////////////////////////////////////////////////////////////////////require_once $CFG->libdir.'/formslib.php';class edit_outcomeitem_form extends moodleform {    function definition() {        global $COURSE, $CFG;        $mform =& $this->_form;/// visible elements        $mform->addElement('header', 'general', get_string('gradeoutcomeitem', 'grades'));        $mform->addElement('text', 'itemname', get_string('itemname', 'grades'));        $mform->addRule('itemname', get_string('required'), 'required', null, 'client');        $mform->addElement('text', 'iteminfo', get_string('iteminfo', 'grades'));        $mform->setHelpButton('iteminfo', array('iteminfo', get_string('iteminfo', 'grades'), 'grade'), true);        $mform->addElement('text', 'idnumber', get_string('idnumbermod'));        $mform->setHelpButton('idnumber', array('idnumber', get_string('idnumber', 'grades'), 'grade'), true);        // allow setting of outcomes on module items too        $options = array();        if ($outcomes = grade_outcome::fetch_all_available($COURSE->id)) {            foreach ($outcomes as $outcome) {                $options[$outcome->id] = $outcome->get_name();            }        }        $mform->addElement('selectwithlink', 'outcomeid', get_string('outcome', 'grades'), $options, null,            array('link' => $CFG->wwwroot.'/grade/edit/outcome/course.php?id='.$COURSE->id, 'label' => get_string('outcomeassigntocourse', 'grades')));        $mform->setHelpButton('outcomeid', array('outcomeid', get_string('outcomeid', 'grades'), 'grade'), true);        $mform->addRule('outcomeid', get_string('required'), 'required');        $options = array(0=>get_string('none'));        if ($coursemods = get_course_mods($COURSE->id)) {            foreach ($coursemods as $coursemod) {                if ($mod = get_coursemodule_from_id($coursemod->modname, $coursemod->id)) {                    $options[$coursemod->id] = format_string($mod->name);                }            }        }        $mform->addElement('select', 'cmid', get_string('linkedactivity', 'grades'), $options);        $mform->setHelpButton('cmid', array('linkedactivity', get_string('linkedactivity', 'grades'), 'grade'), true);        $mform->setDefault('cmid', 0);        /*$mform->addElement('text', 'gradepass', get_string('gradepass', 'grades'));        $mform->setHelpButton('gradepass', array(false, get_string('gradepass', 'grades'),                false, true, false, get_string('gradepasshelp', 'grades')));*/        /// hiding        /// advcheckbox is not compatible with disabledIf !!        $mform->addElement('checkbox', 'hidden', get_string('hidden', 'grades'));        $mform->setHelpButton('hidden', array('hidden', get_string('hidden', 'grades'), 'grade'));        $mform->addElement('date_time_selector', 'hiddenuntil', get_string('hiddenuntil', 'grades'), array('optional'=>true));        $mform->setHelpButton('hiddenuntil', array('hiddenuntil', get_string('hiddenuntil', 'grades'), 'grade'));        $mform->disabledIf('hidden', 'hiddenuntil[off]', 'notchecked');        //locking        $mform->addElement('advcheckbox', 'locked', get_string('locked', 'grades'));        $mform->setHelpButton('locked', array('locked', get_string('locked', 'grades'), 'grade'));        $mform->addElement('date_time_selector', 'locktime', get_string('locktime', 'grades'), array('optional'=>true));        $mform->setHelpButton('locktime', array('lockedafter', get_string('locktime', 'grades'), 'grade'));/// parent category related settings        $mform->addElement('header', 'headerparent', get_string('parentcategory', 'grades'));        $options = array();        $default = '';        $coefstring = '';        $categories = grade_category::fetch_all(array('courseid'=>$COURSE->id));        foreach ($categories as $cat) {            $cat->apply_forced_settings();            $options[$cat->id] = $cat->get_name();            if ($cat->is_course_category()) {                $default = $cat->id;            }            if ($cat->is_aggregationcoef_used()) {                if ($cat->aggregation == GRADE_AGGREGATE_WEIGHTED_MEAN) {                    $coefstring = ($coefstring=='' or $coefstring=='aggregationcoefweight') ? 'aggregationcoefweight' : 'aggregationcoef';                } else if ($cat->aggregation == GRADE_AGGREGATE_EXTRACREDIT_MEAN) {                    $coefstring = ($coefstring=='' or $coefstring=='aggregationcoefextra') ? 'aggregationcoefextra' : 'aggregationcoef';                } else if ($cat->aggregation == GRADE_AGGREGATE_SUM) {                    $coefstring = ($coefstring=='' or $coefstring=='aggregationcoefextrasum') ? 'aggregationcoefextrasum' : 'aggregationcoef';                } else {                    $coefstring = 'aggregationcoef';                }            } else {                $mform->disabledIf('aggregationcoef', 'parentcategory', 'eq', $cat->id);            }        }        if (count($categories) > 1) {            $mform->addElement('select', 'parentcategory', get_string('gradecategory', 'grades'), $options);            $mform->disabledIf('parentcategory', 'cmid', 'noteq', 0);        }        if ($coefstring !== '') {            if ($coefstring == 'aggregationcoefextrasum') {                // advcheckbox is not compatible with disabledIf!                $mform->addElement('checkbox', 'aggregationcoef', get_string($coefstring, 'grades'));            } else {                $mform->addElement('text', 'aggregationcoef', get_string($coefstring, 'grades'));            }            $mform->setHelpButton('aggregationcoef', array($coefstring, get_string($coefstring, 'grades'), 'grade'), true);        }/// hidden params        $mform->addElement('hidden', 'id', 0);        $mform->setType('id', PARAM_INT);        $mform->addElement('hidden', 'courseid', $COURSE->id);        $mform->setType('courseid', PARAM_INT);/// add return tracking info        $gpr = $this->_customdata['gpr'];        $gpr->add_mform_elements($mform);/// mark advanced according to site settings        if (isset($CFG->grade_item_advanced)) {            $advanced = explode(',', $CFG->grade_item_advanced);            foreach ($advanced as $el) {                if ($mform->elementExists($el)) {                    $mform->setAdvanced($el);                }            }        }//-------------------------------------------------------------------------------        // buttons        $this->add_action_buttons();    }/// tweak the form - depending on existing data    function definition_after_data() {        global $CFG, $COURSE;        $mform =& $this->_form;        if ($id = $mform->getElementValue('id')) {            $grade_item = grade_item::fetch(array('id'=>$id));            //remove the aggregation coef element if not needed            if ($grade_item->is_course_item()) {                if ($mform->elementExists('parentcategory')) {                    $mform->removeElement('parentcategory');                }                if ($mform->elementExists('aggregationcoef')) {                    $mform->removeElement('aggregationcoef');                }            } else {                // if we wanted to change parent of existing item - we would have to verify there are no circular references in parents!!!                if ($mform->elementExists('parentcategory')) {                    $mform->hardFreeze('parentcategory');                }                if ($grade_item->is_category_item()) {                    $category = $grade_item->get_item_category();                    $parent_category = $category->get_parent_category();                } else {                    $parent_category = $grade_item->get_parent_category();                }                $parent_category->apply_forced_settings();                if (!$parent_category->is_aggregationcoef_used() or $parent_category->aggregation == GRADE_AGGREGATE_SUM) {                    if ($mform->elementExists('aggregationcoef')) {                        $mform->removeElement('aggregationcoef');                    }                } else {                    //fix label if needed                    $agg_el =& $mform->getElement('aggregationcoef');                    $aggcoef = '';                    if ($parent_category->aggregation == GRADE_AGGREGATE_WEIGHTED_MEAN) {                        $aggcoef = 'aggregationcoefweight';                    } else if ($parent_category->aggregation == GRADE_AGGREGATE_EXTRACREDIT_MEAN) {                        $aggcoef = 'aggregationcoefextra';                    } else if ($parent_category->aggregation == GRADE_AGGREGATE_SUM) {                        $aggcoef = 'aggregationcoefextrasum';                    }                    if ($aggcoef !== '') {                        $agg_el->setLabel(get_string($aggcoef, 'grades'));                        $mform->setHelpButton('aggregationcoef', array($aggcoef, get_string($aggcoef, 'grades'), 'grade'));                    }                }            }        }        // no parent header for course category        if (!$mform->elementExists('aggregationcoef') and !$mform->elementExists('parentcategory')) {            $mform->removeElement('headerparent');        }    }/// perform extra validation before submission    function validation($data, $files) {        global $COURSE;        $errors = parent::validation($data, $files);        if (array_key_exists('idnumber', $data)) {            if ($data['id']) {                $grade_item = new grade_item(array('id'=>$data['id'], 'courseid'=>$data['courseid']));            } else {                $grade_item = null;            }            if (!grade_verify_idnumber($data['idnumber'], $COURSE->id, $grade_item, null)) {                $errors['idnumber'] = get_string('idnumbertaken');            }        }        return $errors;    }}?>

⌨️ 快捷键说明

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