]> git.mxchange.org Git - friendica.git/blobdiff - mod/suggest.php
Add Contact Object
[friendica.git] / mod / suggest.php
index dd24fc0a2a3a01a120557f7bf659d638c30440cf..cb2b3f9c44f0c834b6a8df5720b4009aac1ec376 100644 (file)
@@ -1,7 +1,14 @@
 <?php
+/**
+ * @file mod/suggest.php
+ */
+use Friendica\App;
+use Friendica\Core\System;
+use Friendica\Database\DBM;
+use Friendica\Model\GlobalContact;
+use Friendica\Object\Contact;
 
-require_once('include/socgraph.php');
-require_once('include/contact_widgets.php');
+require_once 'include/contact_widgets.php';
 
 function suggest_init(App $a) {
        if (! local_user()) {
@@ -36,10 +43,7 @@ function suggest_init(App $a) {
                }
                // Now check how the user responded to the confirmation query
                if (!$_REQUEST['canceled']) {
-                       q("INSERT INTO `gcign` ( `uid`, `gcid` ) VALUES ( %d, %d ) ",
-                               intval(local_user()),
-                               intval($_GET['ignore'])
-                       );
+                       dba::insert('gcign', array('uid' => local_user(), 'gcid' => $_GET['ignore']));
                }
        }
 
@@ -59,15 +63,15 @@ 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 = GlobalContact::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;
        }
@@ -76,8 +80,8 @@ function suggest_content(App $a) {
 
        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"])),
                        'follow' => array(t("Connect/Follow"), $connlnk),