-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelgg-plugin.php
More file actions
35 lines (33 loc) · 871 Bytes
/
elgg-plugin.php
File metadata and controls
35 lines (33 loc) · 871 Bytes
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
35
<?php
/**
* ELGG plugin descriptor.
*
* Please check out http://learn.elgg.org/en/stable/guides/plugins.html#elgg-plugin-php for details
*/
return [
'bootstrap' => Wabue\Roles\Bootstrap::class,
'entities' => [
// Register custom entities here
],
'actions' => [
// Register custom actions here
],
'routes' => [
// Register custom routes here
],
'widgets' => [
// Register custom widgets here
],
'user_settings' => [
// Register user settings for your plugin here
],
'views' => [
// Alias third party vendor paths here
],
'hooks' => [
// Register plugin hooks here (http://learn.elgg.org/en/stable/guides/hooks-list.html)
],
'events' => [
// Register event handlers here (http://learn.elgg.org/en/stable/guides/events-list.html)
]
];