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

22 lines
763 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?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";
2022-10-28 00:45:35 +00:00
public array $db_support = [DatabaseDriverID::PGSQL]; # Only PG has the NOTIFY pubsub system
2023-12-30 02:24:09 +00:00
public ExtensionVisibility $visibility = ExtensionVisibility::HIDDEN;
}