You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.8 KiB
101 lines
3.8 KiB
11 years ago
|
<?php
|
||
|
|
||
|
// This file is part of the Certificate module for 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/>.
|
||
|
|
||
|
/**
|
||
|
* This page reviews a certificate
|
||
|
*
|
||
|
* @package mod
|
||
|
* @subpackage certificate
|
||
|
* @copyright Mark Nelson <markn@moodle.com>
|
||
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||
|
*/
|
||
|
|
||
|
require_once('../../config.php');
|
||
|
require_once('lib.php');
|
||
|
require_once("$CFG->libdir/pdflib.php");
|
||
|
|
||
|
// Retrieve any variables that are passed
|
||
|
$id = required_param('id', PARAM_INT); // Course Module ID
|
||
|
$action = optional_param('action', '', PARAM_ALPHA);
|
||
|
|
||
|
if (!$cm = get_coursemodule_from_id('certificate', $id)) {
|
||
|
print_error('Course Module ID was incorrect');
|
||
|
}
|
||
|
|
||
|
if (!$course = $DB->get_record('course', array('id'=> $cm->course))) {
|
||
|
print_error('course is misconfigured');
|
||
|
}
|
||
|
|
||
|
if (!$certificate = $DB->get_record('certificate', array('id'=> $cm->instance))) {
|
||
|
print_error('course module is incorrect');
|
||
|
}
|
||
|
|
||
|
// Requires a course login
|
||
|
require_course_login($course->id, true, $cm);
|
||
|
|
||
|
// Check the capabilities
|
||
|
$context = context_module::instance($cm->id);
|
||
|
require_capability('mod/certificate:view', $context);
|
||
|
|
||
|
// Initialize $PAGE, compute blocks
|
||
|
$PAGE->set_url('/mod/certificate/review.php', array('id' => $cm->id));
|
||
|
$PAGE->set_context($context);
|
||
|
$PAGE->set_cm($cm);
|
||
|
$PAGE->set_title(format_string($certificate->name));
|
||
|
$PAGE->set_heading(format_string($course->fullname));
|
||
|
|
||
|
// Get previous cert record
|
||
|
if (!$certrecord = $DB->get_record('certificate_issues', array('userid' => $USER->id, 'certificateid' => $certificate->id))) {
|
||
|
notice(get_string('nocertificatesissued', 'certificate'), "$CFG->wwwroot/course/view.php?id=$course->id");
|
||
|
die;
|
||
|
}
|
||
|
|
||
|
// Load the specific certificatetype
|
||
|
require ("$CFG->dirroot/mod/certificate/type/$certificate->certificatetype/certificate.php");
|
||
|
|
||
|
if ($action) {
|
||
|
// Remove full-stop at the end if it exists, to avoid "..pdf" being created and being filtered by clean_filename
|
||
|
$certname = rtrim($certificate->name, '.');
|
||
|
$filename = clean_filename("$certname.pdf");
|
||
|
$pdf->Output($filename, 'I'); // open in browser
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
echo $OUTPUT->header();
|
||
|
|
||
|
if (has_capability('mod/certificate:manage', $context)) {
|
||
|
$numusers = count(certificate_get_issues($certificate->id, 'ci.timecreated ASC', '', $cm));
|
||
|
$url = html_writer::tag('a', get_string('viewcertificateviews', 'certificate', $numusers),
|
||
|
array('href' => $CFG->wwwroot . '/mod/certificate/report.php?id=' . $cm->id));
|
||
|
echo html_writer::tag('div', $url, array('class' => 'reportlink'));
|
||
|
}
|
||
|
|
||
|
if (!empty($certificate->intro)) {
|
||
|
echo $OUTPUT->box(format_module_intro('certificate', $certificate, $cm->id), 'generalbox', 'intro');
|
||
|
}
|
||
|
|
||
|
echo html_writer::tag('p', get_string('viewed', 'certificate'). '<br />' . userdate($certrecord->timecreated), array('style' => 'text-align:center'));
|
||
|
|
||
|
$link = new moodle_url('/mod/certificate/review.php?id='.$cm->id.'&action=get');
|
||
|
$linkname = get_string('reviewcertificate', 'certificate');
|
||
|
$button = new single_button($link, $linkname);
|
||
|
$button->add_action(new popup_action('click', $link, array('height' => 600, 'width' => 800)));
|
||
|
|
||
|
echo html_writer::tag('div', $OUTPUT->render($button), array('style' => 'text-align:center'));
|
||
|
|
||
|
echo $OUTPUT->footer($course);
|