-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
26 lines (26 loc) · 1 KB
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "AttachFiles",
"author": "ULYSSIS VZW, by Joachim Vandersmissen",
"url": "https://github.com/ULYSSIS-KUL/AttachFiles/",
"description": "Allows users to attach files to wiki pages",
"version": "1.0.0",
"license-name": "GPL-2.0+",
"type": "other",
"Hooks": {
"APIGetAllowedParams": "AttachFiles::onAPIGetAllowedParams",
"LoadExtensionSchemaUpdates": "AttachFiles::onLoadExtensionSchemaUpdates",
"BeforePageDisplay": "AttachFiles::onBeforePageDisplay",
"ContentAlterParserOutput": "AttachFiles::onContentAlterParserOutput",
"UploadComplete": "AttachFiles::onUploadComplete",
"FileDeleteComplete": "AttachFiles::onFileDeleteComplete",
"ArticleDeleteComplete": "AttachFiles::onArticleDeleteComplete",
"PageMoveCompleting": "AttachFiles::onPageMoveCompleting"
},
"AutoloadClasses": {
"AttachFiles": "AttachFiles.php"
},
"MessagesDirs": {
"AttachFiles": ["i18n"]
},
"manifest_version": 1
}