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

22 lines
823 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class ExtManagerInfo extends ExtensionInfo
{
public const KEY = "ext_manager";
public string $key = self::KEY;
public string $name = "Extension Manager";
public string $url = self::SHIMMIE_URL;
public array $authors = self::SHISH_AUTHOR;
public string $license = self::LICENSE_GPLV2;
2022-10-28 00:45:35 +00:00
public ExtensionVisibility $visibility = ExtensionVisibility::ADMIN;
public ExtensionCategory $category = ExtensionCategory::ADMIN;
public string $description = "A thing for point & click extension management";
public ?string $documentation = "Allows the admin to view a list of all extensions and enable or disable them; also allows users to view the list of activated extensions and read their documentation";
public bool $core = true;
}