Update function 'local_webhooks_get_list_records'

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-03-13 00:25:55 +04:00
parent 46b6022269
commit e8b59e7b0d
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

13
lib.php
View File

@ -95,21 +95,18 @@ function local_webhooks_get_record($serviceid) {
* @param number $limitfrom
* @param number $limitnum
* @param array $conditions
* @param string $sort
* @return array
*/
function local_webhooks_get_list_records($limitfrom = 0, $limitnum = 0, $conditions = array(), $sort = "id") {
function local_webhooks_get_list_records($limitfrom = 0, $limitnum = 0, $conditions = array()) {
global $DB;
$listrecords = $DB->get_records(LOCAL_WEBHOOKS_TABLE_SERVICES, $conditions, $sort, "*", $limitfrom, $limitnum);
$records = $DB->get_records(LOCAL_WEBHOOKS_TABLE_SERVICES, $conditions, "id", "*", $limitfrom, $limitnum);
foreach ($listrecords as $servicerecord) {
if (!empty($servicerecord->events)) {
$servicerecord->events = local_webhooks_deserialization_data($servicerecord->events);
}
foreach ($records as $record) {
$record->events = local_webhooks_get_list_events_for_service($record->id);
}
return $listrecords;
return $records;
}
/**