summaryrefslogtreecommitdiff
path: root/extension.json
blob: 972617b6e98cb25b13aecbc7ceb2ab1fe17fcd8f (plain)
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
27
28
29
30
31
32
33
34
{
	"name": "Ribbon",
	"author": [
        "Cyrille Bagard"
    ],
	"url": "https://www.mediawiki.org/wiki/Extension:Example",
	"description": "This extension adds a ribbon on top of a pages.",
	"version": "1.0",
	"license-name": "GPL-2.0+",
	"type": "other",
	"AutoloadClasses": {
		"Ribbon": "Ribbon_body.php"
	},
	"Hooks": {
		"ParserFirstCallInit": [
			"Ribbon::onParserInit"
		],
        "BeforePageDisplay": [
			"Ribbon::onBeforePageDisplay"
        ]
	},
	"ResourceModules": {
		"ext.ribbon": {
			"styles": {
				"ribbon.css": {
					"media": "screen"
				}
            }
		}
	},
	"ResourceFileModulePaths": {
		"localBasePath": ""
	}
}