aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib.php13
1 files 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;
}
/**