-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.php
164 lines (153 loc) · 5.24 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
<?php namespace Lbaig\Catalog;
use Backend;
use System\Classes\PluginBase;
use Event;
/**
* Catalog Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'Catalog',
'description' => 'No description provided yet...',
'author' => 'Lbaig',
'icon' => 'icon-leaf'
];
}
/**
* Register method, called when the plugin is first registered.
*
* @return void
*/
public function register()
{
}
/**
* Boot method, called right before the request route.
*
* @return array
*/
public function boot()
{
// Register menu items
Event::listen('pages.menuitem.listTypes', function () {
return [
'catalog-category' => 'Catalog Category',
'all-catalog-categories' => 'All Catalog Categories',
'catalog-product' => 'Catalog Product',
'all-catalog-products' => 'All Catalog Products',
'category-catalog-products' => 'Catagorized Catalog Products'
];
});
Event::listen('pages.menuitem.getTypeInfo', function ($type) {
if ($type == 'catalog-category' || $type == 'all-catalog-categories') {
return \Lbaig\Catalog\Models\Category::getMenuTypeInfo($type);
}
elseif ($type == 'catalog-product' || $type == 'all-catalog-products' ||
$type == 'category-catalog-products') {
return \LBaig\Catalog\Models\Product::getMenuTypeInfo($type);
}
});
Event::listen('pages.menuitem.resolveItem', function ($type, $item, $url, $theme) {
if ($type == 'catalog-category' || $type == 'all-catalog-categories') {
return \Lbaig\Catalog\Models\Category::resolveMenuItem($item, $url, $theme);
}
elseif ($type == 'catalog-product' || $type == 'all-catalog-products' ||
$type == 'category-catalog-products') {
return \LBaig\Catalog\Models\Product::resolveMenuItem($item, $url, $theme);
}
});
}
/**
* Registers any front-end components implemented in this plugin.
*
* @return array
*/
public function registerComponents()
{
return [
'Lbaig\Catalog\Components\Breadcrumbs' => 'Breadcrumbs',
'Lbaig\Catalog\Components\CategoryItem' => 'CategoryItem',
'Lbaig\Catalog\Components\CategoryList' => 'CategoryList',
'Lbaig\Catalog\Components\ProductItem' => 'ProductItem',
'Lbaig\Catalog\Components\ProductList' => 'ProductList'
];
}
/**
* Registers any back-end permissions used by this plugin.
*
* @return array
*/
public function registerPermissions()
{
return [
'lbaig.catalog.some_permission' => [
'tab' => 'Catalog',
'label' => 'Some permission'
],
'lbaig.catalog.access_settings' => [
'tab' => 'Catalog',
'label' => 'Access backend settings'
],
];
}
/**
* Registers back-end navigation items for this plugin.
*
* @return array
*/
public function registerNavigation()
{
return [
'catalog' => [
'label' => 'Catalog',
'url' => Backend::url('lbaig/catalog/products'),
'icon' => 'icon-th-large',
'permissions' => ['lbaig.catalog.*'],
'order' => 500,
'sideMenu' => [
'categories' => [
'label' => 'Categories',
'icon' => 'icon-sitemap',
'url' => Backend::url('lbaig/catalog/categories'),
'permissions' => ['lbaig.catalog.some_permission']
],
'products' => [
'label' => 'Products',
'icon' => 'icon-book',
'url' => Backend::url('lbaig/catalog/products'),
'permissions' => ['lbaig.catalog.some_permission']
],
'properties' => [
'label' => 'Properties',
'icon' => 'icon-list-ul',
'url' => Backend::url('lbaig/catalog/properties'),
'permissions' => ['lbaig.catalog.some_permission']
]
]
],
];
}
public function registerSettings()
{
return [
'basket' => [
'label' => 'Catalog Settings',
'description' => 'Manage catalog settings.',
'category' => 'Catalog',
'icon' => 'icon-cog',
'class' => 'Lbaig\Catalog\Models\Settings',
'order' => 500,
'keywords' => 'security location',
'permissions' => ['lbaig.catalog.access_settings']
]
];
}
}