2009-05-18 03:06:08 +01:00
|
|
|
<?php
|
2020-09-15 14:59:27 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-05-18 03:06:08 +01:00
|
|
|
/**
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* @category Widget
|
2020-09-15 14:59:27 +01:00
|
|
|
* @package GNUsocial
|
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.
|
2020-09-15 14:59:27 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-05-18 03:06:08 +01:00
|
|
|
*/
|
|
|
|
|
2020-09-15 14:59:27 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2009-05-18 03:06:08 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* These are the widgets that show interesting data about a person * group, or site.
|
|
|
|
*
|
2020-09-15 14:59:27 +01:00
|
|
|
* @category Widget
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2009 StatusNet, Inc.
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-05-18 03:06:08 +01:00
|
|
|
*/
|
|
|
|
class AttachmentNoticeSection extends NoticeSection
|
|
|
|
{
|
2020-09-15 14:59:27 +01:00
|
|
|
public function showContent()
|
|
|
|
{
|
2009-05-18 03:06:08 +01:00
|
|
|
parent::showContent();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-15 14:59:27 +01:00
|
|
|
public function getNotices()
|
2009-05-18 03:06:08 +01:00
|
|
|
{
|
|
|
|
$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));
|
|
|
|
|
2020-09-15 14:59:27 +01:00
|
|
|
$notice->selectAdd('notice.id');
|
|
|
|
$notice->orderBy('notice.created DESC, notice.id DESC');
|
2009-05-18 03:06:08 +01:00
|
|
|
$notice->find();
|
2010-09-28 23:39:45 +01:00
|
|
|
return $notice;
|
2009-05-18 03:06:08 +01:00
|
|
|
}
|
|
|
|
|
2020-09-15 14:59:27 +01:00
|
|
|
public function title()
|
2009-05-18 03:06:08 +01:00
|
|
|
{
|
2010-09-12 23:49:42 +01:00
|
|
|
// TRANS: Title.
|
2009-05-18 03:06:08 +01:00
|
|
|
return _('Notices where this attachment appears');
|
|
|
|
}
|
|
|
|
|
2020-09-15 14:59:27 +01:00
|
|
|
public function divId()
|
2009-05-18 03:06:08 +01:00
|
|
|
{
|
2015-01-09 14:46:35 +00:00
|
|
|
return 'attachment_section';
|
2009-05-18 03:06:08 +01:00
|
|
|
}
|
|
|
|
}
|