forked from Kylegoslin/moodle-block_cmanager
-
Notifications
You must be signed in to change notification settings - Fork 6
/
ajax_functions.php
executable file
·91 lines (74 loc) · 2.71 KB
/
ajax_functions.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
<?php
// ---------------------------------------------------------
// block_cmanager 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.
//
// block_cmanager 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/>.
//
// COURSE REQUEST MANAGER BLOCK FOR MOODLE
// by Kyle Goslin & Daniel McSweeney
// Copyright 2012-2018 - Institute of Technology Blanchardstown.
// ---------------------------------------------------------
/**
* COURSE REQUEST MANAGER
*
* @package block_cmanager
* @copyright 2018 Kyle Goslin, Daniel McSweeney
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once("../../config.php");
global $CFG, $DB;
$type = required_param('type', PARAM_TEXT);
if ($type == 'del') {
$values = $_POST['values'];
foreach ($values as $id) {
if ($id != 'null') {
$DB->delete_records('block_cmanager_records', array('id'=>$id));
// Delete associated comments
$DB->delete_records('block_cmanager_comments', array('instanceid'=>$id));
}
}
}
/**
* Update the values for emails.
*
*
*/
if ($type == 'updatefield') {
$post_value = required_param('value', PARAM_TEXT);
$post_id = required_param('id', PARAM_TEXT);
$selectQuery = "varname = '$post_id'";
$recordExists = $DB->record_exists_select('block_cmanager_config', $selectQuery);
if ($recordExists) {
// If the record exists
$current_record = $DB->get_record('block_cmanager_config', array('varname'=>$post_id));
$newrec = new stdClass();
$newrec->id = $current_record->id;
$newrec->varname = $post_id;
$newrec->value = $post_value;
$DB->update_record('block_cmanager_config', $newrec);
echo "updated";
} else {
$newrec = new stdClass();
$newrec->varname = $post_id;
$newrec->value = $post_value;
$DB->insert_record('block_cmanager_config', $newrec);
echo "inserted";
}
}
if ($type == 'updatecategory') {
$value = required_param('value', PARAM_TEXT);
$recId = required_param('recId', PARAM_TEXT);
$newrec = new stdClass();
$newrec->id = $recId;
$newrec->cate = $value;
$DB->update_record('block_cmanager_records', $newrec);
}