. * * @category UI * @package StatusNet * @author Evan Prodromou * @author Sarven Capadisli * @copyright 2008 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('GNUSOCIAL')) { exit(1); } /** * used for one-off attachment action */ class Attachment extends AttachmentListItem { function showLink() { if (Event::handle('StartShowAttachmentLink', array($this->out, $this->attachment))) { $this->out->elementStart('div', array('id' => 'attachment_view', 'class' => 'h-entry')); $this->out->elementStart('div', 'entry-title'); $this->out->element('a', $this->linkAttr(), _('Download link')); $this->out->elementEnd('div'); $this->out->elementStart('article', 'e-content'); $this->showRepresentation(); $this->out->elementEnd('article'); Event::handle('EndShowAttachmentLink', array($this->out, $this->attachment)); $this->out->elementEnd('div'); } } function show() { $this->showNoticeAttachment(); } function linkAttr() { return array('rel' => 'external', 'href' => $this->attachment->getUrl()); } }