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

21 lines
496 B
PHP
Raw Normal View History

<?php
/**
* Name: Uploader
* Author: Shish <webmaster@shishnet.org>
* Link: http://code.shishnet.org/shimmie2/
* Description: Allows people to upload files to the website
*/
class UploadInfo extends ExtensionInfo
{
public const KEY = "upload";
public $key = self::KEY;
public $name = "Uploader";
public $url = self::SHIMMIE_URL;
public $authors = self::SHISH_AUTHOR;
public $description = "Allows people to upload files to the website";
public $core = true;
}