better tag handling for profile lists

darcs-hash:20081124024434-84dde-e68f54652c2d0dfb802b1abcafba53556c1f057a.gz
This commit is contained in:
Evan Prodromou 2008-11-23 21:44:34 -05:00
parent 62330b0f3d
commit 64d2709bcd
1 changed files with 35 additions and 46 deletions

View File

@ -25,9 +25,11 @@ define('PROFILES_PER_PAGE', 20);
class ProfileList { class ProfileList {
var $profile = NULL; var $profile = NULL;
var $owner = NULL;
function __construct($profile) { function __construct($profile, $owner=NULL) {
$this->profile = $profile; $this->profile = $profile;
$this->owner = $owner;
} }
function show_list() { function show_list() {
@ -108,24 +110,40 @@ class ProfileList {
common_element_end('p'); common_element_end('p');
} }
$tags = Profile_tag::getTags($this->profile->id, $this->profile->id); # If we're on a list with an owner (subscriptions or subscribers)...
if ($this->owner) {
# Get tags
$tags = Profile_tag::getTags($this->owner->id, $this->profile->id);
if ($tags) { common_element_start('div', 'tags_user');
common_element_start('div', 'tags_self');
common_element_start('dl'); common_element_start('dl');
common_element('dt', null, _("User's tags:")); common_element_start('dt');
if ($user->id == $this->owner->id) {
common_element('a', array('href' => common_local_url('tagother',
array('id' => $this->profile->id))),
_('Tags'));
} else {
common_element(_('Tags'));
}
common_text(":");
common_element_end('dt');
common_element_start('dd'); common_element_start('dd');
if ($tags) {
common_element_start('ul', 'tags xoxo'); common_element_start('ul', 'tags xoxo');
foreach ($tags as $tag) { foreach ($tags as $tag) {
common_element_start('li'); common_element_start('li');
common_element('a', array('rel' => 'tag', common_element('a', array('rel' => "tag",
'href' => common_local_url('peopletag', 'href' => common_local_url($action,
array('tag' => $tag))), array('nickname' => $user->nickname,
'tag' => $tag))),
$tag); $tag);
common_element_end('li'); common_element_end('li');
} }
common_element_end('ul'); common_element_end('ul');
} else {
common_text(_('(none)'));
}
common_element_end('dd'); common_element_end('dd');
common_element_end('dl'); common_element_end('dl');
common_element_end('div'); common_element_end('div');
@ -142,35 +160,6 @@ class ProfileList {
} }
if ($action) {
$tags = Profile_tag::getTags($user->id, $this->profile->id);
if ($tags) {
common_element_start('div', 'tags_user');
common_element_start('dl');
common_element_start('dt');
common_element('a', array('href' => common_local_url('tagother',
array('id' => $this->profile->id))),
_('Your tags'));
common_text(":");
common_element_end('dt');
common_element_start('dd');
common_element_start('ul', 'tags xoxo');
foreach ($tags as $tag) {
common_element_start('li');
common_element('a', array('rel' => "tag",
'href' => common_local_url($action,
array('nickname' => $user->nickname,
'tag' => $tag))),
$tag);
common_element_end('li');
}
common_element_end('ul');
common_element_end('dd');
common_element_end('dl');
common_element_end('div');
}
}
} }
common_element_end('li'); common_element_end('li');