3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Superclass for profile blocks
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.
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.
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/>.
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/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
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/
48 abstract class ProfileBlock extends Widget
50 protected $avatarSize = AVATAR_PROFILE_SIZE;
52 abstract function name();
53 abstract function url();
54 abstract function location();
55 abstract function homepage();
56 abstract function description();
61 $this->showAvatar($this->profile);
63 $this->showLocation();
64 $this->showHomepage();
65 $this->showOtherProfiles();
66 $this->showDescription();
72 $name = $this->name();
75 $this->out->elementStart('p', 'profile_block_name');
78 $this->out->element('a', array('href' => $url),
81 $this->out->text($name);
83 $this->out->elementEnd('p');
87 function showDescription()
89 $description = $this->description();
91 if (!empty($description)) {
94 'profile_block_description',
100 function showLocation()
102 $location = $this->location();
104 if (!empty($location)) {
105 $this->out->element('p', 'profile_block_location', $location);
109 function showHomepage()
111 $homepage = $this->homepage();
113 if (!empty($homepage)) {
114 $this->out->element('a',
115 array('href' => $homepage,
117 'class' => 'profile_block_homepage'),
122 function showOtherProfiles()
124 $otherProfiles = $this->otherProfiles();
126 if (!empty($otherProfiles)) {
128 $this->out->elementStart('ul',
129 array('class' => 'profile_block_otherprofile_list'));
131 foreach ($otherProfiles as $otherProfile) {
132 $this->out->elementStart('li');
133 $this->out->elementStart('a',
134 array('href' => $otherProfile['href'],
136 'class' => 'profile_block_otherprofile',
137 'title' => $otherProfile['text']));
138 $this->out->element('img',
139 array('src' => $otherProfile['image'],
140 'class' => 'profile_block_otherprofile_icon'));
141 $this->out->elementEnd('a');
142 $this->out->elementEnd('li');
145 $this->out->elementEnd('ul');
153 function showActions()