2008-11-20 10:50:27 +00:00
|
|
|
<?php
|
2009-01-19 17:48:53 +00:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2008-11-20 10:50:27 +00: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 10:50:27 +00: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 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-08-25 23:12:20 +01: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 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2008-11-20 10:50:27 +00:00
|
|
|
*/
|
|
|
|
|
2015-04-22 20:22:02 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-11-20 10:50:27 +00:00
|
|
|
|
2009-01-19 17:48:53 +00:00
|
|
|
/**
|
|
|
|
* Widget to show a list of profiles
|
|
|
|
*
|
|
|
|
* @category Public
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01: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 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-19 17:48:53 +00:00
|
|
|
*/
|
|
|
|
class ProfileList extends Widget
|
|
|
|
{
|
|
|
|
/** Current profile, profile query. */
|
2008-12-23 19:21:29 +00:00
|
|
|
var $profile = null;
|
2009-01-19 17:48:53 +00:00
|
|
|
/** Action object using us. */
|
2008-12-23 19:21:29 +00:00
|
|
|
var $action = null;
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2016-01-03 19:27:53 +00:00
|
|
|
function __construct($profile, HTMLOutputter $action=null)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-19 17:48:53 +00:00
|
|
|
parent::__construct($action);
|
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->profile = $profile;
|
|
|
|
$this->action = $action;
|
|
|
|
}
|
|
|
|
|
2009-01-19 17:48:53 +00:00
|
|
|
function show()
|
2009-06-15 06:07:27 +01:00
|
|
|
{
|
2009-10-15 11:01:26 +01:00
|
|
|
$cnt = 0;
|
|
|
|
|
|
|
|
if (Event::handle('StartProfileList', array($this))) {
|
|
|
|
$this->startList();
|
|
|
|
$cnt = $this->showProfiles();
|
|
|
|
$this->endList();
|
|
|
|
Event::handle('EndProfileList', array($this));
|
|
|
|
}
|
|
|
|
|
2009-06-15 06:09:04 +01:00
|
|
|
return $cnt;
|
2009-06-15 06:07:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function startList()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2014-06-24 00:56:55 +01:00
|
|
|
$this->out->elementStart('ul', 'profile_list xoxo');
|
2009-06-15 06:07:27 +01:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2009-06-15 06:07:27 +01:00
|
|
|
function endList()
|
|
|
|
{
|
|
|
|
$this->out->elementEnd('ul');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showProfiles()
|
|
|
|
{
|
2013-10-07 23:21:24 +01:00
|
|
|
$cnt = $this->profile->N;
|
|
|
|
$profiles = $this->profile->fetchAll();
|
2011-08-27 17:53:15 +01:00
|
|
|
|
|
|
|
$max = min($cnt, $this->maxProfiles());
|
|
|
|
|
|
|
|
for ($i = 0; $i < $max; $i++) {
|
|
|
|
$pli = $this->newListItem($profiles[$i]);
|
2009-06-14 22:52:26 +01:00
|
|
|
$pli->show();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $cnt;
|
|
|
|
}
|
|
|
|
|
2016-01-03 19:27:53 +00:00
|
|
|
function newListItem(Profile $target)
|
2009-06-14 22:52:26 +01:00
|
|
|
{
|
2016-01-03 19:27:53 +00:00
|
|
|
return new ProfileListItem($target, $this->action);
|
2011-08-27 17:53:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function maxProfiles()
|
|
|
|
{
|
|
|
|
return PROFILES_PER_PAGE;
|
|
|
|
}
|
2009-06-14 22:52:26 +01:00
|
|
|
}
|