2020-06-16 18:40:13 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class DownloadInfo extends ExtensionInfo
|
|
|
|
{
|
|
|
|
public const KEY = "download";
|
|
|
|
|
2021-03-14 23:43:50 +00:00
|
|
|
public string $key = self::KEY;
|
|
|
|
public string $name = "Download";
|
|
|
|
public array $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
|
|
|
|
public string $license = self::LICENSE_WTFPL;
|
|
|
|
public string $description = "System-wide download functions";
|
|
|
|
public bool $core = true;
|
|
|
|
public string $visibility = self::VISIBLE_HIDDEN;
|
2020-06-16 18:40:13 -05:00
|
|
|
}
|