add a hook call to acl_lookup()

This commit is contained in:
rabuzarus 2016-04-28 22:15:55 +02:00 committed by Roland Haeder
parent 134c491da0
commit ad20ef3dba
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 22 additions and 9 deletions

View File

@ -637,22 +637,35 @@ function acl_lookup(&$a, $out_type = 'json') {
$tot += count($unknow_contacts);
}
$results = array(
"tot" => $tot,
"start" => $start,
"count" => $count,
"groups" => $groups,
"contacts" => $contacts,
"items" => $items,
"type" => $type,
"search" => $search,
);
call_hooks('acl_lookup_end', $results);
if($out_type === 'html') {
$o = array(
'tot' => $tot,
'start' => $start,
'count' => $count,
'groups' => $groups,
'contacts' => $contacts,
'tot' => $results["tot"],
'start' => $results["start"],
'count' => $results["count"],
'groups' => $results["groups"],
'contacts' => $results["contacts"],
);
return $o;
}
$o = array(
'tot' => $tot,
'start' => $start,
'count' => $count,
'items' => $items,
'tot' => $results["tot"],
'start' => $results["start"],
'count' => $results["count"],
'items' => $results["items"],
);
echo json_encode($o);