forked from andrewhancox/moodle-filter_translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagetranslationissues.php
106 lines (89 loc) · 3.36 KB
/
managetranslationissues.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
101
102
103
104
105
106
<?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\managetranslationissues_filterform;
use filter_translations\managetranslationissues_table;
require_once(dirname(__FILE__) . '/../../config.php');
$rawtext = optional_param('rawtext', '', PARAM_TEXT);
$substitutetext = optional_param('substitutetext', '', PARAM_TEXT);
$issue = optional_param('issue', '', PARAM_INT);
$filterurl = optional_param('url', '', PARAM_URL);
$contextid = optional_param('contextid', 0, PARAM_INT);
$targetlanguage = optional_param('targetlanguage', current_language(), PARAM_TEXT);
$hash = optional_param('hash', '', PARAM_TEXT);
$download = optional_param('download', '', PARAM_ALPHA);
if (empty($contextid)) {
$context = context_system::instance();
} else {
list($context, $course, $cm) = get_context_info_array($contextid);
}
require_capability('filter/translations:edittranslations', $context);
$PAGE->set_context($context);
if (isset($cm)) {
$PAGE->set_cm($cm, $course);
} else if (isset($course)) {
$PAGE->set_course($course);
}
$title = get_string('managetranslationissues', 'filter_translations');
$baseurl = new moodle_url('/filter/translations/managetranslationissues.php');
$form = new managetranslationissues_filterform();
$formdata = $form->get_data();
if ($formdata) {
$urlparams = array(
'rawtext' => $rawtext,
'substitutetext' => $substitutetext,
'issue' => $issue,
'url' => $filterurl,
'contextid' => $contextid,
'targetlanguage' => $targetlanguage,
'hash' => $hash,
);
$baseurl->params($urlparams);
redirect($baseurl);
}
$data = new stdClass();
$data->rawtext = $rawtext;
$data->substitutetext = $substitutetext;
$data->issue = $issue;
$data->url = $filterurl;
$data->contextid = $contextid;
$data->targetlanguage = $targetlanguage;
$data->hash = $hash;
$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 managetranslationissues_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->footer();
}