summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-19 21:56:55 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-19 21:56:55 +0000
commit77790ab7687c6ef6c86f502c27158ef71cdffa76 (patch)
tree40fb6c339b1d874b3b9346a3571201e26aeadf32 /lib
parentbf15df5b1951bc5dc327ec55d578b2ccdaf858a9 (diff)
Featuerd profile list markup
Minor class change to (un)subscribeform.php
Diffstat (limited to 'lib')
-rw-r--r--lib/profilelist.php53
-rw-r--r--lib/subscribeform.php15
-rw-r--r--lib/unsubscribeform.php14
3 files changed, 55 insertions, 27 deletions
diff --git a/lib/profilelist.php b/lib/profilelist.php
index fdc71ab8d..24b357385 100644
--- a/lib/profilelist.php
+++ b/lib/profilelist.php
@@ -68,7 +68,7 @@ class ProfileList extends Widget
function show()
{
- $this->out->elementStart('ul', array('id' => 'profiles', 'class' => 'profile_list'));
+ $this->out->elementStart('ul', 'profiles');
$cnt = 0;
@@ -87,51 +87,40 @@ class ProfileList extends Widget
function showProfile()
{
- $this->out->elementStart('li', array('class' => 'profile_single',
- 'id' => 'profile-' . $this->profile->id));
+ $this->out->elementStart('li', array('class' => 'profile vcard',
+ 'id' => 'profile-' . $this->profile->id));
$user = common_current_user();
- if ($user && $user->id != $this->profile->id) {
- # XXX: special-case for user looking at own
- # subscriptions page
- if ($user->isSubscribed($this->profile)) {
- $usf = new UnsubscribeForm($this->out, $this->profile);
- $usf->show();
- } else {
- $sf = new SubscribeForm($this->out, $this->profile);
- $sf->show();
- }
- }
+
+ $this->out->elementStart('div', array('id' => 'user_profile',
+ 'class' => 'vcard'));
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
- $this->out->elementStart('a', array('href' => $this->profile->profileurl));
+ $this->out->elementStart('a', array('href' => $this->profile->profileurl,
+ 'class' => 'url'));
$this->out->element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
- 'class' => 'avatar stream',
+ 'class' => 'photo avatar',
'width' => AVATAR_STREAM_SIZE,
'height' => AVATAR_STREAM_SIZE,
'alt' =>
($this->profile->fullname) ? $this->profile->fullname :
$this->profile->nickname));
- $this->out->elementEnd('a');
- $this->out->elementStart('p');
- $this->out->elementStart('a', array('href' => $this->profile->profileurl,
- 'class' => 'nickname'));
+ $this->out->elementStart('span', 'nickname');
$this->out->raw($this->highlight($this->profile->nickname));
+ $this->out->elementEnd('span');
$this->out->elementEnd('a');
+
if ($this->profile->fullname) {
- $this->out->text(' | ');
- $this->out->elementStart('span', 'fullname');
+ $this->out->elementStart('span', 'fn');
$this->out->raw($this->highlight($this->profile->fullname));
$this->out->elementEnd('span');
}
if ($this->profile->location) {
- $this->out->text(' | ');
$this->out->elementStart('span', 'location');
$this->out->raw($this->highlight($this->profile->location));
$this->out->elementEnd('span');
}
- $this->out->elementEnd('p');
if ($this->profile->homepage) {
$this->out->elementStart('p', 'website');
$this->out->elementStart('a', array('href' => $this->profile->homepage));
@@ -188,6 +177,20 @@ class ProfileList extends Widget
$this->showOwnerControls($this->profile);
}
+ $this->out->elementEnd('div');
+
+ if ($user && $user->id != $this->profile->id) {
+ # XXX: special-case for user looking at own
+ # subscriptions page
+ if ($user->isSubscribed($this->profile)) {
+ $usf = new UnsubscribeForm($this->out, $this->profile);
+ $usf->show();
+ } else {
+ $sf = new SubscribeForm($this->out, $this->profile);
+ $sf->show();
+ }
+ }
+
$this->out->elementEnd('li');
}
@@ -202,4 +205,4 @@ class ProfileList extends Widget
{
return htmlspecialchars($text);
}
-} \ No newline at end of file
+}
diff --git a/lib/subscribeform.php b/lib/subscribeform.php
index 996729a28..8b69efd1a 100644
--- a/lib/subscribeform.php
+++ b/lib/subscribeform.php
@@ -80,6 +80,19 @@ class SubscribeForm extends Form
return 'subscribe-' . $this->profile->id;
}
+
+ /**
+ * class of the form
+ *
+ * @return string of the form class
+ */
+
+ function formClass()
+ {
+ return 'form_subscribe';
+ }
+
+
/**
* Action of the form
*
@@ -114,4 +127,4 @@ class SubscribeForm extends Form
{
$this->out->submit('submit', _('Subscribe'));
}
-} \ No newline at end of file
+}
diff --git a/lib/unsubscribeform.php b/lib/unsubscribeform.php
index a724bb312..b222f0e54 100644
--- a/lib/unsubscribeform.php
+++ b/lib/unsubscribeform.php
@@ -80,6 +80,18 @@ class UnsubscribeForm extends Form
return 'unsubscribe-' . $this->profile->id;
}
+
+ /**
+ * class of the form
+ *
+ * @return string of the form class
+ */
+
+ function formClass()
+ {
+ return 'form_unsubscribe';
+ }
+
/**
* Action of the form
*
@@ -114,4 +126,4 @@ class UnsubscribeForm extends Form
{
$this->out->submit('submit', _('Unsubscribe'));
}
-} \ No newline at end of file
+}