From e8b59e7b0d0d6a7f2f586092372d0b0e07ee8b27 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 13 Mar 2018 00:25:55 +0400 Subject: Update function 'local_webhooks_get_list_records' Signed-off-by: Valentin Popov --- lib.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lib.php b/lib.php index 4b8b53d..6227e25 100644 --- a/lib.php +++ b/lib.php @@ -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; } /** -- cgit v1.2.3