diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-04-08 00:15:05 +0000 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-04-08 00:15:05 +0000 |
commit | cc50031658f1665d60efdf8e3e5963e01584baf9 (patch) | |
tree | 9e3da19e17ad8b078c52d9da33b444ffaf0bc5ee | |
parent | a839daad2ecbf8430f518e8690cc509885973e82 (diff) |
added filler/guide text to user favorites.
-rw-r--r-- | actions/showfavorites.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/actions/showfavorites.php b/actions/showfavorites.php index d1c9283f0..035b899d2 100644 --- a/actions/showfavorites.php +++ b/actions/showfavorites.php @@ -162,6 +162,25 @@ class ShowfavoritesAction extends Action $nav->show(); } + function showEmptyListMessage() + { + if (common_logged_in()) { + $current_user = common_current_user(); + if ($this->user->id === $current_user->id) { + $message = _('You haven\'t chosen any favorite notices yet. Click the fave button on notices you like to bookmark them for later or shed a spotlight on them.'); + } else { + $message = sprintf(_('%s hasn\'t any notices to his favorites yet. Post something interesting they would add to their favorites :)'), $this->user->nickname); + } + } + else { + $message = sprintf(_('%s hasn\'t any notices to his favorites yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to thier favorites :)'), $this->user->nickname); + } + + $this->elementStart('div', 'guide'); + $this->raw(common_markup_to_html($message)); + $this->elementEnd('div'); + } + /** * Show the content * @@ -183,9 +202,17 @@ class ShowfavoritesAction extends Action $nl = new NoticeList($notice, $this); $cnt = $nl->show(); + if (0 == $cnt) { + $this->showemptyListMessage(); + } $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, $this->page, 'showfavorites', array('nickname' => $this->user->nickname)); } + + function showPageNotice() { + $this->element('p', 'instructions', _('This is a way to share what you like.')); + } } + |