Featuerd profile list markup
Minor class change to (un)subscribeform.php
This commit is contained in:
parent
bf15df5b19
commit
77790ab768
|
@ -68,7 +68,7 @@ class ProfileList extends Widget
|
||||||
function show()
|
function show()
|
||||||
{
|
{
|
||||||
|
|
||||||
$this->out->elementStart('ul', array('id' => 'profiles', 'class' => 'profile_list'));
|
$this->out->elementStart('ul', 'profiles');
|
||||||
|
|
||||||
$cnt = 0;
|
$cnt = 0;
|
||||||
|
|
||||||
|
@ -87,51 +87,40 @@ class ProfileList extends Widget
|
||||||
|
|
||||||
function showProfile()
|
function showProfile()
|
||||||
{
|
{
|
||||||
$this->out->elementStart('li', array('class' => 'profile_single',
|
$this->out->elementStart('li', array('class' => 'profile vcard',
|
||||||
'id' => 'profile-' . $this->profile->id));
|
'id' => 'profile-' . $this->profile->id));
|
||||||
|
|
||||||
$user = common_current_user();
|
$user = common_current_user();
|
||||||
|
|
||||||
if ($user && $user->id != $this->profile->id) {
|
|
||||||
# XXX: special-case for user looking at own
|
$this->out->elementStart('div', array('id' => 'user_profile',
|
||||||
# subscriptions page
|
'class' => 'vcard'));
|
||||||
if ($user->isSubscribed($this->profile)) {
|
|
||||||
$usf = new UnsubscribeForm($this->out, $this->profile);
|
|
||||||
$usf->show();
|
|
||||||
} else {
|
|
||||||
$sf = new SubscribeForm($this->out, $this->profile);
|
|
||||||
$sf->show();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
|
$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),
|
$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,
|
'width' => AVATAR_STREAM_SIZE,
|
||||||
'height' => AVATAR_STREAM_SIZE,
|
'height' => AVATAR_STREAM_SIZE,
|
||||||
'alt' =>
|
'alt' =>
|
||||||
($this->profile->fullname) ? $this->profile->fullname :
|
($this->profile->fullname) ? $this->profile->fullname :
|
||||||
$this->profile->nickname));
|
$this->profile->nickname));
|
||||||
$this->out->elementEnd('a');
|
$this->out->elementStart('span', 'nickname');
|
||||||
$this->out->elementStart('p');
|
|
||||||
$this->out->elementStart('a', array('href' => $this->profile->profileurl,
|
|
||||||
'class' => 'nickname'));
|
|
||||||
$this->out->raw($this->highlight($this->profile->nickname));
|
$this->out->raw($this->highlight($this->profile->nickname));
|
||||||
|
$this->out->elementEnd('span');
|
||||||
$this->out->elementEnd('a');
|
$this->out->elementEnd('a');
|
||||||
|
|
||||||
if ($this->profile->fullname) {
|
if ($this->profile->fullname) {
|
||||||
$this->out->text(' | ');
|
$this->out->elementStart('span', 'fn');
|
||||||
$this->out->elementStart('span', 'fullname');
|
|
||||||
$this->out->raw($this->highlight($this->profile->fullname));
|
$this->out->raw($this->highlight($this->profile->fullname));
|
||||||
$this->out->elementEnd('span');
|
$this->out->elementEnd('span');
|
||||||
}
|
}
|
||||||
if ($this->profile->location) {
|
if ($this->profile->location) {
|
||||||
$this->out->text(' | ');
|
|
||||||
$this->out->elementStart('span', 'location');
|
$this->out->elementStart('span', 'location');
|
||||||
$this->out->raw($this->highlight($this->profile->location));
|
$this->out->raw($this->highlight($this->profile->location));
|
||||||
$this->out->elementEnd('span');
|
$this->out->elementEnd('span');
|
||||||
}
|
}
|
||||||
$this->out->elementEnd('p');
|
|
||||||
if ($this->profile->homepage) {
|
if ($this->profile->homepage) {
|
||||||
$this->out->elementStart('p', 'website');
|
$this->out->elementStart('p', 'website');
|
||||||
$this->out->elementStart('a', array('href' => $this->profile->homepage));
|
$this->out->elementStart('a', array('href' => $this->profile->homepage));
|
||||||
|
@ -188,6 +177,20 @@ class ProfileList extends Widget
|
||||||
$this->showOwnerControls($this->profile);
|
$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');
|
$this->out->elementEnd('li');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,19 @@ class SubscribeForm extends Form
|
||||||
return 'subscribe-' . $this->profile->id;
|
return 'subscribe-' . $this->profile->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* class of the form
|
||||||
|
*
|
||||||
|
* @return string of the form class
|
||||||
|
*/
|
||||||
|
|
||||||
|
function formClass()
|
||||||
|
{
|
||||||
|
return 'form_subscribe';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action of the form
|
* Action of the form
|
||||||
*
|
*
|
||||||
|
|
|
@ -80,6 +80,18 @@ class UnsubscribeForm extends Form
|
||||||
return 'unsubscribe-' . $this->profile->id;
|
return 'unsubscribe-' . $this->profile->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* class of the form
|
||||||
|
*
|
||||||
|
* @return string of the form class
|
||||||
|
*/
|
||||||
|
|
||||||
|
function formClass()
|
||||||
|
{
|
||||||
|
return 'form_unsubscribe';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Action of the form
|
* Action of the form
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user