summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-20 04:57:15 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-20 04:57:15 +0000
commitec1249d3ad05b20e06b94dd4052d299eb8c1c17d (patch)
tree42bbfd78c3e0fe2465be172a712518bc1b865e0f /actions/showstream.php
parent8e8c5805862344b82f2b1b0a30cb376ec5d91160 (diff)
User statistics markup
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php28
1 files changed, 18 insertions, 10 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index 39c74f0ee..ead8521e6 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -455,31 +455,39 @@ class ShowstreamAction extends Action
$notices->profile_id = $this->profile->id;
$notice_count = (int) $notices->count();
- $this->elementStart('div', array('id' => 'statistics',
+ $this->elementStart('div', array('id' => 'user_statistics',
'class' => 'section'));
- $this->element('h2', 'statistics', _('Statistics'));
+ $this->element('h2', null, _('Statistics'));
// Other stats...?
- $this->elementStart('dl', 'statistics');
- $this->element('dt', 'membersince', _('Member since'));
- $this->element('dd', 'membersince', date('j M Y',
+ $this->elementStart('dl', 'user_member-since');
+ $this->element('dt', null, _('Member since'));
+ $this->element('dd', null, date('j M Y',
strtotime($this->profile->created)));
+ $this->elementEnd('dl');
- $this->elementStart('dt', 'subscriptions');
+ $this->elementStart('dl', 'user_subscriptions');
+ $this->elementStart('dt');
$this->element('a', array('href' => common_local_url('subscriptions',
array('nickname' => $this->profile->nickname))),
_('Subscriptions'));
$this->elementEnd('dt');
- $this->element('dd', 'subscriptions', (is_int($subs_count)) ? $subs_count : '0');
- $this->elementStart('dt', 'subscribers');
+ $this->element('dd', null, (is_int($subs_count)) ? $subs_count : '0');
+ $this->elementEnd('dl');
+
+ $this->elementStart('dl', 'user_subscribers');
+ $this->elementStart('dt');
$this->element('a', array('href' => common_local_url('subscribers',
array('nickname' => $this->profile->nickname))),
_('Subscribers'));
$this->elementEnd('dt');
$this->element('dd', 'subscribers', (is_int($subbed_count)) ? $subbed_count : '0');
- $this->element('dt', 'notices', _('Notices'));
- $this->element('dd', 'notices', (is_int($notice_count)) ? $notice_count : '0');
+ $this->elementEnd('dl');
+
+ $this->elementStart('dl', 'user_notices');
+ $this->element('dt', null, _('Notices'));
+ $this->element('dd', null, (is_int($notice_count)) ? $notice_count : '0');
$this->elementEnd('dl');
$this->elementEnd('div');