-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
29 lines (28 loc) · 1.14 KB
/
plugin.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
27
28
29
{
"id": "nodebb-theme-pnlpal",
"hooks": [
{ "hook": "filter:widgets.getAreas", "method": "defineWidgetAreas" },
{ "hook": "filter:config.get", "method": "getThemeConfig" },
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:user.profileMenu", "method": "addProfileItem" },
{ "hook": "filter:topic.create", "method": "setExternalLinkOnSaveTopic" },
{ "hook": "filter:topic.edit", "method": "setExternalLinkOnSaveTopic" },
{ "hook": "filter:topics.get", "method": "onGetTopics" },
{ "hook": "filter:parse.post", "method": "parsePost", "priority": 6 },
{ "hook": "filter:category.get", "method": "onGetCategory" },
{ "hook": "filter:middleware.renderHeader", "method": "onRenderTopic" }
],
"scripts": [
"public/modules/autohidingnavbar.js",
"public/persona.js",
"public/pnlpal.js"
],
"modules": {
"../admin/plugins/persona.js": "public/admin.js",
"persona/taskbar.js": "public/modules/taskbar.js",
"persona/mobile-menu.js": "public/modules/mobile-menu.js",
"../client/account/theme.js": "public/settings.js"
},
"languages": "languages"
}