]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subscribers.php
Merge branch 'master' of ../trunk
[quix0rs-gnu-social.git] / actions / subscribers.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * List a user's subscribers
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Social
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @author    Sarven Capadisli <csarven@controlyourself.ca>
26  * @copyright 2008-2009 Control Yourself, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://laconi.ca/
29  */
30
31 if (!defined('LACONICA')) {
32     exit(1);
33 }
34
35 /**
36  * List a user's subscribers
37  *
38  * @category Social
39  * @package  Laconica
40  * @author   Evan Prodromou <evan@controlyourself.ca>
41  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
42  * @link     http://laconi.ca/
43  */
44
45 class SubscribersAction extends GalleryAction
46 {
47     function title()
48     {
49         if ($this->page == 1) {
50             return sprintf(_('%s subscribers'), $this->user->nickname);
51         } else {
52             return sprintf(_('%s subscribers, page %d'),
53                            $this->user->nickname,
54                            $this->page);
55         }
56     }
57
58     function showPageNotice()
59     {
60         $user =& common_current_user();
61         if ($user && ($user->id == $this->profile->id)) {
62             $this->element('p', null,
63                            _('These are the people who listen to '.
64                              'your notices.'));
65         } else {
66             $this->element('p', null,
67                            sprintf(_('These are the people who '.
68                                      'listen to %s\'s notices.'),
69                                    $this->profile->nickname));
70         }
71     }
72
73     function showContent()
74     {
75         $offset = ($this->page-1) * PROFILES_PER_PAGE;
76         $limit =  PROFILES_PER_PAGE + 1;
77
78         $subscribers = $this->user->getSubscribers($offset, $limit);
79
80         if ($subscribers) {
81             $subscribers_list = new SubscribersList($subscribers, $this->user, $this);
82             $subscribers_list->show();
83         }
84
85         $subscribers->free();
86
87         $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
88                           $this->page, 'subscribers',
89                           array('nickname' => $this->user->nickname));
90     }
91 }
92
93 class SubscribersList extends ProfileList
94 {
95     function showOwnerControls($profile)
96     {
97         $bf = new BlockForm($this->out, $profile,
98                             array('action' => 'subscribers',
99                                   'nickname' => $this->owner->nickname));
100         $bf->show();
101     }
102 }