]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/peopletagsection.php
Update/add translator documentation.
[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
108         $this->out->elementStart('tr');
109
110         $this->out->elementStart('td', 'peopletag');
111         $this->showPeopletag();
112         $this->out->elementEnd('td');
113
114         if (isset($this->peopletag->value)) {
115             $this->out->element('td', 'value', $this->peopletag->value);
116         }
117         $this->out->elementEnd('tr');
118     }
119
120     function showTag()
121     {
122         // TRANS: Tag summary. %1$d is the number of users tagged with the tag,
123         // TRANS: %2$d is the number of subscribers to the tag.
124         $title = sprintf(_('Tagged: %1$d Subscribers: %2$d'),
125                          $this->peopletag->taggedCount(),
126                          $this->peopletag->subscriberCount());
127
128         $this->out->elementStart('span', 'entry-title tag');
129         $this->out->element('a',
130             array('rel'   => 'bookmark',
131                   'href'  => $this->url(),
132                   'title' => $title),
133             htmlspecialchars($this->peopletag->tag));
134         $this->out->elementEnd('span');
135     }
136
137     function showAvatar()
138     {
139         parent::showAvatar(AVATAR_MINI_SIZE);
140     }
141 }