X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fsuggest.php;h=a3da9a445e624e57549c02fa1cbe45dd29c41250;hb=4fb2547df87825c136d3ee080bc6960f5c957c65;hp=a6c4b6e5680219e549e0391048b0190c8d2b7634;hpb=479180ca8ea9fb02c8e90b0017d2f584aa199043;p=friendica.git diff --git a/mod/suggest.php b/mod/suggest.php index a6c4b6e568..a3da9a445e 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -1,9 +1,18 @@ local_user(), 'gcid' => $_GET['ignore'])); } } @@ -49,7 +55,7 @@ function suggest_init(App &$a) { -function suggest_content(App &$a) { +function suggest_content(App $a) { require_once("mod/proxy.php"); @@ -59,35 +65,33 @@ function suggest_content(App &$a) { return; } - $_SESSION['return_url'] = App::get_baseurl() . '/' . $a->cmd; + $_SESSION['return_url'] = System::baseUrl() . '/' . $a->cmd; $a->page['aside'] .= findpeople_widget(); $a->page['aside'] .= follow_widget(); - $r = suggestion_query(local_user()); + $r = GContact::suggestionQuery(local_user()); - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { $o .= t('No suggestions available. If this is a new site, please try again in 24 hours.'); return $o; } - require_once 'include/contact_selectors.php'; - foreach ($r as $rr) { - $connlnk = App::get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); - $ignlnk = App::get_baseurl() . '/suggest?ignore=' . $rr['id']; + $connlnk = System::baseUrl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); + $ignlnk = System::baseUrl() . '/suggest?ignore=' . $rr['id']; $photo_menu = array( - 'profile' => array(t("View Profile"), zrl($rr["url"])), + 'profile' => array(t("View Profile"), Profile::zrl($rr["url"])), 'follow' => array(t("Connect/Follow"), $connlnk), 'hide' => array(t('Ignore/Hide'), $ignlnk) ); - $contact_details = get_contact_details_by_url($rr["url"], local_user(), $rr); + $contact_details = Contact::getDetailsByURL($rr["url"], local_user(), $rr); $entry = array( - 'url' => zrl($rr['url']), + 'url' => Profile::zrl($rr['url']), 'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']), 'img_hover' => $rr['url'], 'name' => $contact_details['name'], @@ -95,14 +99,14 @@ function suggest_content(App &$a) { 'details' => $contact_details['location'], 'tags' => $contact_details['keywords'], 'about' => $contact_details['about'], - 'account_type' => account_type($contact_details), + 'account_type' => Contact::getAccountType($contact_details), 'ignlnk' => $ignlnk, 'ignid' => $rr['id'], 'conntxt' => t('Connect'), 'connlnk' => $connlnk, 'photo_menu' => $photo_menu, 'ignore' => t('Ignore/Hide'), - 'network' => network_to_name($rr['network'], $rr['url']), + 'network' => ContactSelector::networkToName($rr['network'], $rr['url']), 'id' => ++$id, ); $entries[] = $entry;