]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
hide tagsub from stats
authorEvan Prodromou <evan@status.net>
Thu, 14 Apr 2011 21:03:32 +0000 (17:03 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 14 Apr 2011 21:03:32 +0000 (17:03 -0400)
plugins/TagSub/TagSubPlugin.php

index ba1cff6673a0fb7ea580453ed9beeec1f76bd7d2..59297a7fb34680871120b5c03c1ba664970c3622 100644 (file)
@@ -208,39 +208,6 @@ class TagSubPlugin extends Plugin
         return true;
     }
 
-    /**
-     * Add a count of mirrored feeds into a user's profile sidebar stats.
-     *
-     * @param Profile $profile
-     * @param array $stats
-     * @return boolean hook return value
-     */
-    function onProfileStats($profile, &$stats)
-    {
-        $cur = common_current_user();
-        if (!empty($cur) && $cur->id == $profile->id) {
-            $tagsub = new TagSub();
-            $tagsub->profile_id = $profile->id;
-            $entry = array(
-                'id' => 'tagsubs',
-                'label' => _m('Tag subscriptions'),
-                'link' => common_local_url('tagsubs', array('nickname' => $profile->nickname)),
-                'value' => $tagsub->count(),
-            );
-
-            $insertAt = count($stats);
-            foreach ($stats as $i => $row) {
-                if ($row['id'] == 'groups') {
-                    // Slip us in after them.
-                    $insertAt = $i + 1;
-                    break;
-                }
-            }
-            array_splice($stats, $insertAt, 0, array($entry));
-        }
-        return true;
-    }
-
     function onEndDefaultLocalNav($menu, $user)
     {
         $user = common_current_user();