2013-05-03 10:51:41 +00:00
|
|
|
<?php
|
2021-11-24 07:29:43 +00:00
|
|
|
// This file is part of the htmlcert module for Moodle - http://moodle.org/
|
2013-05-03 10:51:41 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
2017-02-16 12:12:19 +00:00
|
|
|
/**
|
2021-11-24 07:29:43 +00:00
|
|
|
* This file contains the form for loading htmlcert templates.
|
2017-02-16 12:12:19 +00:00
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
|
|
|
* @copyright 2013 Mark Nelson <markn@moodle.com>, Klaus-Uwe Mitterer <kumitterer@kumi.systems>
|
2017-02-16 12:12:19 +00:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
*/
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
namespace mod_htmlcert;
|
2016-02-16 09:03:34 +00:00
|
|
|
|
2013-05-03 10:51:41 +00:00
|
|
|
defined('MOODLE_INTERNAL') || die('Direct access to this script is forbidden.');
|
|
|
|
|
|
|
|
require_once($CFG->libdir . '/formslib.php');
|
|
|
|
|
|
|
|
/**
|
2021-11-24 07:29:43 +00:00
|
|
|
* The form for loading htmlcert templates.
|
2013-05-03 10:51:41 +00:00
|
|
|
*
|
2021-11-24 07:29:43 +00:00
|
|
|
* @package mod_htmlcert
|
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
|
|
|
|
*/
|
2016-02-16 09:03:34 +00:00
|
|
|
class load_template_form extends \moodleform {
|
2013-05-03 10:51:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form definition.
|
|
|
|
*/
|
2013-07-23 06:44:11 +00:00
|
|
|
public function definition() {
|
2016-02-16 09:03:34 +00:00
|
|
|
global $DB;
|
|
|
|
|
2013-05-03 10:51:41 +00:00
|
|
|
$mform =& $this->_form;
|
|
|
|
|
2016-08-25 10:44:52 +00:00
|
|
|
// Get the context.
|
|
|
|
$context = $this->_customdata['context'];
|
2021-08-03 08:28:39 +00:00
|
|
|
$syscontext = \context_system::instance();
|
2016-08-25 10:44:52 +00:00
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
$mform->addElement('header', 'loadtemplateheader', get_string('loadtemplate', 'htmlcert'));
|
2013-05-03 10:51:41 +00:00
|
|
|
|
2016-08-25 10:44:52 +00:00
|
|
|
// Display a link to the manage templates page.
|
2021-11-24 07:29:43 +00:00
|
|
|
if ($context->contextlevel != CONTEXT_SYSTEM && has_capability('mod/htmlcert:manage', $syscontext)) {
|
|
|
|
$link = \html_writer::link(new \moodle_url('/mod/htmlcert/manage_templates.php'),
|
|
|
|
get_string('managetemplates', 'htmlcert'));
|
2016-08-25 10:44:52 +00:00
|
|
|
$mform->addElement('static', 'managetemplates', '', $link);
|
|
|
|
}
|
|
|
|
|
2021-11-24 07:29:43 +00:00
|
|
|
$arrtemplates = $DB->get_records_menu('htmlcert_templates', ['contextid' => $syscontext->id], 'name ASC', 'id, name');
|
2021-08-03 08:28:39 +00:00
|
|
|
if ($arrtemplates) {
|
|
|
|
$templates = [];
|
|
|
|
foreach ($arrtemplates as $key => $template) {
|
2021-06-29 21:10:52 +00:00
|
|
|
$templates[$key] = format_string($template, true, ['context' => $context]);
|
|
|
|
}
|
2016-08-25 10:44:52 +00:00
|
|
|
$group = array();
|
|
|
|
$group[] = $mform->createElement('select', 'ltid', '', $templates);
|
2021-11-24 07:29:43 +00:00
|
|
|
$group[] = $mform->createElement('submit', 'loadtemplatesubmit', get_string('load', 'htmlcert'));
|
2016-08-25 10:44:52 +00:00
|
|
|
$mform->addElement('group', 'loadtemplategroup', '', $group, '', false);
|
|
|
|
$mform->setType('ltid', PARAM_INT);
|
|
|
|
} else {
|
2021-11-24 07:29:43 +00:00
|
|
|
$msg = \html_writer::tag('div', get_string('notemplates', 'htmlcert'), array('class' => 'alert'));
|
2016-08-25 10:44:52 +00:00
|
|
|
$mform->addElement('static', 'notemplates', '', $msg);
|
|
|
|
}
|
2013-05-03 10:51:41 +00:00
|
|
|
}
|
|
|
|
}
|