| 
									
										
										
										
											2008-11-20 05:50:27 -05:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2008-11-20 05:50:27 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |  * Widget to show a list of profiles | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2008-11-20 05:50:27 -05:00
										 |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @category  Public | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @copyright 2008-2009 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2008-11-20 05:50:27 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  | require_once INSTALLDIR.'/lib/peopletags.php'; | 
					
						
							| 
									
										
										
										
											2008-11-20 05:50:27 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Widget to show a list of profiles | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Public | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Zach Copley <zach@status.net> | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | class ProfileList extends Widget | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** Current profile, profile query. */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |     var $profile = null; | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |     /** Action object using us. */ | 
					
						
							| 
									
										
										
										
											2008-12-23 14:21:29 -05:00
										 |  |  |     var $action = null; | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function __construct($profile, $action=null) | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |         parent::__construct($action); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         $this->profile = $profile; | 
					
						
							|  |  |  |         $this->action = $action; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |     function show() | 
					
						
							| 
									
										
										
										
											2009-06-14 22:07:27 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |         $cnt = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (Event::handle('StartProfileList', array($this))) { | 
					
						
							|  |  |  |             $this->startList(); | 
					
						
							|  |  |  |             $cnt = $this->showProfiles(); | 
					
						
							|  |  |  |             $this->endList(); | 
					
						
							|  |  |  |             Event::handle('EndProfileList', array($this)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 22:09:04 -07:00
										 |  |  |         return $cnt; | 
					
						
							| 
									
										
										
										
											2009-06-14 22:07:27 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function startList() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-06-24 01:56:55 +02:00
										 |  |  |         $this->out->elementStart('ul', 'profile_list xoxo'); | 
					
						
							| 
									
										
										
										
											2009-06-14 22:07:27 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 22:07:27 -07:00
										 |  |  |     function endList() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->out->elementEnd('ul'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showProfiles() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2013-10-08 00:21:24 +02:00
										 |  |  |         $cnt = $this->profile->N; | 
					
						
							|  |  |  |         $profiles = $this->profile->fetchAll(); | 
					
						
							| 
									
										
										
										
											2011-08-27 12:53:15 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $max = min($cnt, $this->maxProfiles()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for ($i = 0; $i < $max; $i++) { | 
					
						
							|  |  |  |             $pli = $this->newListItem($profiles[$i]); | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |             $pli->show(); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $cnt; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function newListItem($profile) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-08-27 12:53:15 -04:00
										 |  |  |         return new ProfileListItem($profile, $this->action); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function maxProfiles() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return PROFILES_PER_PAGE; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ProfileListItem extends Widget | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** Current profile. */ | 
					
						
							|  |  |  |     var $profile = null; | 
					
						
							|  |  |  |     /** Action object using us. */ | 
					
						
							|  |  |  |     var $action = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function __construct($profile, $action) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::__construct($action); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->profile = $profile; | 
					
						
							|  |  |  |         $this->action  = $action; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function show() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |         if (Event::handle('StartProfileListItem', array($this))) { | 
					
						
							|  |  |  |             $this->startItem(); | 
					
						
							|  |  |  |             if (Event::handle('StartProfileListItemProfile', array($this))) { | 
					
						
							|  |  |  |                 $this->showProfile(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemProfile', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (Event::handle('StartProfileListItemActions', array($this))) { | 
					
						
							|  |  |  |                 $this->showActions(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemActions', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $this->endItem(); | 
					
						
							|  |  |  |             Event::handle('EndProfileListItem', array($this)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function startItem() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-06-24 01:56:55 +02:00
										 |  |  |         $this->out->elementStart('li', array('class' => 'profile', | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  |                                              'id' => 'profile-' . $this->profile->id)); | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function showProfile() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->startProfile(); | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |         if (Event::handle('StartProfileListItemProfileElements', array($this))) { | 
					
						
							|  |  |  |             if (Event::handle('StartProfileListItemAvatar', array($this))) { | 
					
						
							| 
									
										
										
										
											2014-06-21 23:22:41 +02:00
										 |  |  |                 $aAttrs = $this->linkAttributes(); | 
					
						
							|  |  |  |                 $this->out->elementStart('a', $aAttrs); | 
					
						
							| 
									
										
										
										
											2014-06-22 22:49:28 +02:00
										 |  |  |                 $this->showAvatar($this->profile); | 
					
						
							| 
									
										
										
										
											2014-06-21 23:22:41 +02:00
										 |  |  |                 $this->out->elementEnd('a'); | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |                 Event::handle('EndProfileListItemAvatar', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2014-06-23 18:59:32 +02:00
										 |  |  |             if (Event::handle('StartProfileListItemNickname', array($this))) { | 
					
						
							|  |  |  |                 $this->showNickname(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemNickname', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |             if (Event::handle('StartProfileListItemFullName', array($this))) { | 
					
						
							|  |  |  |                 $this->showFullName(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemFullName', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (Event::handle('StartProfileListItemLocation', array($this))) { | 
					
						
							|  |  |  |                 $this->showLocation(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemLocation', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (Event::handle('StartProfileListItemHomepage', array($this))) { | 
					
						
							|  |  |  |                 $this->showHomepage(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemHomepage', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (Event::handle('StartProfileListItemBio', array($this))) { | 
					
						
							|  |  |  |                 $this->showBio(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemBio', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |             if (Event::handle('StartProfileListItemTags', array($this))) { | 
					
						
							|  |  |  |                 $this->showTags(); | 
					
						
							|  |  |  |                 Event::handle('EndProfileListItemTags', array($this)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |             Event::handle('EndProfileListItemProfileElements', array($this)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |         $this->endProfile(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function startProfile() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-06-21 21:01:17 +02:00
										 |  |  |         $this->out->elementStart('div', 'entity_profile h-card'); | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 18:59:32 +02:00
										 |  |  |     function showNickname() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->out->element('a', array('href'=>$this->profile->getUrl(), | 
					
						
							|  |  |  |                                        'class'=>'p-nickname'), | 
					
						
							|  |  |  |                             $this->profile->getNickname()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function showFullName() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-03-23 15:44:17 -04:00
										 |  |  |         if (!empty($this->profile->fullname)) { | 
					
						
							| 
									
										
										
										
											2014-06-23 18:59:32 +02:00
										 |  |  |             $this->out->element('span', 'p-name', $this->profile->fullname); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showLocation() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-03-23 15:44:17 -04:00
										 |  |  |         if (!empty($this->profile->location)) { | 
					
						
							| 
									
										
										
										
											2014-06-24 01:56:55 +02:00
										 |  |  |             $this->out->element('span', 'label p-locality', $this->profile->location); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showHomepage() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-03-23 15:44:17 -04:00
										 |  |  |         if (!empty($this->profile->homepage)) { | 
					
						
							| 
									
										
										
										
											2010-02-15 20:41:46 +01:00
										 |  |  |             $this->out->text(' '); | 
					
						
							| 
									
										
										
										
											2010-04-05 11:17:06 -04:00
										 |  |  |             $aAttrs = $this->homepageAttributes(); | 
					
						
							|  |  |  |             $this->out->elementStart('a', $aAttrs); | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |             $this->out->raw($this->highlight($this->profile->homepage)); | 
					
						
							|  |  |  |             $this->out->elementEnd('a'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showBio() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-03-23 15:44:17 -04:00
										 |  |  |         if (!empty($this->profile->bio)) { | 
					
						
							| 
									
										
										
										
											2009-11-02 11:23:31 -05:00
										 |  |  |             $this->out->elementStart('p', 'note'); | 
					
						
							| 
									
										
										
										
											2009-01-19 17:48:53 +00:00
										 |  |  |             $this->out->raw($this->highlight($this->profile->bio)); | 
					
						
							| 
									
										
										
										
											2009-11-02 11:23:31 -05:00
										 |  |  |             $this->out->elementEnd('p'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-07 00:39:24 +05:30
										 |  |  |     function showTags() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $user = common_current_user(); | 
					
						
							|  |  |  |         if (!empty($user)) { | 
					
						
							|  |  |  |             if ($user->id == $this->profile->id) { | 
					
						
							|  |  |  |                 $tags = new SelftagsWidget($this->out, $user, $this->profile); | 
					
						
							|  |  |  |                 $tags->show(); | 
					
						
							|  |  |  |             } else if ($user->getProfile()->canTag($this->profile)) { | 
					
						
							|  |  |  |                 $tags = new PeopletagsWidget($this->out, $user, $this->profile); | 
					
						
							|  |  |  |                 $tags->show(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function endProfile() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  |         $this->out->elementEnd('div'); | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function showActions() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->startActions(); | 
					
						
							| 
									
										
										
										
											2009-10-15 06:01:26 -04:00
										 |  |  |         if (Event::handle('StartProfileListItemActionElements', array($this))) { | 
					
						
							|  |  |  |             $this->showSubscribeButton(); | 
					
						
							|  |  |  |             Event::handle('EndProfileListItemActionElements', array($this)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |         $this->endActions(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-26 17:14:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function startActions() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->out->elementStart('div', 'entity_actions'); | 
					
						
							| 
									
										
										
										
											2009-01-26 17:30:32 +01:00
										 |  |  |         $this->out->elementStart('ul'); | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-26 17:30:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function showSubscribeButton() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-03-23 15:44:17 -04:00
										 |  |  |         // Is this a logged-in user, looking at someone else's
 | 
					
						
							|  |  |  |         // profile?
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |         $user = common_current_user(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-23 15:44:17 -04:00
										 |  |  |         if (!empty($user) && $this->profile->id != $user->id) { | 
					
						
							| 
									
										
										
										
											2009-07-05 11:47:14 -04:00
										 |  |  |             $this->out->elementStart('li', 'entity_subscribe'); | 
					
						
							|  |  |  |             if ($user->isSubscribed($this->profile)) { | 
					
						
							|  |  |  |                 $usf = new UnsubscribeForm($this->out, $this->profile); | 
					
						
							|  |  |  |                 $usf->show(); | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2011-07-15 12:13:57 -07:00
										 |  |  |                 if (Event::handle('StartShowProfileListSubscribeButton', array($this))) { | 
					
						
							| 
									
										
										
										
											2009-07-03 10:14:02 -04:00
										 |  |  |                     $sf = new SubscribeForm($this->out, $this->profile); | 
					
						
							|  |  |  |                     $sf->show(); | 
					
						
							| 
									
										
										
										
											2011-07-15 12:13:57 -07:00
										 |  |  |                     Event::handle('EndShowProfileListSubscribeButton', array($this)); | 
					
						
							| 
									
										
										
										
											2009-07-03 10:14:02 -04:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-07-05 11:47:14 -04:00
										 |  |  |             $this->out->elementEnd('li'); | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function endActions() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-26 17:30:32 +01:00
										 |  |  |         $this->out->elementEnd('ul'); | 
					
						
							| 
									
										
										
										
											2009-01-26 17:14:08 +01:00
										 |  |  |         $this->out->elementEnd('div'); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-11-20 05:50:27 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |     function endItem() | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-06-14 14:52:26 -07:00
										 |  |  |         $this->out->elementEnd('li'); | 
					
						
							| 
									
										
										
										
											2008-12-08 00:55:11 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function highlight($text) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         return htmlspecialchars($text); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-04-05 10:46:26 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function linkAttributes() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return array('href' => $this->profile->profileurl, | 
					
						
							| 
									
										
										
										
											2014-06-21 21:01:17 +02:00
										 |  |  |                      'class' => 'u-url', | 
					
						
							| 
									
										
										
										
											2010-04-05 10:46:26 -04:00
										 |  |  |                      'rel' => 'contact'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-04-05 11:17:06 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function homepageAttributes() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return array('href' => $this->profile->homepage, | 
					
						
							| 
									
										
										
										
											2014-06-21 21:01:17 +02:00
										 |  |  |                      'class' => 'u-url'); | 
					
						
							| 
									
										
										
										
											2010-04-05 11:17:06 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-19 21:56:55 +00:00
										 |  |  | } |