2009-01-22 19:42:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-22 19:42:55 +00:00
|
|
|
*
|
|
|
|
* Base class for sections showing lists of notices
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* @category Widget
|
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 2009 StatusNet, Inc.
|
2009-01-22 19:42:55 +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-22 19:42:55 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-08 19:07:10 +00:00
|
|
|
if (!defined('GNUSOCIAL') && !defined('GNUSOCIAL')) { exit(1); }
|
2009-01-22 19:42:55 +00:00
|
|
|
|
|
|
|
define('NOTICES_PER_SECTION', 6);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for sections showing lists of notices
|
|
|
|
*
|
|
|
|
* These are the widgets that show interesting data about a person
|
|
|
|
* group, or site.
|
|
|
|
*
|
2011-03-18 20:58:13 +00:00
|
|
|
* @todo migrate this to use a variant of NoticeList
|
|
|
|
*
|
2009-01-22 19:42:55 +00:00
|
|
|
* @category Widget
|
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-01-22 19:42:55 +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-22 19:42:55 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-09 14:46:35 +00:00
|
|
|
abstract class NoticeSection extends Section
|
2009-01-22 19:42:55 +00:00
|
|
|
{
|
2015-01-09 14:46:35 +00:00
|
|
|
protected $addressees = false;
|
|
|
|
protected $attachments = false;
|
|
|
|
protected $maxchars = 140;
|
|
|
|
protected $options = false;
|
|
|
|
protected $show_n = NOTICES_PER_SECTION;
|
|
|
|
|
2009-01-22 19:42:55 +00:00
|
|
|
function showContent()
|
|
|
|
{
|
2015-01-09 14:46:35 +00:00
|
|
|
$prefs = array();
|
|
|
|
foreach (array('addressees', 'attachments', 'maxchars', 'options', 'show_n') as $key) {
|
|
|
|
$prefs[$key] = $this->$key;
|
|
|
|
}
|
|
|
|
$prefs['id_prefix'] = $this->divId();
|
|
|
|
|
|
|
|
// args: notice object, html outputter, preference array for notice lists and their items
|
|
|
|
$list = new NoticeList($this->getNotices(), $this->out, $prefs);
|
2015-01-08 19:07:10 +00:00
|
|
|
$total = $list->show(); // returns total amount of notices available
|
2015-01-09 14:46:35 +00:00
|
|
|
return ($total > $this->show_n); // do we have more to show?
|
2009-01-22 19:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function getNotices()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|