12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- if (!defined('GNUSOCIAL')) {
- exit(1);
- }
- 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->getUrl(null)];
- }
- }
|