X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fdirectory.php;h=4ce919b08bd40ae46ff8e5dd7143ab0fc70f706b;hb=09667dd82bbb9bb23a4ad8d86c1e9f3146665aa5;hp=9e004ab5d8b41c1e2a28bb630aa95618f7585998;hpb=0384e875a2416b39f9d5fe589048f6379e65a1a7;p=friendica.git diff --git a/mod/directory.php b/mod/directory.php index 9e004ab5d8..4ce919b08b 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -1,6 +1,9 @@ set_pager_itemspage(60); @@ -24,12 +27,10 @@ function directory_post(App $a) { } function directory_content(App $a) { - global $db; - require_once("mod/proxy.php"); - if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || - (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { + if((Config::get('system','block_public')) && (! local_user()) && (! remote_user()) || + (Config::get('system','block_local_dir')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; } @@ -43,7 +44,7 @@ function directory_content(App $a) { $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); $gdirpath = ''; - $dirurl = get_config('system','directory'); + $dirurl = Config::get('system','directory'); if(strlen($dirurl)) { $gdirpath = zrl($dirurl,true); } @@ -68,13 +69,13 @@ function directory_content(App $a) { (`profile`.`prv_keywords` LIKE '%$search%'))"; } - $publish = ((get_config('system','publish_all')) ? '' : " AND `publish` = 1 " ); + $publish = ((Config::get('system','publish_all')) ? '' : " AND `publish` = 1 " ); $r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra "); - if (dbm::is_result($r)) + if (DBM::is_result($r)) $a->set_pager_total($r[0]['total']); $order = " ORDER BY `name` ASC "; @@ -86,7 +87,7 @@ function directory_content(App $a) { LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid` WHERE `is-default` $publish AND `user`.`blocked` = 0 AND `contact`.`self` $sql_extra $order LIMIT ".$limit); - if (dbm::is_result($r)) { + if (DBM::is_result($r)) { if (in_array('small', $a->argv)) { $photo = 'thumb'; @@ -161,7 +162,7 @@ function directory_content(App $a) { 'img_hover' => $rr['name'], 'name' => $rr['name'], 'details' => $details, - 'account_type' => account_type($rr), + 'account_type' => Contact::getAccountType($rr), 'profile' => $profile, 'location' => $location_e, 'tags' => $rr['pub_keywords'],