forked from octobercms/test-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
208 lines (193 loc) · 6.04 KB
/
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php namespace October\Test;
use Backend;
use System\Classes\PluginBase;
use System\Classes\SettingsManager;
/**
* Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* pluginDetails
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'October Tester',
'description' => 'Used for testing the Relation Controller behavior and others.',
'author' => 'Alexey Bobkov, Samuel Georges',
'icon' => 'icon-child',
'homepage' => 'https://github.com/daftspunk/oc-test-plugin',
];
}
/**
* register the service provider
*/
public function register()
{
$this->registerConsoleCommand('test.seed-posts', \October\Test\Console\SeedPosts::class);
}
/**
* boot the service provider
*/
public function boot()
{
$this->callAfterResolving('validator', function ($validator) {
$validator->extend('uppercase', \October\Test\Classes\UppercaseRule::class);
$validator->extend('betwixt', \October\Test\Classes\BetwixtRule::class);
});
\October\Test\Models\Page::extend(function($model) {
$model->translatable = array_merge($model->translatable, [
'parent_id',
]);
});
// \Event::listen('backend.brand.getPalettePresets', function(&$presets) {
// unset($presets['punch']);
// });
}
/**
* registerMailTemplates
*/
public function registerMailTemplates()
{
return [
'templates' => [
'october.test::mail.test-message'
],
'layouts' => [
'test' => 'october.test::mail.test-layout'
],
'partials' => [
'test' => 'october.test::mail.test-partial'
]
];
}
/**
* registerPermissions
*/
public function registerPermissions()
{
return [
'october.test.access_plugin' => [
'label' => 'Allow access to the plugin',
'tab' => 'October Tester',
]
];
}
/**
* registerComponents
*/
public function registerComponents()
{
return [
\October\Test\Components\KitchenSink::class => 'kitchenSink',
\October\Test\Components\RemoveIndex::class => 'removeIndex',
];
}
/**
* registerFilterWidgets
*/
public function registerFilterWidgets()
{
return [
\October\Test\FilterWidgets\Discount::class => 'discount',
\October\Test\FilterWidgets\InlineSearch::class => 'inlinesearch',
];
}
/**
* registerNavigation
*/
public function registerNavigation()
{
return [
'test' => [
'label' => 'Playground',
'url' => Backend::url('october/test/people'),
'icon' => 'icon-child',
'order' => 198,
'permissions' => ['october.test.access_plugin'],
'sideMenu' => [
'people' => [
'label' => 'People',
'icon' => 'icon-database',
'url' => Backend::url('october/test/people'),
],
'posts' => [
'label' => 'Posts',
'icon' => 'icon-database',
'url' => Backend::url('october/test/posts'),
],
'users' => [
'label' => 'Users',
'icon' => 'icon-database',
'url' => Backend::url('october/test/users'),
],
'locations' => [
'label' => 'Locations',
'icon' => 'icon-database',
'url' => Backend::url('october/test/locations'),
],
'reviews' => [
'label' => 'Reviews',
'icon' => 'icon-database',
'url' => Backend::url('october/test/reviews'),
],
'galleries' => [
'label' => 'Galleries',
'icon' => 'icon-database',
'url' => Backend::url('october/test/galleries'),
],
'trees' => [
'label' => 'Trees',
'icon' => 'icon-database',
'url' => Backend::url('october/test/trees'),
],
'pages' => [
'label' => 'Pages',
'icon' => 'icon-database',
'url' => Backend::url('october/test/pages'),
],
'products' => [
'label' => 'Products',
'icon' => 'icon-database',
'url' => Backend::url('october/test/products'),
],
],
],
];
}
public function registerSettings()
{
return [
'test' => [
'label' => 'Playground Settings',
'description' => 'Settings for the test plugin',
'category' => SettingsManager::CATEGORY_MISC,
'icon' => 'icon-child',
'class' => \October\Test\Models\Setting::class,
'order' => 500,
'keywords' => 'settings october test',
'permissions' => ['october.test.manage_settings']
]
];
}
/**
* registerFormWidgets
*/
public function registerFormWidgets()
{
return [
\October\Test\FormWidgets\TimeChecker::class => [
'code' => 'timecheckertest',
],
];
}
/**
* registerSchedule
*/
public function registerSchedule($schedule)
{
$schedule->command('cache:clear')->everyMinute();
}
}