X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fping.php;h=2eb94576b375b47e13277a2f1cd1b7aa36795e9b;hb=a3960bda371c8083bad2ed422169282fed004d24;hp=30b5785aeca7d2df4e8524c56c67299e30775627;hpb=e43c7a44472ccdefd01104e8d919a72e10ec77c3;p=friendica.git diff --git a/mod/ping.php b/mod/ping.php index 30b5785aec..2eb94576b3 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -1,6 +1,8 @@ ' . $sql . ''; - $network_group = q($sql, intval(local_user()), intval(local_user())); - #echo ''; + if($network) { + if(intval(feature_enabled(local_user(),'groups'))) { + // Find out how unseen network posts are spread across groups + $groups_unseen = groups_count_unseen(); + } + + if(intval(feature_enabled(local_user(),'forumlist_widget'))) { + $forums_unseen = ForumManager::count_unseen_items(); + } } $intros1 = q("SELECT `intro`.`id`, `intro`.`datetime`, @@ -206,8 +205,8 @@ function ping_init(&$a) { $local_time = datetime_convert('UTC',date_default_timezone_get(),$n['date']); call_hooks('ping_xmlize', $n); - $notsxml = '%s'."\n"; - return sprintf ( $notsxml, + $notsxml = '%s'."\n"; + return sprintf ( $notsxml, intval($n['id']), xmlify($n['href']), xmlify($n['name']), xmlify($n['url']), xmlify($n['photo']), xmlify(relative_date($n['date'])), xmlify($n['seen']), xmlify(strtotime($local_time)), xmlify($n['message']) @@ -219,14 +218,25 @@ function ping_init(&$a) { $network $home\r\n"; if ($register!=0) echo "$register"; - if ( count($network_group) ) { + + if (count($groups_unseen)) { echo ''; - foreach ($network_group as $it) { - echo '' . $it['count'] . ""; - } + foreach ($groups_unseen as $it) + if ($it['count'] > 0) + echo ''.$it['count'].""; + echo ""; } + if (count($forums_unseen)) { + echo ''; + foreach ($forums_unseen as $it) + if ($it['count'] > 0) + echo ''.$it['count'].""; + + echo ""; + } + echo "$all_events $all_events_today $events @@ -381,7 +391,11 @@ function ping_get_notifications($uid) { // Replace the name with {0} but ensure to make that only once // The {0} is used later and prints the name in bold. - $pos = strpos($notification["message"],$notification['name']); + if ($notification['name'] != "") + $pos = strpos($notification["message"],$notification['name']); + else + $pos = false; + if ($pos !== false) $notification["message"] = substr_replace($notification["message"],"{0}",$pos,strlen($notification["name"]));