2010-01-24 02:40:07 -08: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>
|
2010-12-14 20:34:01 +00:00
|
|
|
* Further modified by Shish to remove the 7MB local QR generator
|
|
|
|
* and replace it with a link to google chart APIs
|
2010-01-24 02:40:07 -08:00
|
|
|
*/
|
2010-01-26 13:38:08 +00:00
|
|
|
class QRImage extends SimpleExtension {
|
2012-02-08 11:24:25 +00:00
|
|
|
public function onDisplayingImage(DisplayingImageEvent $event) {
|
2010-06-17 19:42:04 +01:00
|
|
|
$this->theme->links_block(make_http(make_link('image/'.$event->image->id.'.jpg')));
|
2010-01-24 02:40:07 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|