1
1
Fork 0

Merge pull request #3076 from Hypolite/issue/#3039-boot-doc-include

Normalize App parameter declaration (doc-include folders, boot)
This commit is contained in:
Michael Vogel 2017-01-11 09:01:48 +01:00 committed by GitHub
commit 3c51820515
20 changed files with 144 additions and 144 deletions

View file

@ -372,7 +372,7 @@ function populate_acl($user = null, $show_jotnets = false) {
}
function construct_acl_data(&$a, $user) {
function construct_acl_data(App $a, $user) {
// Get group and contact information for html ACL selector
$acl_data = acl_lookup($a, 'html');
@ -404,7 +404,7 @@ function construct_acl_data(&$a, $user) {
}
function acl_lookup(&$a, $out_type = 'json') {
function acl_lookup(App $a, $out_type = 'json') {
if (!local_user()) {
return '';
@ -687,11 +687,11 @@ function acl_lookup(&$a, $out_type = 'json') {
}
/**
* @brief Searching for global contacts for autocompletion
*
*
* @param App $a
* @return array with the search results
*/
function navbar_complete(App &$a) {
function navbar_complete(App $a) {
// logger('navbar_complete');