]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Scrape now contains the number of contacts as well.
[friendica.git] / boot.php
index dd6bc6ac5d6f6c58b9fcb7ca28a0c7898dcde193..96b19add134b5a6f29f4d9f53a6047b4bc7b06e3 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1673,8 +1673,20 @@ if(! function_exists('profile_sidebar')) {
 
                if (!$block){
                        $contact_block = contact_block();
-               }
 
+                       if(is_array($a->profile) AND !$a->profile['hide-friends']) {
+                               $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0
+                                               AND `network` IN ('%s', '%s', '%s', '%s', '')",
+                                       intval($a->profile['uid']),
+                                       dbesc(NETWORK_DFRN),
+                                       dbesc(NETWORK_DIASPORA),
+                                       dbesc(NETWORK_OSTATUS),
+                                       dbesc(NETWORK_STATUSNET)
+                               );
+                               if(count($r))
+                                       $contacts = intval($r[0]['total']);
+                       }
+               }
 
                $p = array();
                foreach($profile as $k => $v) {
@@ -1699,6 +1711,7 @@ if(! function_exists('profile_sidebar')) {
                        '$homepage' => $homepage,
                        '$about' => $about,
                        '$network' =>  t('Network:'),
+                       '$contacts' => $contacts,
                        '$diaspora' => $diaspora,
                        '$contact_block' => $contact_block,
                ));