2009-05-18 03:06:08 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-05-18 03:06:08 +01:00
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* 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-05-18 03:06:08 +01: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-05-18 03:06:08 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-05-18 03:06:08 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* These are the widgets that show interesting data about a person * group, or site.
|
|
|
|
*
|
|
|
|
* @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-05-18 03:06:08 +01: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-05-18 03:06:08 +01:00
|
|
|
*/
|
|
|
|
class AttachmentNoticeSection extends NoticeSection
|
|
|
|
{
|
|
|
|
function showContent() {
|
|
|
|
parent::showContent();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getNotices()
|
|
|
|
{
|
|
|
|
$notice = new Notice;
|
2011-08-27 14:38:46 +01:00
|
|
|
|
|
|
|
$notice->joinAdd(array('id', 'file_to_post:post_id'));
|
|
|
|
$notice->whereAdd(sprintf('file_to_post.file_id = %d', $this->out->attachment->id));
|
|
|
|
|
2009-05-18 03:06:08 +01:00
|
|
|
$notice->orderBy('created desc');
|
|
|
|
$notice->selectAdd('post_id as id');
|
|
|
|
$notice->find();
|
2010-09-28 23:39:45 +01:00
|
|
|
return $notice;
|
2009-05-18 03:06:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
2010-09-12 23:49:42 +01:00
|
|
|
// TRANS: Title.
|
2009-05-18 03:06:08 +01:00
|
|
|
return _('Notices where this attachment appears');
|
|
|
|
}
|
|
|
|
|
|
|
|
function divId()
|
|
|
|
{
|
2015-01-09 14:46:35 +00:00
|
|
|
return 'attachment_section';
|
2009-05-18 03:06:08 +01:00
|
|
|
}
|
|
|
|
}
|