]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileblock.php
Misses this file to merge. I like the comments.
[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     protected $avatarSize = AVATAR_PROFILE_SIZE;
51
52     abstract function name();
53     abstract function url();
54     abstract function location();
55     abstract function homepage();
56     abstract function description();
57
58     function show()
59     {
60         $this->showActions();
61         $this->showAvatar($this->profile);
62         $this->showName();
63         $this->showLocation();
64         $this->showHomepage();
65         $this->showOtherProfiles();
66         $this->showDescription();
67         $this->showTags();
68     }
69
70     function showName()
71     {
72         $name = $this->name();
73
74         if (!empty($name)) {
75             $this->out->elementStart('p', 'profile_block_name');
76             $url = $this->url();
77             if (!empty($url)) {
78                 $this->out->element('a', array('href' => $url),
79                                     $name);
80             } else {
81                 $this->out->text($name);
82             }
83             $this->out->elementEnd('p');
84         }
85     }
86
87     function showDescription()
88     {
89         $description = $this->description();
90
91         if (!empty($description)) {
92             $this->out->element(
93                 'p',
94                 'profile_block_description',
95                 $description
96             );
97         }
98     }
99
100     function showLocation()
101     {
102         $location = $this->location();
103
104         if (!empty($location)) {
105             $this->out->element('p', 'profile_block_location', $location);
106         }
107     }
108
109     function showHomepage()
110     {
111         $homepage = $this->homepage();
112
113         if (!empty($homepage)) {
114             $this->out->element('a',
115                                 array('href' => $homepage,
116                                       'rel' => 'me',
117                                       'class' => 'profile_block_homepage'),
118                                 $homepage);
119         }
120     }
121
122     function showOtherProfiles()
123     {
124         $otherProfiles = $this->otherProfiles();
125
126         if (!empty($otherProfiles)) {
127
128             $this->out->elementStart('ul',
129                                      array('class' => 'profile_block_otherprofile_list'));
130
131             foreach ($otherProfiles as $otherProfile) {
132                 $this->out->elementStart('li');
133                 $this->out->elementStart('a',
134                                          array('href' => $otherProfile['href'],
135                                                'rel' => 'me',
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');
143             }
144
145             $this->out->elementEnd('ul');
146         }
147     }
148
149     function showTags()
150     {
151     }
152
153     function showActions()
154     {
155     }
156 }