forked from GibbonEdu/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_tt_ajax.php
62 lines (52 loc) · 2.13 KB
/
index_tt_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
<?php
/*
Gibbon: the flexible, open school platform
Founded by Ross Parker at ICHK Secondary. Built by Ross Parker, Sandra Kuipers and the Gibbon community (https://gibbonedu.org/about/)
Copyright © 2010, Gibbon Foundation
Gibbon™, Gibbon Education Ltd. (Hong Kong)
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
use Gibbon\Services\Format;
//Gibbon system-wide includes
include './gibbon.php';
//Set up for i18n via gettext
if (!empty($session->get('i18n')['code']) && function_exists('gettext')) {
if ($session->get('i18n')['code'] != null) {
putenv('LC_ALL='.$session->get('i18n')['code']);
setlocale(LC_ALL, $session->get('i18n')['code']);
bindtextdomain('gibbon', './i18n');
textdomain('gibbon');
bind_textdomain_codeset('gibbon', 'UTF-8');
}
}
//Setup variables
$output = '';
$id = $_POST['gibbonTTID'] ?? '';
if (isActionAccessible($guid, $connection2, '/modules/Timetable/tt.php') == false) {
//Acess denied
$page->addError(__('Your request failed because you do not have access to this action.'));
} else {
include './modules/Timetable/moduleFunctions.php';
$ttDate = '';
if (!empty($_POST['ttDate'])) {
$ttDate = Format::timestamp(Format::dateConvert($_POST['ttDate']));
}
$tt = renderTT($guid, $connection2, $session->get('gibbonPersonID'), $id, false, $ttDate, '', '', 'trim');
if ($tt != false) {
$output .= $tt;
} else {
$output .= "<div class='error'>";
$output .= __('There is no information for the date specified.');
$output .= '</div>';
}
}
echo $output;