summaryrefslogtreecommitdiff
path: root/actions/publictagcloud.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-04-03 19:16:35 +0000
committerRobin Millette <millette@controlyourself.ca>2009-04-03 19:16:35 +0000
commit4d4e6ead9c98afeb43e5913b734eea9b5c783955 (patch)
tree55d35686ab02aaf539aeec5995b9a5a0fcacc00a /actions/publictagcloud.php
parent26194cd1d6dbd7ceb021b8e215e7a7ad7b29116f (diff)
added filler text to public tagcloud for when it's empty, encouraging user to post and/or register.
Diffstat (limited to 'actions/publictagcloud.php')
-rw-r--r--actions/publictagcloud.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/actions/publictagcloud.php b/actions/publictagcloud.php
index 6f5fc7541..5322372b2 100644
--- a/actions/publictagcloud.php
+++ b/actions/publictagcloud.php
@@ -62,6 +62,24 @@ class PublictagcloudAction extends Action
$this->element('p', 'instructions',
sprintf(_('These are most popular recent tags on %s '),
common_config('site', 'name')));
+
+ $tags = new Notice_tag();
+ if ($tags->count()) {
+ return;
+ }
+
+ $message = _('Noone has posted a notice with a [hashtag](%%doc.tags%%) yet.') . ' ';
+
+ if (common_logged_in()) {
+ $message .= _('Be the first to post one!');
+ }
+ else {
+ $message .= _('Why not [register an account](%%action.register%%) and be the first to post one!');
+ }
+
+ $this->elementStart('div', 'blankfiller');
+ $this->raw(common_markup_to_html($message));
+ $this->elementEnd('div');
}
function showLocalNav()