22 lines
708 B
PHP
22 lines
708 B
PHP
|
<?php
|
||
|
/*
|
||
|
* Name: QR Codes
|
||
|
* Author: Zach Hall <zach@sosguy.net> [http://seemslegit.com]
|
||
|
* Description:
|
||
|
*/
|
||
|
class QRImageInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "qr_code";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "QR Codes";
|
||
|
public $url = "http://seemslegit.com";
|
||
|
public $authors = ["Zach Hall"=>"zach@sosguy.net"];
|
||
|
public $license = self::LICENSE_GPLV2;
|
||
|
public $description = "Turns BBCode into HTML";
|
||
|
public $documentation =
|
||
|
"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";
|
||
|
}
|