]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/peopletagsection.php
Merge branch '1.0.x' into testing
[quix0rs-gnu-social.git] / lib / peopletagsection.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Base class for sections showing lists of peopletags
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  Widget
23  * @package   StatusNet
24  * @author    Shashi Gowda <connect2shashi@gmail.com>
25  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
26  * @link      http://status.net/
27  */
28
29 if (!defined('STATUSNET') && !defined('LACONICA')) {
30     exit(1);
31 }
32
33 require_once INSTALLDIR . '/lib/peopletaglist.php';
34
35 define('PEOPLETAGS_PER_SECTION', 6);
36
37 /**
38  * Base class for sections
39  *
40  * These are the widgets that show interesting data about a person
41  * peopletag, or site.
42  *
43  * @category Widget
44  * @package  StatusNet
45  * @author   Shashi Gowda <connect2shashi@gmail.com>
46  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47  * @link     http://status.net/
48  */
49 class PeopletagSection extends Section
50 {
51     function showContent()
52     {
53         $tags = $this->getPeopletags();
54
55         if (!$tags) {
56             return false;
57         }
58
59         $cnt = 0;
60
61         $this->out->elementStart('table', 'peopletag_section');
62
63         while ($tags->fetch() && ++$cnt <= PEOPLETAGS_PER_SECTION) {
64             $this->showPeopletag($tags);
65         }
66
67         $this->out->elementEnd('table');
68
69         return ($cnt > PEOPLETAGS_PER_SECTION);
70     }
71
72     function getPeopletags()
73     {
74         return null;
75     }
76
77     function showPeopletag($peopletag)
78     {
79         $tag = new PeopletagSectionItem($peopletag, null, $this->out);
80         $tag->show();
81     }
82 }
83
84 class PeopletagSectionItem extends PeopletagListItem
85 {
86     function showStart()
87     {
88     }
89
90     function showEnd()
91     {
92     }
93
94     function showPeopletag()
95     {
96         $this->showCreator();
97         $this->showTag();
98         $this->showPrivacy();
99     }
100
101     function show()
102     {
103         if (empty($this->peopletag)) {
104             common_log(LOG_WARNING, "Trying to show missing peopletag; skipping.");
105             return;
106         }
107         $mode = ($this->peopletag->private) ? 'private' : 'public';
108
109         $this->out->elementStart('tr');
110
111         $this->out->elementStart('td', 'peopletag mode-' . $mode);
112         $this->showPeopletag();
113         $this->out->elementEnd('td');
114
115         if (isset($this->peopletag->value)) {
116             $this->out->element('td', 'value', $this->peopletag->value);
117         }
118         $this->out->elementEnd('tr');
119     }
120
121     function showTag()
122     {
123         // TRANS: List summary. %1$d is the number of users in the list,
124         // TRANS: %2$d is the number of subscribers to the list.
125         $title = sprintf(_('Listed: %1$d Subscribers: %2$d'),
126                          $this->peopletag->taggedCount(),
127                          $this->peopletag->subscriberCount());
128
129         $this->out->elementStart('span', 'entry-title tag');
130
131         $this->out->element('a',
132             array('rel'   => 'bookmark',
133                   'href'  => $this->url(),
134                   'title' => $title),
135             htmlspecialchars($this->peopletag->tag));
136         $this->out->elementEnd('span');
137     }
138
139     function showAvatar()
140     {
141         parent::showAvatar(AVATAR_MINI_SIZE);
142     }
143 }