gnu-social/actions/subscribers.php

116 lines
3.5 KiB
PHP
Raw Normal View History

<?php
2009-01-22 16:19:27 +00:00
/**
* Laconica, the distributed open-source microblogging tool
*
2009-01-22 16:19:27 +00:00
* List a user's subscribers
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2009-01-22 16:19:27 +00:00
*
* @category Social
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @author Sarven Capadisli <csarven@controlyourself.ca>
* @copyright 2008-2009 Control Yourself, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
*/
2009-01-22 16:19:27 +00:00
if (!defined('LACONICA')) {
exit(1);
}
2009-01-22 16:19:27 +00:00
/**
* List a user's subscribers
*
* @category Social
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://laconi.ca/
*/
class SubscribersAction extends GalleryAction
{
2009-01-22 16:19:27 +00:00
function title()
{
2009-01-22 16:19:27 +00:00
if ($this->page == 1) {
return sprintf(_('%s subscribers'), $this->user->nickname);
} else {
return sprintf(_('%s subscribers, page %d'),
$this->user->nickname,
$this->page);
}
}
2009-01-22 16:19:27 +00:00
function showPageNotice()
{
$user =& common_current_user();
2009-01-22 16:19:27 +00:00
if ($user && ($user->id == $this->profile->id)) {
$this->element('p', null,
_('These are the people who listen to '.
'your notices.'));
} else {
2009-01-22 16:19:27 +00:00
$this->element('p', null,
sprintf(_('These are the people who '.
'listen to %s\'s notices.'),
$this->profile->nickname));
}
}
2009-01-22 16:19:27 +00:00
function showContent()
{
2009-01-29 13:37:40 +00:00
parent::showContent();
2009-01-22 16:19:27 +00:00
$offset = ($this->page-1) * PROFILES_PER_PAGE;
$limit = PROFILES_PER_PAGE + 1;
2009-01-29 13:37:40 +00:00
$cnt = 0;
if ($this->tag) {
$subscribers = $this->user->getTaggedSubscribers($this->tag, $offset, $limit);
} else {
$subscribers = $this->user->getSubscribers($offset, $limit);
}
2009-01-22 16:19:27 +00:00
if ($subscribers) {
$subscribers_list = new SubscribersList($subscribers, $this->user, $this);
2009-01-29 13:37:40 +00:00
$cnt = $subscribers_list->show();
2009-01-22 16:19:27 +00:00
}
2009-01-22 16:19:27 +00:00
$subscribers->free();
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
$this->page, 'subscribers',
array('nickname' => $this->user->nickname));
}
}
class SubscribersList extends ProfileList
{
2009-01-26 16:14:08 +00:00
function showBlockForm()
{
2009-01-26 16:15:32 +00:00
$bf = new BlockForm($this->out, $this->profile,
2009-01-22 16:19:27 +00:00
array('action' => 'subscribers',
'nickname' => $this->owner->nickname));
$bf->show();
}
2009-01-23 09:15:15 +00:00
function isReadOnly()
{
return true;
}
}