-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocallib.php
242 lines (205 loc) · 7.32 KB
/
locallib.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?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 local_cohortpro
* @copyright 2019, YuriyYurinskiy <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
function local_cohortpro_get_cohort($id) {
global $DB;
return $DB->get_record('cohort', ['id' => $id], '*', MUST_EXIST);
}
/**
* Возвращает количество участников глобальной группы
*
* @param $cohort
* @param int $method
* @return mixed
*/
function local_cohortpro_get_count_members($cohort, $method = 0) {
global $DB;
switch ($method) {
case 1:
$sql = 'SELECT COUNT(1)
FROM {cohort_members} cm
JOIN {user} u ON (u.id = cm.userid AND u.suspended = 0)
WHERE cm.cohortid = :cohortid';
$params = [
'cohortid' => $cohort->id
];
return $DB->count_records_sql($sql, $params);
case 2:
$sql = 'SELECT COUNT(1)
FROM {cohort_members} cm
JOIN {user} u ON (u.id = cm.userid AND u.suspended = 1)
WHERE cm.cohortid = :cohortid';
$params = [
'cohortid' => $cohort->id
];
return $DB->count_records_sql($sql, $params);
default:
return $DB->count_records('cohort_members', ['cohortid' => $cohort->id]);
}
}
/**
* Возвращает массив участников глобальной группы
*
* @param $cohort
* @return mixed
*/
function local_cohortpro_get_members($cohort, $page = 0, $perpage = 25) {
global $DB;
$fields = "SELECT u.*";
$countfields = 'SELECT COUNT(1)';
$sql = " FROM {user} u
JOIN {cohort_members} cm ON (cm.userid = u.id AND cm.cohortid = :cohortid)";
$params = [
'cohortid' => $cohort->id
];
$order = ' ORDER BY u.lastname';
return [
'totalmembers' => $DB->count_records_sql($countfields . $sql, $params),
'members' => $DB->get_records_sql($fields . $sql . $order, $params, $page * $perpage, $perpage)
];
}
/**
* Возвращает количество курсов глобальной группы
*
* @param $cohort
* @return mixed
*/
function local_cohortpro_get_count_courses($cohort) {
global $DB;
$sql = 'SELECT COUNT(DISTINCT e.courseid)
FROM {enrol} e
WHERE e.enrol = ? AND e.customint1 = ?';
return $DB->count_records_sql($sql, [
'cohort',
$cohort->id
]);
}
/**
* Возвращает массив курсов глобальной групп
*
* @param $cohort
* @param int $page
* @param int $perpage
* @return mixed
*/
function local_cohortpro_get_courses($cohort, $page = 0, $perpage = 25) {
global $DB;
$fields = "SELECT c.*";
$countfields = 'SELECT COUNT(1)';
$sql = " FROM {course} c
JOIN {enrol} e ON (e.courseid = c.id AND e.enrol = 'cohort' AND e.customint1 = :cohortid)";
$params = [
'cohortid' => $cohort->id
];
$order = ' ORDER BY c.fullname';
return [
'totalcourses' => $DB->count_records_sql($countfields . $sql, $params),
'courses' => $DB->get_records_sql($fields . $sql . $order, $params, $page * $perpage, $perpage)
];
}
/**
* @return array
*/
function local_cohortpro_get_all_empty_cohorts($page = 0, $perpage = 25, $search = '', $method = 0) {
global $DB;
$fields = "SELECT c.*, " . context_helper::get_preload_record_columns_sql('ctx');
$countfields = "SELECT COUNT(*)";
$sql = " FROM {cohort} c
JOIN {context} ctx ON ctx.id = c.contextid";
// Защита от перебора
if ($method > 2) {
$method = 0;
}
switch ($method) {
case 0:
$wheresql = '';
break;
case 1:
$wheresql = ' WHERE (SELECT COUNT(1) FROM {cohort_members} cm WHERE cm.cohortid = c.id) = 0 ';
break;
case 2:
$wheresql =
' WHERE (SELECT COUNT(1) FROM {cohort_members} cm JOIN {user} u ON (u.id = cm.userid AND u.suspended = 0) WHERE cm.cohortid = c.id) = 0 ';
break;
default:
$wheresql = '';
}
$params = array();
if ($excludedcontexts = cohort_get_invisible_contexts()) {
list($excludedsql, $excludedparams) = $DB->get_in_or_equal($excludedcontexts, SQL_PARAMS_NAMED, 'excl', false);
$wheresql .= ($wheresql ? ' AND ' : ' WHERE ') . ' c.contextid ' . $excludedsql;
$params = array_merge($params, $excludedparams);
}
$totalcohorts = $allcohorts = $DB->count_records_sql($countfields . $sql . $wheresql, $params);
if (!empty($search)) {
list($searchcondition, $searchparams) = cohort_get_search_query($search, 'c');
$wheresql .= ($wheresql ? ' AND ' : ' WHERE ') . $searchcondition;
$params = array_merge($params, $searchparams);
$totalcohorts = $DB->count_records_sql($countfields . $sql . $wheresql, $params);
}
$order = " ORDER BY c.name ASC, c.idnumber ASC";
$cohorts = $DB->get_records_sql($fields . $sql . $wheresql . $order, $params, $page * $perpage, $perpage);
// Preload used contexts, they will be used to check view/manage/assign capabilities and display categories names.
foreach (array_keys($cohorts) as $key) {
context_helper::preload_from_record($cohorts[$key]);
}
return array(
'totalcohorts' => $totalcohorts,
'cohorts' => $cohorts,
'allcohorts' => $allcohorts
);
}
/**
* Возвращает код ссылки с информацией и иконкой
*
* @param moodle_url $url
* @param string $icon
* @param string $text
* @param string $title
* @return mixed
*/
function local_cohortpro_cell_link($url, $icon, $text, $title) {
global $OUTPUT;
return html_writer::tag('span',
html_writer::link(
$url,
$text . ' ' . html_writer::tag('span',
$OUTPUT->pix_icon($icon, $title),
['class' => 'quickediticon visibleifjs']
),
[
'title' => $title,
'class' => 'quickeditlink'
]
),
['class' => 'inplaceeditable inplaceeditable-text']
);
}
/**
* Получение объекта глобальной группы по идентификатору
*
* @param int $id
* @return mixed
*/
function local_cohortpro_get_by_id($id) {
global $DB;
$cohort = $DB->get_record('cohort', array('id'=>$id), '*', MUST_EXIST);
return $cohort;
}