123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- require_once INSTALLDIR . '/lib/profile/peopletaglist.php';
- class PeopletagsubscriptionsAction extends Action
- {
- var $page = null;
- var $profile = null;
- function isReadOnly($args)
- {
- return true;
- }
- function title()
- {
- if ($this->page == 1) {
-
-
- return sprintf(_('Lists subscribed to by %s'), $this->profile->nickname);
- } else {
-
-
- return sprintf(_('Lists subscribed to by %1$s, page %2$d'), $this->profile->nickname, $this->page);
- }
- }
- function prepare(array $args = array())
- {
- parent::prepare($args);
- if (common_config('singleuser', 'enabled')) {
- $nickname_arg = User::singleUserNickname();
- } else {
- $nickname_arg = $this->arg('nickname');
- }
- $nickname = common_canonical_nickname($nickname_arg);
-
- if ($nickname_arg != $nickname) {
- $args = array('nickname' => $nickname);
- if ($this->arg('page') && $this->arg('page') != 1) {
- $args['page'] = $this->arg['page'];
- }
- common_redirect(common_local_url('peopletagsbyuser', $args), 301);
- }
- $user = User::getKV('nickname', $nickname);
- if (!$user) {
-
- $this->clientError(_('No such user.'), 404);
- }
- $this->profile = $user->getProfile();
- if (!$this->profile) {
-
- $this->serverError(_('User has no profile.'));
- }
- $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
- return true;
- }
- function handle()
- {
- parent::handle();
- $this->showPage();
- }
- function showAnonymousMessage()
- {
- $notice =
-
-
-
- sprintf(_('These are lists subscribed to by **%s**. ' .
- 'Lists are how you sort similar ' .
- 'people on %%%%site.name%%%%, a [micro-blogging]' .
- '(http://en.wikipedia.org/wiki/Micro-blogging) service ' .
- 'based on the Free Software [StatusNet](http://status.net/) tool. ' .
- 'You can easily keep track of what they ' .
- 'are doing by subscribing to the list\'s timeline.' ), $this->profile->nickname);
- $this->elementStart('div', array('id' => 'anon_notice'));
- $this->raw(common_markup_to_html($notice));
- $this->elementEnd('div');
- }
- function showContent()
- {
- $offset = ($this->page-1) * PEOPLETAGS_PER_PAGE;
- $limit = PEOPLETAGS_PER_PAGE + 1;
- $ptags = $this->profile->getTagSubscriptions($offset, $limit);
- $pl = new PeopletagList($ptags, $this);
- $cnt = $pl->show();
- $this->pagination($this->page > 1, $cnt > PEOPLETAGS_PER_PAGE,
- $this->page, 'peopletagsubscriptions', array('nickname' => $this->profile->id));
- }
- function showObjectNav()
- {
- $nav = new PeopletagNav($this, $this->profile);
- $nav->show();
- }
- function showProfileBlock()
- {
- $block = new AccountProfileBlock($this, $this->profile);
- $block->show();
- }
- function showSections()
- {
-
-
- }
- }
|