-
Notifications
You must be signed in to change notification settings - Fork 1
/
ajax.php
84 lines (82 loc) · 2.69 KB
/
ajax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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/>.
/**
* Timetable
*
* Footer renderable.
*
* @package block_timetable
* @copyright 2021 bdecent gmbh <https://bdecent.de>
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
*
*/
define('AJAX_SCRIPT', true);
require_once(dirname(__FILE__) . '/../../config.php');
require_once(dirname(__FILE__) . '/../../calendar/lib.php');
use block_timetable\output\eventlist;
require_login();
global $DB , $CFG, $COURSE;
require_once( $CFG->libdir.'/blocklib.php' );
$PAGE->set_context(context_system::instance());
$page = optional_param('block_timetable_page', 1, PARAM_INT);
$time = optional_param('time', strtotime('today midnight'), PARAM_INT);
$courseid = optional_param('courseid', $COURSE->id, PARAM_INT);
$instanceid = required_param('instanceid', PARAM_INT);
$ulayout = required_param('ulayout', PARAM_RAW);
$context = context_block::instance($instanceid);
$instance = $DB->get_record_sql('select * from {block_instances} where id=?', array($instanceid));
$config = unserialize(base64_decode($instance->configdata));
if ( $ulayout == "nextxday" ) {
if (isloggedin()) {
$maxevents = get_user_preferences('calendar_maxevents', 10);
$lookahead = get_user_preferences('calendar_lookahead', 6);
} else {
$maxevents = 10;
$lookahead = 6;
}
} else {
$lookahead = true;
}
$list = '';
$end = false;
$limitnum = $config->limit;
$limitfrom = $page > 1 ? ($page * $limitnum) - $limitnum : 0;
$lastdate = 0;
$lastid = 0;
$renderer = $PAGE->get_renderer('block_timetable');
if (empty($config->view)) {
$config->view = 'vertical';
}
$blockview = $config->view;
$events = new eventlist(
$lookahead,
$courseid,
$lastid,
$lastdate,
$limitfrom,
$limitnum,
$page,
$blockview,
$time,
$instanceid,
$ulayout
);
$templatecontext = $events->export_for_template($renderer);
$events = $templatecontext['events'];
if ($events) {
$list .= $renderer->render_from_template('block_timetable/events', $templatecontext);
}
echo json_encode(['output' => $list]);