. * * @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 * * @see http://status.net/ */ namespace Plugin\Media\media; /** * used for one-off attachment action */ class Attachment extends AttachmentListItem { public function showNoticeAttachment() { if (Event::handle('StartShowAttachmentLink', [$this->out, $this->attachment])) { $this->out->elementStart('div', ['id' => 'attachment_view', 'class' => 'h-entry', ]); $this->out->elementStart('div', 'entry-title'); $this->out->element('a', $this->linkAttr(), _m('Download link')); $this->out->elementEnd('div'); $this->out->elementStart('article', 'e-content'); $this->showRepresentation(); $this->out->elementEnd('article'); Event::handle('EndShowAttachmentLink', [$this->out, $this->attachment]); $this->out->elementEnd('div'); } } public function show() { $this->showNoticeAttachment(); } public function linkAttr() { return ['rel' => 'external', 'href' => $this->attachment->getAttachmentDownloadUrl()]; } }