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/rule34/info.php
2023-12-30 03:21:52 +00:00

21 lines
763 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class Rule34Info extends ExtensionInfo
{
public const KEY = "rule34";
public string $key = self::KEY;
public string $name = "Rule34 Customisations";
public string $url = self::SHIMMIE_URL;
public array $authors = self::SHISH_AUTHOR;
public string $license = self::LICENSE_GPLV2;
public string $description = "Extra site-specific bits";
public ?string $documentation =
"Probably not much use to other sites, but it gives a few examples of how a shimmie-based site can be integrated with other systems";
public array $db_support = [DatabaseDriverID::PGSQL]; # Only PG has the NOTIFY pubsub system
public ExtensionVisibility $visibility = ExtensionVisibility::HIDDEN;
}