-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanagetranslations.php
executable file
·100 lines (79 loc) · 3.16 KB
/
managetranslations.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?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/>.
/**
* @package filter_translations
* @author Andrew Hancox <[email protected]>
* @author Open Source Learning <[email protected]>
* @link https://opensourcelearning.co.uk
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @copyright 2021, Andrew Hancox
*/
use filter_translations\managetranslations_filterform;
use filter_translations\managetranslations_table;
require_once(dirname(__FILE__) . '/../../config.php');
$rawtext = optional_param('rawtext', '', PARAM_TEXT);
$substitutetext = optional_param('substitutetext', '', PARAM_TEXT);
$targetlanguage = optional_param('targetlanguage', current_language(), PARAM_TEXT);
$hash = optional_param('hash', '', PARAM_TEXT);
$usermodified = optional_param('usermodified', -1, PARAM_INT);
$download = optional_param('download', '', PARAM_ALPHA);
$context = context_system::instance();
require_login();
require_capability('filter/translations:edittranslations', $context);
$PAGE->set_context($context);
$title = get_string('managetranslations', 'filter_translations');
$baseurl = new moodle_url('/filter/translations/managetranslations.php');
$form = new managetranslations_filterform();
$formdata = $form->get_data();
if ($formdata) {
$urlparams = [
'rawtext' => $rawtext,
'substitutetext' => $substitutetext,
'targetlanguage' => $targetlanguage,
'hash' => $hash,
'usermodified' => $usermodified,
];
$baseurl->params($urlparams);
redirect($baseurl);
}
$data = new stdClass();
$data->rawtext = $rawtext;
$data->substitutetext = $substitutetext;
$data->targetlanguage = $targetlanguage;
$data->hash = $hash;
if ($usermodified > 0) {
$data->usermodified = $usermodified;
}
$data->tsort = optional_param('tsort', 'id', PARAM_ALPHA);
$form->set_data($data);
$baseurl->params((array)$data);
$baseurl->param('page', optional_param('page', '', PARAM_INT));
$PAGE->set_url($baseurl);
$table = new managetranslations_table($data, 'translationsname', $download);
$table->define_baseurl($baseurl);
if ($download) {
$table->download($download);
} else {
// Only print headers if not asked to download data.
$PAGE->set_title($title);
$PAGE->set_heading($title);
echo $OUTPUT->header();
echo $form->render();
$table->out(100, true);
echo $OUTPUT->single_button(new moodle_url('/filter/translations/edittranslation.php', ['returnurl' => $PAGE->url]),
get_string('createtranslation', 'filter_translations'));
echo $OUTPUT->footer();
}