2013-05-03 10:51:41 +00:00
|
|
|
<?php
|
|
|
|
// This file is part of the customcert 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
|
2013-07-22 05:06:18 +00:00
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
2013-05-03 10:51:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles loading a customcert template.
|
|
|
|
*
|
|
|
|
* @package mod_customcert
|
2013-07-22 05:06:18 +00:00
|
|
|
* @copyright 2013 Mark Nelson <markn@moodle.com>
|
2013-05-03 10:51:41 +00:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once('../../config.php');
|
|
|
|
|
|
|
|
$tid = required_param('tid', PARAM_INT);
|
2016-02-16 09:03:34 +00:00
|
|
|
$ltid = required_param('ltid', PARAM_INT); // The template to load.
|
2013-05-03 10:51:41 +00:00
|
|
|
$confirm = optional_param('confirm', 0, PARAM_INT);
|
|
|
|
|
2016-02-16 09:03:34 +00:00
|
|
|
$template = $DB->get_record('customcert_templates', array('id' => $tid), '*', MUST_EXIST);
|
|
|
|
$template = new \mod_customcert\template($template);
|
2013-05-03 10:51:41 +00:00
|
|
|
|
2016-02-16 09:03:34 +00:00
|
|
|
$loadtemplate = $DB->get_record('customcert_templates', array('id' => $ltid), '*', MUST_EXIST);
|
|
|
|
$loadtemplate = new \mod_customcert\template($loadtemplate);
|
2013-05-03 10:51:41 +00:00
|
|
|
|
2016-02-16 09:03:34 +00:00
|
|
|
if ($cm = $template->get_cm()) {
|
|
|
|
require_login($cm->course, false, $cm);
|
|
|
|
} else {
|
|
|
|
require_login();
|
|
|
|
}
|
|
|
|
$template->require_manage();
|
2013-05-03 10:51:41 +00:00
|
|
|
|
|
|
|
// Check that they have confirmed they wish to load the template.
|
|
|
|
if ($confirm) {
|
|
|
|
// First, remove all the existing elements and pages.
|
|
|
|
$sql = "SELECT e.*
|
2015-03-11 08:22:44 +00:00
|
|
|
FROM {customcert_elements} e
|
|
|
|
INNER JOIN {customcert_pages} p
|
|
|
|
ON e.pageid = p.id
|
2016-02-16 09:03:34 +00:00
|
|
|
WHERE p.templateid = :templateid";
|
|
|
|
if ($elements = $DB->get_records_sql($sql, array('templateid' => $template->get_id()))) {
|
2013-05-03 10:51:41 +00:00
|
|
|
foreach ($elements as $element) {
|
|
|
|
// Get an instance of the element class.
|
2016-02-16 09:03:34 +00:00
|
|
|
if ($e = \mod_customcert\element::instance($element)) {
|
|
|
|
$e->delete();
|
2013-05-03 10:51:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the pages.
|
2016-02-16 09:03:34 +00:00
|
|
|
$DB->delete_records('customcert_pages', array('templateid' => $template->get_id()));
|
2013-05-03 10:51:41 +00:00
|
|
|
|
|
|
|
// Store the current time in a variable.
|
|
|
|
$time = time();
|
|
|
|
|
2016-02-16 09:03:34 +00:00
|
|
|
// Now, get the template data we want to load.
|
|
|
|
if ($templatepages = $DB->get_records('customcert_pages', array('templateid' => $ltid))) {
|
2013-05-03 10:51:41 +00:00
|
|
|
// Loop through the pages.
|
|
|
|
foreach ($templatepages as $templatepage) {
|
|
|
|
$page = clone($templatepage);
|
2016-02-16 09:03:34 +00:00
|
|
|
$page->templateid = $tid;
|
2013-05-03 10:51:41 +00:00
|
|
|
$page->timecreated = $time;
|
|
|
|
$page->timemodified = $time;
|
|
|
|
// Insert into the database.
|
|
|
|
$page->id = $DB->insert_record('customcert_pages', $page);
|
2016-02-16 09:03:34 +00:00
|
|
|
// Now go through the elements we want to load.
|
|
|
|
if ($templateelements = $DB->get_records('customcert_elements', array('pageid' => $templatepage->id))) {
|
2013-05-03 10:51:41 +00:00
|
|
|
foreach ($templateelements as $templateelement) {
|
|
|
|
$element = clone($templateelement);
|
|
|
|
$element->pageid = $page->id;
|
|
|
|
$element->timecreated = $time;
|
|
|
|
$element->timemodified = $time;
|
|
|
|
// Ok, now we want to insert this into the database.
|
|
|
|
$element->id = $DB->insert_record('customcert_elements', $element);
|
|
|
|
// Load any other information the element may need to for the template.
|
2016-02-16 09:03:34 +00:00
|
|
|
if ($e = \mod_customcert\element::instance($element)) {
|
|
|
|
if (!$e->copy_element($templateelement)) {
|
|
|
|
// Failed to copy - delete the element.
|
|
|
|
$e->delete();
|
2013-05-03 10:51:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Redirect.
|
2016-02-16 09:03:34 +00:00
|
|
|
$url = new moodle_url('/mod/customcert/edit.php', array('tid' => $tid));
|
|
|
|
redirect($url);
|
2013-05-03 10:51:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the link options.
|
2016-02-16 09:03:34 +00:00
|
|
|
$nourl = new moodle_url('/mod/customcert/edit.php', array('tid' => $tid));
|
|
|
|
$yesurl = new moodle_url('/mod/customcert/load_template.php', array('tid' => $tid,
|
|
|
|
'ltid' => $ltid,
|
2013-05-03 10:51:41 +00:00
|
|
|
'confirm' => 1));
|
2016-02-16 09:03:34 +00:00
|
|
|
|
|
|
|
$pageurl = new moodle_url('/mod/customcert/load_template.php', array('tid' => $tid, 'ltid' => $ltid));
|
|
|
|
\mod_customcert\page_helper::page_setup($pageurl, $template->get_context(), get_string('loadtemplate', 'customcert'));
|
|
|
|
|
2013-05-03 10:51:41 +00:00
|
|
|
// Show a confirmation page.
|
|
|
|
echo $OUTPUT->header();
|
|
|
|
echo $OUTPUT->confirm(get_string('loadtemplatemsg', 'customcert'), $yesurl, $nourl);
|
|
|
|
echo $OUTPUT->footer();
|