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/info.php

22 lines
767 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class QRImageInfo extends ExtensionInfo
{
public const KEY = "qr_code";
public string $key = self::KEY;
public string $name = "QR Codes";
public string $url = "http://seemslegit.com";
2023-11-11 21:49:12 +00:00
public array $authors = ["Zach Hall" => "zach@sosguy.net"];
public string $license = self::LICENSE_GPLV2;
2023-03-17 02:29:45 +00:00
public string $description = "Shows a QR Code for downloading a post to cell phones";
public ?string $documentation =
2024-08-31 16:05:18 +00:00
"Shows a QR Code for downloading a post to cell phones.
2023-03-22 23:15:41 +00:00
<br>Based on <a href='mailto:artanis.00@gmail.com'>Artanis</a>'s Link to Post Extension.
<br>Further modified by Shish to remove the 7MB local QR generator and replace it with a link to Google Chart APIs";
}