forked from octobercms/test-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
113 lines (106 loc) · 3.72 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
<?php
namespace October\Test;
use Backend;
use System\Classes\PluginBase;
/**
* Test Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @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',
];
}
public function registerPermissions()
{
return [
'october.test.access_plugin' => [
'label' => 'Allow access to the plugin',
'tab' => 'October Tester',
]
];
}
public function registerNavigation()
{
return [
'test' => [
'label' => 'Playground',
'url' => Backend::url('october/test/people'),
'icon' => 'icon-child',
'order' => 200,
'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'),
],
'countries' => [
'label' => 'Countries',
'icon' => 'icon-database',
'url' => Backend::url('october/test/countries'),
],
'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'),
],
'cities' => [
'label' => 'Cities',
'icon' => 'icon-database',
'url' => Backend::url('october/test/cities'),
],
'locations' => [
'label' => 'Locations',
'icon' => 'icon-database',
'url' => Backend::url('october/test/locations'),
],
],
],
];
}
public function registerFormWidgets()
{
return [
'October\Test\FormWidgets\TimeChecker' => [
'code' => 'timecheckertest',
],
];
}
}