12 lines
399 B
PHP
12 lines
399 B
PHP
<?php declare(strict_types=1);
|
|
|
|
class ApprovalInfo extends ExtensionInfo
|
|
{
|
|
public const KEY = "approval";
|
|
|
|
public string $key = self::KEY;
|
|
public string $name = "Approval";
|
|
public array $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
|
|
public string $license = self::LICENSE_WTFPL;
|
|
public string $description = "Adds an approval step to the upload/import process.";
|
|
}
|