X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Finlineattachmentlist.php;h=40ec114ad82eb024862d5acf08f13dd5c8161521;hb=67a9c0415c395d92adeb784413bb9a88fba7347f;hp=de5008e87babb796e2ebd8d92b6066e453de901f;hpb=e4eb3b3dfd6b9b5cbd1b34d7fc4738b6fd19ee99;p=quix0rs-gnu-social.git diff --git a/lib/inlineattachmentlist.php b/lib/inlineattachmentlist.php index de5008e87b..40ec114ad8 100644 --- a/lib/inlineattachmentlist.php +++ b/lib/inlineattachmentlist.php @@ -27,20 +27,14 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } class InlineAttachmentList extends AttachmentList { function showListStart() { - $this->out->elementStart('div', array('class' => 'entry-content thumbnails')); - } - - function showListEnd() - { - $this->out->elementEnd('div'); + $this->out->element('h3', 'attachments-title', _('Attachments')); + parent::showListStart(); } /** @@ -50,59 +44,8 @@ class InlineAttachmentList extends AttachmentList * * @return ListItem a list item for displaying the attachment */ - function newListItem($attachment) + function newListItem(File $attachment) { return new InlineAttachmentListItem($attachment, $this->out); } } - -class InlineAttachmentListItem extends AttachmentListItem -{ - function show() - { - if ($this->attachment->isEnclosure()) { - parent::show(); - } - } - - function showLink() { - $this->out->elementStart('a', $this->linkAttr()); - $this->showRepresentation(); - $this->out->elementEnd('a'); - } - - /** - * Build HTML attributes for the link - * @return array - */ - function linkAttr() - { - $attr = parent::linkAttr(); - $attr['class'] = 'attachment-thumbnail'; - return $attr; - } - - /** - * start a single notice. - * - * @return void - */ - function showStart() - { - // XXX: RDFa - // TODO: add notice_type class e.g., notice_video, notice_image - $this->out->elementStart('span', array('class' => 'inline-attachment')); - } - - /** - * finish the notice - * - * Close the last elements in the notice list item - * - * @return void - */ - function showEnd() - { - $this->out->elementEnd('span'); - } -}