From b360f8b1fb44ee61296de6a6495e979fe77b187b Mon Sep 17 00:00:00 2001 From: Jeffrey Wang Date: Fri, 16 Oct 2020 20:49:51 -0500 Subject: [PATCH] Create extension.json --- extension.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 extension.json diff --git a/extension.json b/extension.json new file mode 100644 index 0000000..9bb9ee1 --- /dev/null +++ b/extension.json @@ -0,0 +1,21 @@ +{ + "name": "MyWikis DMCA Compliance", + "author": "MyWikis LLC", + "url": "https://www.mywikis.com/dmca", + "description": "Adds DMCA compliance to this wiki.", + "version": "1.0", + "license-name": "(c) MyWikis", + "type": "other", + "manifest_version": 2, + "MessagesDirs": { + "MyWikisDMCA": [ + "i18n" + ] + }, + "Hooks": { + "SkinTemplateOutputPageBeforeExec": "MyWikisDMCAHooks::onSkinTemplateOutputPageBeforeExec" + }, + "AutoloadClasses": { + "MyWikisDMCAHooks": "MyWikisDMCA.hooks.php" + } +}