-
-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathajax.php
More file actions
69 lines (60 loc) · 2.24 KB
/
ajax.php
File metadata and controls
69 lines (60 loc) · 2.24 KB
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
<?php
// This file is part of the customcert module for 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/>.
/**
* Handles AJAX requests for the customcert module.
*
* @package mod_customcert
* @copyright 2013 Mark Nelson <markn@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use mod_customcert\template;
use mod_customcert\event\template_updated;
use mod_customcert\service\element_factory;
use mod_customcert\service\element_repository;
use mod_customcert\service\template_repository;
require_once(__DIR__ . '/../../config.php');
if (!defined('AJAX_SCRIPT')) {
define('AJAX_SCRIPT', true);
}
$tid = required_param('tid', PARAM_INT);
$values = required_param('values', PARAM_RAW);
$values = json_decode($values);
// Load the template.
$template = template::from_record((new template_repository())->get_by_id_or_fail($tid));
// Perform checks.
if ($cm = $template->get_cm()) {
$courseid = $cm->course;
require_login($courseid, false, $cm);
} else {
require_login();
}
// Make sure the user has the required capabilities.
$template->require_manage();
$factory = element_factory::build_with_defaults();
$elementrepo = new element_repository($factory);
// Loop through the data.
$contextid = $template->get_contextid();
foreach ($values as $value) {
// Round fractional positions to the nearest integer — the DB column is INT
// but the JS editor may emit sub-pixel values.
$elementrepo->update_position(
(int)$value->id,
(int)round((float)$value->posx),
(int)round((float)$value->posy),
$contextid
);
}
template_updated::create_from_template($template)->trigger();