3 * StatusNet, the distributed open-source microblogging tool
5 * Base class for sections showing lists of notices
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.
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.
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/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @copyright 2009 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 define('NOTICES_PER_SECTION', 6);
37 * Base class for sections showing lists of notices
39 * These are the widgets that show interesting data about a person
42 * @todo migrate this to use a variant of NoticeList
46 * @author Evan Prodromou <evan@status.net>
47 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
48 * @link http://status.net/
51 class NoticeSection extends Section
53 function showContent()
55 $notices = $this->getNotices();
57 $this->out->elementStart('ol', 'notices xoxo');
58 while ($notices->fetch() && ++$cnt <= NOTICES_PER_SECTION) {
59 $this->showNotice($notices);
62 $this->out->elementEnd('ol');
63 return ($cnt > NOTICES_PER_SECTION);
71 function showNotice($notice)
73 $profile = $notice->getProfile();
74 if (empty($profile)) {
75 common_log(LOG_WARNING, sprintf("Notice %d has no profile",
79 $this->out->elementStart('li', 'hentry notice');
80 $this->out->elementStart('div', 'entry-title');
81 $avatar = $profile->getAvatar(AVATAR_MINI_SIZE);
82 $this->out->elementStart('span', 'vcard author');
83 $this->out->elementStart('a', array('title' => ($profile->fullname) ?
86 'href' => $profile->profileurl,
88 $this->out->element('img', array('src' => (($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_MINI_SIZE)),
89 'width' => AVATAR_MINI_SIZE,
90 'height' => AVATAR_MINI_SIZE,
91 'class' => 'avatar photo',
92 'alt' => ($profile->fullname) ?
95 $this->out->text(' ');
96 $this->out->element('span', 'fn nickname', $profile->nickname);
97 $this->out->elementEnd('a');
98 $this->out->elementEnd('span');
100 $this->out->elementStart('p', 'entry-content');
101 $this->out->raw($notice->rendered);
102 $this->out->elementEnd('p');
104 $this->out->elementStart('div', 'entry_content');
105 $nli = new NoticeListItem($notice, $this->out);
106 $nli->showNoticeLink();
107 $this->out->elementEnd('div');
109 if (!empty($notice->value)) {
110 $this->out->elementStart('p');
111 $this->out->text($notice->value);
112 $this->out->elementEnd('p');
114 $this->out->elementEnd('div');
115 $this->out->elementEnd('li');