Browse Source
Adds a Report that lists only students who do not have full attendance. Adds the Ability to send e-mails to students.MOODLE_26_STABLE
Neill Magill
11 years ago
committed by
Joseph Baxter
11 changed files with 352 additions and 15 deletions
@ -0,0 +1,84 @@ |
|||||
|
<?php |
||||
|
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle 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 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle 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. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
|
/** |
||||
|
* Prints attendance info for particular user |
||||
|
* |
||||
|
* @package mod |
||||
|
* @subpackage attforblock |
||||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later |
||||
|
*/ |
||||
|
|
||||
|
require_once(dirname(__FILE__).'/../../config.php'); |
||||
|
require_once(dirname(__FILE__).'/locallib.php'); |
||||
|
require_once(dirname(__FILE__).'/student_attenance_form.php'); |
||||
|
|
||||
|
$pageparams = new att_sessions_page_params(); |
||||
|
|
||||
|
// Check that the required parameters are present. |
||||
|
$id = required_param('sessid', PARAM_INT); |
||||
|
$attendance_session_id = required_param('sessid', PARAM_INT); |
||||
|
|
||||
|
|
||||
|
$attforsession = $DB->get_record('attendance_sessions', array('id' => $id), '*', MUST_EXIST); |
||||
|
$attforblock = $DB->get_record('attforblock', array('id' => $attforsession->attendanceid), '*', MUST_EXIST); |
||||
|
$cm = get_coursemodule_from_instance('attforblock', $attforblock->id, 0, false, MUST_EXIST); |
||||
|
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST); |
||||
|
|
||||
|
// Require the user is logged in. |
||||
|
require_login($course, true, $cm); |
||||
|
|
||||
|
$pageparams->sessionid = $id; |
||||
|
$att = new attforblock($attforblock, $cm, $course, $PAGE->context, $pageparams); |
||||
|
|
||||
|
// Require that a session key is passed to this page. |
||||
|
require_sesskey(); |
||||
|
|
||||
|
// Create the form. |
||||
|
$mform = new mod_attforblock_student_attendance_form(null, |
||||
|
array('course' => $course, 'cm' => $cm, 'modcontext' => $PAGE->context, 'session' => $attforsession, 'attendance' => $att)); |
||||
|
|
||||
|
if ($mform->is_cancelled()) { |
||||
|
// The user cancelled the form, so redirect them to the view page. |
||||
|
$url = new moodle_url('/mod/attforblock/view.php', array('id' => $cm->id)); |
||||
|
redirect($url); |
||||
|
} else if ($fromform = $mform->get_data()) { |
||||
|
if (!empty($fromform->status)) { |
||||
|
$success = $att->take_from_student($fromform); |
||||
|
|
||||
|
$url = new moodle_url('/mod/attforblock/view.php', array('id' => $cm->id)); |
||||
|
if ($success) { |
||||
|
// Redirect back to the view page for the block. |
||||
|
redirect($url); |
||||
|
} else { |
||||
|
print_error ('attendance_already_submitted', 'mod_attforblock', $url); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// The form did not validate correctly so we will set it to display the data they submitted. |
||||
|
$mform->set_data($fromform); |
||||
|
} |
||||
|
|
||||
|
$PAGE->set_url($att->url_sessions()); |
||||
|
$PAGE->set_title($course->shortname. ": ".$att->name); |
||||
|
$PAGE->set_heading($course->fullname); |
||||
|
$PAGE->set_cacheable(true); |
||||
|
$PAGE->navbar->add($att->name); |
||||
|
|
||||
|
$output = $PAGE->get_renderer('mod_attforblock'); |
||||
|
echo $output->header(); |
||||
|
$mform->display(); |
||||
|
echo $output->footer(); |
@ -0,0 +1,63 @@ |
|||||
|
<?php |
||||
|
// This file is part of Moodle - http://moodle.org/ |
||||
|
// |
||||
|
// Moodle 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 3 of the License, or |
||||
|
// (at your option) any later version. |
||||
|
// |
||||
|
// Moodle 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. |
||||
|
// |
||||
|
// You should have received a copy of the GNU General Public License |
||||
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. |
||||
|
|
||||
|
require_once($CFG->libdir.'/formslib.php'); |
||||
|
|
||||
|
class mod_attforblock_student_attendance_form extends moodleform { |
||||
|
public function definition() { |
||||
|
global $CFG, $USER; |
||||
|
|
||||
|
$mform =& $this->_form; |
||||
|
|
||||
|
$course = $this->_customdata['course']; |
||||
|
$cm = $this->_customdata['cm']; |
||||
|
$modcontext = $this->_customdata['modcontext']; |
||||
|
$attforsession = $this->_customdata['session']; |
||||
|
$attblock = $this->_customdata['attendance']; |
||||
|
|
||||
|
$statuses = $attblock->get_statuses(); |
||||
|
|
||||
|
$mform->addElement('hidden', 'sessid', null); |
||||
|
$mform->setType('sessid', PARAM_INT); |
||||
|
$mform->setConstant('sessid', $attforsession->id); |
||||
|
|
||||
|
$mform->addElement('hidden', 'sesskey', null); |
||||
|
$mform->setType('sesskey', PARAM_INT); |
||||
|
$mform->setConstant('sesskey', sesskey()); |
||||
|
|
||||
|
// Set a title as the date and time of the session. |
||||
|
$sesstiontitle = userdate($attforsession->sessdate, get_string('strftimedate')).' ' |
||||
|
.userdate($attforsession->sessdate, get_string('strftimehm', 'mod_attforblock')); |
||||
|
|
||||
|
$mform->addElement('header', 'session', $sesstiontitle); |
||||
|
|
||||
|
// If a session description is set display it. |
||||
|
if (!empty($attforsession->description)) { |
||||
|
$mform->addElement('html', $attforsession->description); |
||||
|
} |
||||
|
|
||||
|
// Create radio buttons for setting the attendance status. |
||||
|
$radioarray = array(); |
||||
|
foreach ($statuses as $status) { |
||||
|
$radioarray[] =& $mform->createElement('radio', 'status', '', $status->description, $status->id, array()); |
||||
|
} |
||||
|
// Add the radio buttons as a control with the user's name in front. |
||||
|
$mform->addGroup($radioarray, 'statusarray', $USER->firstname.' '.$USER->lastname.':', array(''), false); |
||||
|
$mform->addRule('statusarray', get_string('attendancenotset', 'attforblock'), 'required', '', 'client', false, false); |
||||
|
|
||||
|
$this->add_action_buttons(); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue