X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fsubscriptions.php;h=5566acb41da0c3ecf9e73e21667c9f8acbc72e10;hb=0625f18c8e29bd840546136abe9e869b145fc497;hp=37ed68a7f89abbfc21a7cd20041fc622a5498fa9;hpb=52600ce0b063e68e622b19699841e41b5ddbf2d1;p=quix0rs-gnu-social.git diff --git a/actions/subscriptions.php b/actions/subscriptions.php index 37ed68a7f8..5566acb41d 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -19,89 +19,33 @@ if (!defined('LACONICA')) { exit(1); } -class SubscriptionsAction extends Action { +require_once(INSTALLDIR.'/lib/gallery.php'); - 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')); - $this->show_subscriptions($profile, $page); - common_show_footer(); +class SubscriptionsAction extends GalleryAction { + + function gallery_type() { + return _('Subscriptions'); } - function show_subscriptions($profile, $page) { + 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); + } + } - $subs = DB_DataObject::factory('subscription'); + function define_subs(&$subs, &$profile) { $subs->subscriber = $profile->id; + $subs->whereAdd('subscribed != ' . $profile->id); + } - # We ask for an extra one to know if we need to do another page - - $subs->limit((($page-1)*SUBSCRIPTIONS_PER_PAGE)+1, SUBSCRIPTIONS_PER_PAGE + 1); - - $subs_count = $subs->find(); - - common_element_start('div', 'subscriptions'); - - $idx = 0; - - while ($subs->fetch()) { - $idx++; - if ($idx % SUBSCRIPTIONS_PER_ROW == 1) { - common_element_start('div', 'row'); - } - - common_element_start('a', array('title' => ($subs->fullname) ? - $subs->fullname : - $subs->nickname, - 'href' => $subs->profileurl, - 'class' => 'subscription')); - $avatar = $subs->getAvatar(AVATAR_STREAM_SIZE); - common_element('img', array('src' => (($avatar) ? $avatar->url : DEFAULT_STREAM_AVATAR), - 'width' => AVATAR_STREAM_SIZE, - 'height' => AVATAR_STREAM_SIZE, - 'class' => 'avatar stream', - 'alt' => ($subs->fullname) ? - $subs->fullname : - $subs->nickname)); - common_element_end('a'); - - # XXX: subscribe form here - - if ($idx % SUBSCRIPTIONS_PER_ROW == 0) { - common_element_end('div'); - } - - if ($idx == SUBSCRIPTIONS_PER_PAGE) { - break; - } - } - - if ($page > 1) { - common_element('a', array('href' => - common_local_url('subscriptions', - array('nickname' => $profile->nickname, - 'page' => $page - 1)), - 'class' => 'prev'), - _t('Previous')); - } + function div_class() { + return 'subscriptions'; + } - if ($subs_count > SUBSCRIPTIONS_PER_PAGE) { - common_element('a', array('href' => - common_local_url('subscriptions', - array('nickname' => $profile->nickname, - 'page' => $page + 1)), - 'class' => 'next'), - _t('Next')); - } - common_element_end('div'); + function get_other(&$subs) { + return $subs->subscribed; } } \ No newline at end of file