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

16 lines
577 B
PHP
Raw Normal View History

2010-01-24 10:40:07 +00:00
<?php
/*
* Name: QR Codes
* Author: Zach Hall <zach@sosguy.net> [http://seemslegit.com]
* Description: Shows a QR Code for downloading an image to cell phones.
* Based on Artanis's Link to Image Extension <artanis.00@gmail.com>
* Further modified by Shish to remove the 7MB local QR generator
* and replace it with a link to google chart APIs
2010-01-24 10:40:07 +00:00
*/
class QRImage extends Extension {
public function onDisplayingImage(DisplayingImageEvent $event) {
2010-06-17 18:42:04 +00:00
$this->theme->links_block(make_http(make_link('image/'.$event->image->id.'.jpg')));
2010-01-24 10:40:07 +00:00
}
}
?>