diff options
author | Valentin Popov <info@valentineus.link> | 2018-03-12 23:25:55 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-03-12 23:25:55 +0300 |
commit | e8b59e7b0d0d6a7f2f586092372d0b0e07ee8b27 (patch) | |
tree | 3f4f03ed14f550417be2bb71b71080a6b338d812 | |
parent | 46b602226996a89f63d750e8b08e568680bf9d5d (diff) | |
download | local_webhooks-e8b59e7b0d0d6a7f2f586092372d0b0e07ee8b27.tar.xz local_webhooks-e8b59e7b0d0d6a7f2f586092372d0b0e07ee8b27.zip |
Update function 'local_webhooks_get_list_records'
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | lib.php | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -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; } /** |