]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileblock.php
Qvitter API changes (thanks hannes2peer)
[quix0rs-gnu-social.git] / lib / profileblock.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Superclass for profile blocks
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  * Class comment
39  *
40  * @category  General
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
48 abstract class ProfileBlock extends Widget
49 {
50     abstract function avatar();
51     abstract function name();
52     abstract function url();
53     abstract function location();
54     abstract function homepage();
55     abstract function description();
56
57     function show()
58     {
59         $this->showActions();
60         $this->showAvatar();
61         $this->showName();
62         $this->showLocation();
63         $this->showHomepage();
64         $this->showOtherProfiles();
65         $this->showDescription();
66         $this->showTags();
67     }
68
69     function showAvatar()
70     {
71         $size = $this->avatarSize();
72
73         $this->out->element(
74             'img',
75             array(
76                 'src'  => $this->avatar(),
77                 'class'  => 'ur_face',
78                 'alt'    => $this->name(),
79                 'width'  => $size,
80                 'height' => $size
81             )
82         );
83     }
84
85     function showName()
86     {
87         $name = $this->name();
88
89         if (!empty($name)) {
90             $this->out->elementStart('p', 'profile_block_name');
91             $url = $this->url();
92             if (!empty($url)) {
93                 $this->out->element('a', array('href' => $url),
94                                     $name);
95             } else {
96                 $this->out->text($name);
97             }
98             $this->out->elementEnd('p');
99         }
100     }
101
102     function showDescription()
103     {
104         $description = $this->description();
105
106         if (!empty($description)) {
107             $this->out->element(
108                 'p',
109                 'profile_block_description',
110                 $description
111             );
112         }
113     }
114
115     function showLocation()
116     {
117         $location = $this->location();
118
119         if (!empty($location)) {
120             $this->out->element('p', 'profile_block_location', $location);
121         }
122     }
123
124     function showHomepage()
125     {
126         $homepage = $this->homepage();
127
128         if (!empty($homepage)) {
129             $this->out->element('a',
130                                 array('href' => $homepage,
131                                       'rel' => 'me',
132                                       'class' => 'profile_block_homepage'),
133                                 $homepage);
134         }
135     }
136
137     function showOtherProfiles()
138     {
139         $otherProfiles = $this->otherProfiles();
140
141         if (!empty($otherProfiles)) {
142
143             $this->out->elementStart('ul',
144                                      array('class' => 'profile_block_otherprofile_list'));
145
146             foreach ($otherProfiles as $otherProfile) {
147                 $this->out->elementStart('li');
148                 $this->out->elementStart('a',
149                                          array('href' => $otherProfile['href'],
150                                                'rel' => 'me',
151                                                'class' => 'profile_block_otherprofile',
152                                                'title' => $otherProfile['text']));
153                 $this->out->element('img',
154                                     array('src' => $otherProfile['image'],
155                                           'class' => 'profile_block_otherprofile_icon'));
156                 $this->out->elementEnd('a');
157                 $this->out->elementEnd('li');
158             }
159
160             $this->out->elementEnd('ul');
161         }
162     }
163
164     function avatarSize()
165     {
166         return AVATAR_PROFILE_SIZE;
167     }
168
169     function showTags()
170     {
171     }
172
173     function showActions()
174     {
175     }
176 }