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
|
|
|
*/
|
|
|
|
|
2015-04-22 21:22:02 +02:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
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
|
|
|
}
|