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/view/info.php
2019-08-07 15:40:01 -05:00

20 lines
418 B
PHP

<?php
/*
* Name: Image Viewer
* Author: Shish
* Description: Allows users to see uploaded images
*/
class ViewImageInfo extends ExtensionInfo
{
public const KEY = "view";
public $key = self::KEY;
public $name = "Image Viewer";
public $url = self::SHIMMIE_URL;
public $authors = self::SHISH_AUTHOR;
public $description = "Allows users to see uploaded images";
public $core = true;
}