. // }}} namespace Plugin\AttachmentShowRelated; use App\Core\DB; use App\Core\Event; use App\Core\Modules\Plugin; use App\Util\Common; use App\Util\Formatting; use EventResult; use Symfony\Component\HttpFoundation\Request; class AttachmentShowRelated extends Plugin { public function onAppendRightPanelBlock(Request $request, $vars, &$res): EventResult { if ($vars['path'] === 'note_attachment_show') { $related_notes = DB::dql('select n from attachment_to_note an ' . 'join note n with n.id = an.note_id ' . 'where an.attachment_id = :attachment_id', ['attachment_id' => $vars['vars']['attachment_id']], ); $related_tags = DB::dql('select distinct t.tag ' . 'from attachment_to_note an join note_tag t with an.note_id = t.note_id ' . 'where an.attachment_id = :attachment_id', ['attachment_id' => $vars['vars']['attachment_id']], ); $res[] = Formatting::twigRenderFile('attachmentShowRelated/attachmentRelatedNotes.html.twig', ['related_notes' => $related_notes, 'have_user' => Common::user() !== null]); $res[] = Formatting::twigRenderFile('attachmentShowRelated/attachmentRelatedTags.html.twig', ['related_tags' => $related_tags]); } return Event::next; } /** * Output our dedicated stylesheet * * @param array $styles stylesheets path * * @return bool hook value; true means continue processing, false means stop */ public function onEndShowStyles(array &$styles, string $path): EventResult { if ($path === 'note_attachment_show') { $styles[] = '/assets/default_theme/pages/feeds.css'; } return Event::next; } }