18 lines
451 B
PHP
18 lines
451 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Name: Link to Image
|
||
|
* Author: Artanis <artanis.00@gmail.com>
|
||
|
* Description: Show various forms of link to each image, for copy & paste
|
||
|
*/
|
||
|
|
||
|
class LinkImageInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "link_image";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "Link to Image";
|
||
|
public $authors = ["Artanis"=>"artanis.00@gmail.com"];
|
||
|
public $description = "Show various forms of link to each image, for copy & paste";
|
||
|
}
|