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