MDL-70595 core: Updated security.txt expiry
[moodle.git] / calendar / classes / export_form.php
blob18e637bec8d53e402dc949f68d35b301556404f0
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * The mform for exporting calendar events
20 * @package core_calendar
21 * @copyright 2014 Brian Barnes
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 // Always include formslib.
26 if (!defined('MOODLE_INTERNAL')) {
27 die('Direct access to this script is forbidden.'); // It must be included from a Moodle page.
30 require_once($CFG->dirroot.'/lib/formslib.php');
32 /**
33 * The mform class for creating and editing a calendar
35 * @copyright 2014 Brian Barnes
36 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
38 class core_calendar_export_form extends moodleform {
40 /**
41 * The export form definition
42 * @throws coding_exception
44 public function definition() {
45 global $CFG, $OUTPUT;
46 $mform = $this->_form;
48 $mform->addElement('html', $OUTPUT->doc_link('calendar/export', get_string('exporthelp', 'calendar'), true));
50 $export = array();
51 $export[] = $mform->createElement('radio', 'exportevents', '', get_string('eventsall', 'calendar'), 'all');
52 $export[] = $mform->createElement('radio', 'exportevents', '', get_string('eventsrelatedtocategories', 'calendar'), 'categories');
53 $export[] = $mform->createElement('radio', 'exportevents', '', get_string('eventsrelatedtocourses', 'calendar'), 'courses');
54 $export[] = $mform->createElement('radio', 'exportevents', '', get_string('eventsrelatedtogroups', 'calendar'), 'groups');
55 $export[] = $mform->createElement('radio', 'exportevents', '', get_string('eventspersonal', 'calendar'), 'user');
57 $mform->addGroup($export, 'events', get_string('eventstoexport', 'calendar'), '<br/>');
58 $mform->addGroupRule('events', get_string('required'), 'required');
59 $mform->setDefault('events', 'all');
61 $range = array();
62 if ($this->_customdata['allowthisweek']) {
63 $range[] = $mform->createElement('radio', 'timeperiod', '', get_string('weekthis', 'calendar'), 'weeknow');
65 if ($this->_customdata['allownextweek']) {
66 $range[] = $mform->createElement('radio', 'timeperiod', '', get_string('weeknext', 'calendar'), 'weeknext');
68 $range[] = $mform->createElement('radio', 'timeperiod', '', get_string('monththis', 'calendar'), 'monthnow');
69 if ($this->_customdata['allownextmonth']) {
70 $range[] = $mform->createElement('radio', 'timeperiod', '', get_string('monthnext', 'calendar'), 'monthnext');
72 $range[] = $mform->createElement('radio', 'timeperiod', '', get_string('recentupcoming', 'calendar'), 'recentupcoming');
74 if ($CFG->calendar_customexport) {
75 $a = new stdClass();
76 $now = time();
77 $time = $now - $CFG->calendar_exportlookback * DAYSECS;
78 $a->timestart = userdate($time, get_string('strftimedatefullshort', 'langconfig'));
79 $time = $now + $CFG->calendar_exportlookahead * DAYSECS;
80 $a->timeend = userdate($time, get_string('strftimedatefullshort', 'langconfig'));
82 $range[] = $mform->createElement('radio', 'timeperiod', '', get_string('customexport', 'calendar', $a), 'custom');
85 $mform->addGroup($range, 'period', get_string('timeperiod', 'calendar'), '<br/>');
86 $mform->addGroupRule('period', get_string('required'), 'required');
87 $mform->setDefault('period', 'recentupcoming');
89 $buttons = array();
90 $buttons[] = $mform->createElement('submit', 'generateurl', get_string('generateurlbutton', 'calendar'));
91 $buttons[] = $mform->createElement('submit', 'export', get_string('exportbutton', 'calendar'));
92 $mform->addGroup($buttons);