X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fsubscriptions.php;h=5566acb41da0c3ecf9e73e21667c9f8acbc72e10;hb=63438008e021638004a61e76a7d6627fc2f49199;hp=e5db39bcecd3cea2dcc08f1fdff9f6f179fc1984;hpb=b87ba9073275c05a2e8be324348b7f078d4c2fd7;p=quix0rs-gnu-social.git diff --git a/actions/subscriptions.php b/actions/subscriptions.php index e5db39bcec..5566acb41d 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -19,90 +19,33 @@ if (!defined('LACONICA')) { exit(1); } -# XXX: make distinct from similar definitions in showstream.php +require_once(INSTALLDIR.'/lib/gallery.php'); -define('SUBSCRIPTIONS_PER_ROW', 8); -define('SUBSCRIPTIONS_PER_PAGE', 80); +class SubscriptionsAction extends GalleryAction { -class SubscriptionsAction extends Action { - - function handle($args) { - parent::handle($args); - $nickname = $this->arg('nickname'); - $profile = Profile::staticGet('nickname', $nickname); - if (!$profile) { - $this->no_such_user(); - } - $user = User::staticGet($profile->id); - if (!$user) { - $this->no_such_user(); - } - $page = $this->arg('page') || 1; - common_show_header($profile->nickname . ": " . _t('Subscriptions'), - NULL, $profile, - array($this, 'show_top')); - $this->show_subscriptions($profile, $page); - common_show_footer(); + function gallery_type() { + return _('Subscriptions'); } - function show_top($profile) { - $user = common_current_user(); - common_element('p', 'instructions', - _t('These are the people whose notices ') . - (($user && ($user->id == $profile->id)) ? _t('you listen to.') : ($profile->nickname . _t(' listens to.')))); + function get_instructions(&$profile) { + $user =& common_current_user(); + if ($user && ($user->id == $profile->id)) { + return _('These are the people whose notices you listen to.'); + } else { + return sprintf(_('These are the people whose notices %s listens to.'), $profile->nickname); + } } - - function show_subscriptions($profile, $page) { - $subs = DB_DataObject::factory('subscription'); + function define_subs(&$subs, &$profile) { $subs->subscriber = $profile->id; + $subs->whereAdd('subscribed != ' . $profile->id); + } - $subs->orderBy('created DESC'); - - # We ask for an extra one to know if we need to do another page - - $subs->limit((($page-1)*SUBSCRIPTIONS_PER_PAGE), SUBSCRIPTIONS_PER_PAGE + 1); - - $subs_count = $subs->find(); - - common_element_start('div', 'subscriptions'); - - $idx = 0; - - while ($subs->fetch()) { - - $idx++; - - $other = Profile::staticGet($subs->subscribed); - - common_element_start('a', array('title' => ($other->fullname) ? - $other->fullname : - $other->nickname, - 'href' => $other->profileurl, - 'class' => 'subscription')); - $avatar = $other->getAvatar(AVATAR_STREAM_SIZE); - common_element('img', - array('src' => - (($avatar) ? $avatar->url : - common_default_avatar(AVATAR_STREAM_SIZE)), - 'width' => AVATAR_STREAM_SIZE, - 'height' => AVATAR_STREAM_SIZE, - 'class' => 'avatar stream', - 'alt' => ($other->fullname) ? - $other->fullname : - $other->nickname)); - common_element_end('a'); - - # XXX: subscribe form here - - if ($idx == SUBSCRIPTIONS_PER_PAGE) { - break; - } - } + function div_class() { + return 'subscriptions'; + } - common_element_end('div'); - - common_pagination($page > 1, $subs_count > SUBSCRIPTIONS_PER_PAGE, - $page, 'subscriptions', array('nickname' => $profile->nickname)); + function get_other(&$subs) { + return $subs->subscribed; } } \ No newline at end of file