. * * @category Widget * @package StatusNet * @author Evan Prodromou * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } /** * FIXME * * These are the widgets that show interesting data about a person * group, or site. * * @category Widget * @package StatusNet * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ class AttachmentNoticeSection extends NoticeSection { function showContent() { parent::showContent(); return false; } function getNotices() { $notice = new Notice; $notice->joinAdd(array('id', 'file_to_post:post_id')); $notice->whereAdd(sprintf('file_to_post.file_id = %d', $this->out->attachment->id)); $notice->orderBy('created desc'); $notice->selectAdd('post_id as id'); $notice->find(); return $notice; } function title() { // TRANS: Title. return _('Notices where this attachment appears'); } function divId() { return 'attachment_section'; } }