This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/qr_code/main.php

17 lines
350 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class QRImage extends Extension
{
2020-02-04 00:46:36 +00:00
/** @var QRImageTheme */
2023-06-27 14:56:49 +00:00
protected Themelet $theme;
2020-02-04 00:46:36 +00:00
public function onDisplayingImage(DisplayingImageEvent $event): void
{
2020-06-14 16:05:55 +00:00
$this->theme->links_block(make_http(make_link('image/'.$event->image->id.'.'.$event->image->get_ext())));
}
2010-01-24 10:40:07 +00:00
}