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/terms/info.php
2024-06-04 20:04:38 +01:00

16 lines
404 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class TermsInfo extends ExtensionInfo
{
public const KEY = "terms";
public string $key = self::KEY;
public string $name = "Terms & Conditions Gate";
public array $authors = ["discomrade" => ""];
public string $license = "GPLv2";
public string $description = "Show a page of terms which must be accepted before continuing";
}