summaryrefslogtreecommitdiff
path: root/lib/profilelist.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-07 22:31:32 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-07 22:31:32 -0500
commit71b682453d558de25592bbf9633fc214e94b6067 (patch)
treeca5d47d2f06d3c87f9d947adf00353b9d9fa60b8 /lib/profilelist.php
parent5477532ea3e8323447dbe32a74749c3402ea303a (diff)
remove unused code from profile list
darcs-hash:20081208033132-5ed1f-ee93e5b26353c097ee1bdb8d3e4cedad5763548e.gz
Diffstat (limited to 'lib/profilelist.php')
-rw-r--r--lib/profilelist.php34
1 files changed, 12 insertions, 22 deletions
diff --git a/lib/profilelist.php b/lib/profilelist.php
index 55d744187..67be04e10 100644
--- a/lib/profilelist.php
+++ b/lib/profilelist.php
@@ -27,19 +27,19 @@ class ProfileList {
var $profile = NULL;
var $owner = NULL;
var $action = NULL;
-
+
function __construct($profile, $owner=NULL, $action=NULL) {
$this->profile = $profile;
$this->owner = $owner;
$this->action = $action;
}
-
+
function show_list() {
-
+
common_element_start('ul', array('id' => 'profiles', 'class' => 'profile_list'));
$cnt = 0;
-
+
while ($this->profile->fetch()) {
$cnt++;
if($cnt > PROFILES_PER_PAGE) {
@@ -47,19 +47,19 @@ class ProfileList {
}
$this->show();
}
-
+
common_element_end('ul');
-
+
return $cnt;
}
-
+
function show() {
$this->profile = $this->profile;
-
+
common_element_start('li', array('class' => 'profile_single',
'id' => 'profile-' . $this->profile->id));
-
+
$user = common_current_user();
if ($user && $user->id != $this->profile->id) {
# XXX: special-case for user looking at own
@@ -70,7 +70,7 @@ class ProfileList {
common_subscribe_form($this->profile);
}
}
-
+
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
common_element_start('a', array('href' => $this->profile->profileurl));
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
@@ -113,11 +113,11 @@ class ProfileList {
}
# 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);
-
+
common_element_start('div', 'tags_user');
common_element_start('dl');
common_element_start('dt');
@@ -151,16 +151,6 @@ class ProfileList {
common_element_end('div');
}
- if ($user) {
- $action = NULL;
- if ($user->isSubscribed($this->profile)) {
- $action = 'subscriptions';
- } else if (Subscription::pkeyGet(array('subscriber' => $this->profile->id,
- 'subscribed' => $user->id))) {
- $action = 'subscribers';
- }
- }
-
common_element_end('li');
}