-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
elgg-plugin.php
132 lines (131 loc) · 2.86 KB
/
elgg-plugin.php
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
return [
'plugin' => [
'version' => '8.0.1',
'dependencies' => [
'widget_manager' => [],
],
],
'settings' => [
'disable_free_html_filter' => 'no',
'rss_cron' => 'no',
],
'view_extensions' => [
'elgg.css' => [
'widgets/rss_server/content.css' => [],
],
],
'events' => [
'action:validate' => [
'widgets/save' => [
'ColdTrick\WidgetPack\Widgets::disableFreeHTMLInputFilter' => [],
'ColdTrick\WidgetPack\Widgets::twitterSearchGetWidgetID' => [],
],
],
'all' => [
'object' => [
'ColdTrick\WidgetPack\Widgets::getSlideshowIconSizes' => [],
],
],
'cacheable_handlers' => [
'widget_manager' => [
'ColdTrick\WidgetPack\Widgets::getCacheableWidgets' => [],
],
],
'cron' => [
'fiveminute' => [
'ColdTrick\WidgetPack\Cron::fetchRssServerWidgets' => [],
],
],
'entity:url' => [
'object' => [
'ColdTrick\WidgetPack\Widgets::getTitleURLs' => [],
],
],
'format' => [
'friendly:time' => [
'ColdTrick\WidgetPack\Widgets::rssFriendlyTime' => [],
],
],
'response' => [
'action:widgets/save' => [
'ColdTrick\WidgetPack\Widgets::saveSlideshowConfig' => [],
],
],
'search:fields' => [
'user' => [
'ColdTrick\WidgetPack\Widgets::userSearchByEmail' => [],
],
],
'update:after' => [
'object' => [
'ColdTrick\WidgetPack\Widgets::rssServerInvalidateCache' => [],
],
],
'view_vars' => [
'widgets/content_by_tag/display/simple' => [
'ColdTrick\WidgetPack\Bookmarks::changeEntityURL' => [],
],
'widgets/content_by_tag/display/slim' => [
'ColdTrick\WidgetPack\Bookmarks::changeEntityURL' => [],
],
],
],
'widgets' => [
'content_by_tag' => [
'context' => ['profile', 'dashboard', 'index', 'groups'],
'multiple' => true,
],
'entity_statistics' => [
'context' => ['index'],
],
'free_html' => [
'context' => ['profile', 'dashboard', 'index', 'groups'],
'multiple' => true,
],
'iframe' => [
'context' => ['profile', 'dashboard', 'index', 'groups'],
'multiple' => true,
],
'image_slideshow' => [
'context' => ['index', 'groups'],
'multiple' => true,
],
'index_activity' => [
'context' => ['index'],
'multiple' => true,
],
'index_login' => [
'context' => ['index'],
],
'index_members' => [
'context' => ['index'],
'multiple' => true,
],
'index_members_online' => [
'context' => ['index'],
'multiple' => true,
],
'messages' => [
'context' => ['dashboard', 'index'],
'required_plugin' => ['messages'],
],
'register' => [
'context' => ['index'],
],
'rss_server' => [
'context' => ['index'],
'multiple' => true,
],
'start_discussion' => [
'context' => ['index', 'dashboard', 'groups'],
],
'twitter_search' => [
'context' => ['profile', 'dashboard', 'index', 'groups'],
'multiple' => true,
],
'user_search' => [
'context' => ['admin'],
],
],
];