2021-12-14 18:32:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
|
|
|
class ForumInfo extends ExtensionInfo
|
|
|
|
{
|
2020-09-18 23:20:42 +01:00
|
|
|
public const KEY = "forum";
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2021-03-14 23:43:50 +00:00
|
|
|
public string $key = self::KEY;
|
|
|
|
public string $name = "Forum";
|
|
|
|
public array $authors = ["Sein Kraft"=>"mail@seinkraft.info","Alpha"=>"alpha@furries.com.ar"];
|
|
|
|
public string $license = self::LICENSE_GPLV2;
|
|
|
|
public string $description = "Rough forum extension";
|
2019-08-07 14:53:59 -05:00
|
|
|
}
|