]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added filler text to popular page for when it's empty, encouraging user to add favori...
authorRobin Millette <millette@controlyourself.ca>
Fri, 3 Apr 2009 20:35:18 +0000 (20:35 +0000)
committerRobin Millette <millette@controlyourself.ca>
Fri, 3 Apr 2009 20:35:18 +0000 (20:35 +0000)
actions/favorited.php

index 231b97897377b9026b6104fb904bd5f211830d08..20a354674f4185cee36c7d18e7198691e914c442 100644 (file)
@@ -143,6 +143,25 @@ class FavoritedAction extends Action
         $this->elementStart('div', 'instructions');
         $this->raw($output);
         $this->elementEnd('div');
+
+        $favorite = new Fave;
+
+        if ($favorite->count()) {
+            return;
+        }
+
+        $message = _('Favorite notices appear on this page but noone has favorited one yet.') . ' ';
+
+        if (common_logged_in()) {
+            $message .= _('Be the first to add a notice to your favorites by clicking the fave button next to any notice you like.');
+        }
+        else {
+            $message .= _('Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!');
+        }
+
+        $this->elementStart('div', 'blankfiller');
+        $this->raw(common_markup_to_html($message));
+        $this->elementEnd('div');
     }
 
     /**