. /** * Contains class mod_attendance_add_warning_form * * @package mod_attendance * @copyright 2017 Dan Marsden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); /** * Class mod_attendance_add_warning_form * * @package mod_attendance * @copyright 2017 Dan Marsden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class mod_attendance_add_warning_form extends moodleform { /** * Form definition */ public function definition() { global $COURSE; $mform = $this->_form; // Load global defaults. $config = get_config('attendance'); $options = array(); for ($i = 1; $i <= 100; $i++) { $options[$i] = "$i%"; } $mform->addElement('select', 'warningpercent', get_string('warningpercent', 'mod_attendance'), $options); $mform->addHelpButton('warningpercent', 'warningpercent', 'mod_attendance'); $mform->setType('warningpercent', PARAM_INT); $mform->setDefault('warningpercent', $config->warningpercent); $options = array(); for ($i = 1; $i <= 50; $i++) { $options[$i] = "$i"; } $mform->addElement('select', 'warnafter', get_string('warnafter', 'mod_attendance'), $options); $mform->addHelpButton('warnafter', 'warnafter', 'mod_attendance'); $mform->setType('warnafter', PARAM_INT); $mform->setDefault('warnafter', $config->warnafter); $mform->addElement('checkbox', 'emailuser', get_string('emailuser', 'mod_attendance')); $mform->addHelpButton('emailuser', 'emailuser', 'mod_attendance'); $mform->setDefault('emailuser', $config->emailuser); $mform->addElement('text', 'emailsubject', get_string('emailsubject', 'mod_attendance'), array('size' => '64')); $mform->setType('emailsubject', PARAM_TEXT); $mform->addRule('emailsubject', get_string('maximumchars', '', 255), 'maxlength', 255, 'client'); $mform->addHelpButton('emailsubject', 'emailsubject', 'mod_attendance'); $mform->setDefault('emailsubject', $config->emailsubject); $mform->addElement('editor', 'emailcontent', get_string('emailcontent', 'mod_attendance'), null, null); $mform->setDefault('emailcontent', array('text' => format_text($config->emailcontent))); $mform->setType('emailcontent', PARAM_RAW); $mform->addHelpButton('emailcontent', 'emailcontent', 'mod_attendance'); $users = get_users_by_capability(context_course::instance($COURSE->id), 'mod/attendance:viewreports'); $options = array(); foreach ($users as $user) { $options[$user->id] = fullname($user); } $select = $mform->addElement('searchableselector', 'thirdpartyemails', get_string('thirdpartyemails', 'mod_attendance'), $options); $mform->setType('thirdpartyemails', PARAM_TEXT); $mform->addHelpButton('thirdpartyemails', 'thirdpartyemails', 'mod_attendance'); $select->setMultiple(true); // Need to set hidden elements when adding default options. $mform->addElement('hidden', 'idnumber', 0); // Default options use 0 as the idnumber. $mform->setType('idnumber', PARAM_INT); $mform->addElement('hidden', 'notid', 0); // The id of warning record. $mform->setType('notid', PARAM_INT); $mform->addElement('hidden', 'id', $this->_customdata['id']); // The id of course module record if attendance level. $mform->setType('id', PARAM_INT); if (!empty($this->_customdata['notid'])) { $btnstring = get_string('update', 'attendance'); } else { $btnstring = get_string('add', 'attendance'); } $this->add_action_buttons(true, $btnstring); } }