]> git.mxchange.org Git - friendica.git/commitdiff
Upate Contacts module file
authorJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 11 Oct 2018 21:41:27 +0000 (23:41 +0200)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 11 Oct 2018 21:41:27 +0000 (23:41 +0200)
src/Module/Contacts.php

index a017b55b1e41d492d6e4f6e84d5302e05a6bf427..34cc18c3e921575f4b534ff60a753143c3f3dc96 100644 (file)
@@ -25,9 +25,9 @@ use Friendica\Core\ACL;
 use Friendica\Module\Login;
 
 /**
- * 
+ *  Manages and show Contacts and their content
  *
- * 
+ *  @brief manages contacts
  */
 class Contacts extends BaseModule 
 {
@@ -184,7 +184,7 @@ class Contacts extends BaseModule
                }
 
                if ($a->argv[1] === "batch") {
-                       contacts_batch_actions($a);
+                       self::contacts_batch_actions($a);
                        return;
                }
 
@@ -805,7 +805,7 @@ class Contacts extends BaseModule
                        intval($_SESSION['uid'])
                );
                if (DBA::isResult($r)) {
-                       $a->set_pager_total($r[0]['total']);
+                       $a->setPagerTotal($r[0]['total']);
                        $total = $r[0]['total'];
                }
 
@@ -980,7 +980,7 @@ class Contacts extends BaseModule
                return $o;
        }
 
-       public static function contact_posts($a, $contact_id)
+       private static function contact_posts($a, $contact_id)
        {
                $contact = DBA::selectFirst('contact', ['uid', 'url', 'id'], ['id' => $contact_id]);
 
@@ -1134,5 +1134,4 @@ class Contacts extends BaseModule
                return $contact_actions;
        }
 
-
 }
\ No newline at end of file