17 lines
507 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
2019-08-07 15:18:37 -05:00
class UserConfigInfo extends ExtensionInfo
{
public const KEY = "user_config";
public string $key = self::KEY;
public string $name = "User-specific settings";
public array $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
public string $license = self::LICENSE_WTFPL;
public string $description = "Provides system-wide support for user-specific settings";
public string $visibility = self::VISIBLE_HIDDEN;
public bool $core = true;
2019-08-07 15:18:37 -05:00
}