| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04: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 18:12:20 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * FIXME | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * These are the widgets that show interesting data about a person * group, or site. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Widget | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | class AttachmentNoticeSection extends NoticeSection | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     function showContent() { | 
					
						
							|  |  |  |         parent::showContent(); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function getNotices() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $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)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |         $notice->orderBy('created desc'); | 
					
						
							|  |  |  |         $notice->selectAdd('post_id as id'); | 
					
						
							|  |  |  |         $notice->find(); | 
					
						
							| 
									
										
										
										
											2010-09-29 00:39:45 +02:00
										 |  |  |         return $notice; | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function title() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-09-13 00:49:42 +02:00
										 |  |  |         // TRANS: Title.
 | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |         return _('Notices where this attachment appears'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function divId() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-01-09 15:46:35 +01:00
										 |  |  |         return 'attachment_section'; | 
					
						
							| 
									
										
										
										
											2009-05-17 22:06:08 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | } |