attachmentnoticesection.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * FIXME
  18. *
  19. * @category Widget
  20. * @package GNUsocial
  21. * @author Evan Prodromou <evan@status.net>
  22. * @copyright 2009 StatusNet, Inc.
  23. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  24. */
  25. defined('GNUSOCIAL') || die();
  26. /**
  27. * FIXME
  28. *
  29. * These are the widgets that show interesting data about a person * group, or site.
  30. *
  31. * @category Widget
  32. * @package GNUsocial
  33. * @author Evan Prodromou <evan@status.net>
  34. * @copyright 2009 StatusNet, Inc.
  35. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  36. */
  37. class AttachmentNoticeSection extends NoticeSection
  38. {
  39. public function showContent()
  40. {
  41. parent::showContent();
  42. return false;
  43. }
  44. public function getNotices()
  45. {
  46. $notice = new Notice;
  47. $notice->joinAdd(array('id', 'file_to_post:post_id'));
  48. $notice->whereAdd(sprintf('file_to_post.file_id = %d', $this->out->attachment->id));
  49. $notice->selectAdd('notice.id');
  50. $notice->orderBy('notice.created DESC, notice.id DESC');
  51. $notice->find();
  52. return $notice;
  53. }
  54. public function title()
  55. {
  56. // TRANS: Title.
  57. return _('Notices where this attachment appears');
  58. }
  59. public function divId()
  60. {
  61. return 'attachment_section';
  62. }
  63. }