]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/groupprofileblock.php
Comment improvements with spl_autoload_register
[quix0rs-gnu-social.git] / lib / groupprofileblock.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Profile block to show for a group
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Widget
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Profile block to show for a group
39  *
40  * @category  Widget
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2011 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47 class GroupProfileBlock extends ProfileBlock
48 {
49     protected $group = null;
50
51     function __construct($out, $group)
52     {
53         parent::__construct($out);
54         $this->group = $group;
55     }
56
57     function avatar()
58     {
59         return ($this->group->homepage_logo) ?
60             $this->group->homepage_logo : User_group::defaultLogo(AVATAR_PROFILE_SIZE);
61     }
62
63     function name()
64     {
65         return $this->group->getBestName();
66     }
67
68     function url()
69     {
70         return $this->group->homeUrl();
71     }
72
73     function location()
74     {
75         return $this->group->location;
76     }
77
78     function homepage()
79     {
80         return $this->group->homepage;
81     }
82
83     function description()
84     {
85         return $this->group->description;
86     }
87
88     function otherProfiles()
89     {
90         return array();
91     }
92
93     function showActions()
94     {
95         $cur = common_current_user();
96         $this->out->elementStart('div', 'entity_actions');
97         // TRANS: Group actions header (h2). Text hidden by default.
98         $this->out->element('h2', null, _('Group actions'));
99         $this->out->elementStart('ul');
100         if (Event::handle('StartGroupActionsList', array($this, $this->group))) {
101             $this->out->elementStart('li', 'entity_subscribe');
102             if (Event::handle('StartGroupSubscribe', array($this, $this->group))) {
103                 if ($cur) {
104                     $profile = $cur->getProfile();
105                     if ($profile->isMember($this->group)) {
106                         $lf = new LeaveForm($this->out, $this->group);
107                         $lf->show();
108                     } else if ($profile->isPendingMember($this->group)) {
109                         $cf = new CancelGroupForm($this->out, $this->group);
110                         $cf->show();
111                     } else if (!Group_block::isBlocked($this->group, $profile)) {
112                         $jf = new JoinForm($this->out, $this->group);
113                         $jf->show();
114                     }
115                 }
116                 Event::handle('EndGroupSubscribe', array($this, $this->group));
117             }
118             $this->out->elementEnd('li');
119             if ($cur && $cur->isAdmin($this->group)) {
120                 $this->out->elementStart('li', 'entity_edit');
121                 $this->out->element('a', array('href' => common_local_url('editgroup',
122                                                                           array('nickname' => $this->group->nickname)),
123                                                // TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
124                                                // TRANS: %s is the nickname of the group.
125                                                'title' => sprintf(_m('TOOLTIP','Edit %s group properties'), $this->group->nickname)),
126                                     // TRANS: Link text for link on user profile.
127                                     _m('BUTTON','Edit'));
128                 $this->out->elementEnd('li');
129                 $this->out->elementStart('li', 'entity_edit');
130                 $this->out->element('a', array('href' => common_local_url('grouplogo',
131                                                                           array('nickname' => $this->group->nickname)),
132                                                // TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
133                                                // TRANS: %s is the nickname of the group.
134                                                'title' => sprintf(_m('TOOLTIP','Add or edit %s logo'), $this->group->nickname)),
135                                     // TRANS: Link text for link on user profile.
136                                     _m('MENU','Logo'));
137                 $this->out->elementEnd('li');
138             }
139             if ($cur && $cur->hasRight(Right::DELETEGROUP)) {
140                 $this->out->elementStart('li', 'entity_delete');
141                 $df = new DeleteGroupForm($this->out, $this->group);
142                 $df->show();
143                 $this->out->elementEnd('li');
144             }
145
146             Event::handle('EndGroupActionsList', array($this, $this->group));
147         }
148         $this->out->elementEnd('ul');
149         $this->out->elementEnd('div');
150     }
151
152     function show()
153     {
154         $this->out->elementStart('div', 'profile_block group_profile_block section');
155         if (Event::handle('StartShowGroupProfileBlock', array($this->out, $this->group))) {
156             parent::show();
157             Event::handle('EndShowGroupProfileBlock', array($this->out, $this->group));
158         }
159         $this->out->elementEnd('div');
160     }
161
162     function showName()
163     {
164         parent::showName();
165         $this->showAliases();
166     }
167
168     function showAliases()
169     {
170         $aliases = $this->group->getAliases();
171
172         if (!empty($aliases)) {
173             $this->out->elementStart('ul', 'group_aliases');
174             foreach ($aliases as $alias) {
175                 $this->out->element('li', 'group_alias', $alias);
176             }
177             $this->out->elementEnd('ul');
178         }
179     }
180 }