a17e2eca15
Squashed commit of the following: commit 1bc42eeb1755e82d6596014acec0361c9141999b Author: LaureeGrd <laureegrd@gmail.com> Date: Fri Sep 18 01:45:04 2020 -0300 Wiki author update commit 9c8b923abc5d987f688f23a81b5ba93d62c68571 Author: LaureeGrd <laureegrd@gmail.com> Date: Fri Sep 18 00:50:49 2020 -0300 Rename config wiki_tag_page_formatting to template commit cf5c8d42d3c411c2413e700f1b51fd5ed6dd56cf Author: LaureeGrd <laureegrd@gmail.com> Date: Fri Sep 18 00:06:38 2020 -0300 Improved tag wiki pages formatting and configuration. commit 53b91ff2febdb96fd9c7f4b05f9280859b199bf6 Author: LaureeGrd <laureegrd@gmail.com> Date: Mon Sep 14 22:32:46 2020 -0300 Added aliases and auto-tags to tag wiki pages
14 lines
538 B
PHP
14 lines
538 B
PHP
<?php declare(strict_types=1);
|
|
|
|
class WikiInfo extends ExtensionInfo
|
|
{
|
|
public const KEY = "wiki";
|
|
|
|
public $key = self::KEY;
|
|
public $name = "Simple Wiki";
|
|
public $url = self::SHIMMIE_URL;
|
|
public $authors = [self::SHISH_NAME=>self::SHISH_EMAIL, "LaureeGrd"=>"laureegrd@gmail.com"];
|
|
public $license = self::LICENSE_GPLV2;
|
|
public $description = "A simple wiki, for those who don't want the hugeness of mediawiki";
|
|
public $documentation = "Standard formatting APIs are used (This will be BBCode by default)";
|
|
}
|