first commit

This commit is contained in:
2024-07-04 18:07:29 +02:00
commit 575ae33ffb
4 changed files with 292 additions and 0 deletions

16
extension.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "SecretSpecial",
"author": "Samuel Maenle",
"url": "https://git.maenle.net/diocloid/SecretSpecial",
"description": "This MediaWiki extension hides Special Pages to non authenticated users",
"type": "parserhook",
"version": "1.0",
"license-name": "AGPL-3.0-only",
"manifest_version": 2,
"AutoloadClasses": {
"SecretSpecialHooks": "includes/SecretSpecialHooks.php"
},
"Hooks": {
"SpecialPage_initList": "SecretSpecialHooks::onSpecialPage_initList"
}
}