-
Notifications
You must be signed in to change notification settings - Fork 4
/
Plugin.php
111 lines (100 loc) · 3.85 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
<?php
declare(strict_types=1);
namespace Vdlp\RssFetcher;
use Backend\Helpers\Backend as BackendHelper;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function pluginDetails(): array
{
return [
'name' => 'vdlp.rssfetcher::lang.plugin.name',
'description' => 'vdlp.rssfetcher::lang.plugin.name',
'author' => 'Van der Let & Partners <[email protected]>',
'icon' => 'icon-rss',
'homepage' => 'http://github.com/vdlp/rssfetcher',
];
}
public function register(): void
{
$this->registerConsoleCommand('Vdlp.RssFetcher', Commands\FetchRssCommand::class);
}
public function registerComponents(): array
{
return [
Components\Items::class => 'rssItems',
Components\PaginatableItems::class => 'rssPaginatableItems',
Components\Sources::class => 'rssSources',
];
}
public function registerReportWidgets(): array
{
return [
ReportWidgets\Headlines::class => [
'label' => 'RSS Headlines',
'code' => 'headlines',
],
];
}
public function registerPermissions(): array
{
return [
'vdlp.rssfetcher.access_sources' => [
'tab' => 'vdlp.rssfetcher::lang.plugin.name',
'label' => 'vdlp.rssfetcher::lang.permissions.access_sources',
],
'vdlp.rssfetcher.access_items' => [
'tab' => 'vdlp.rssfetcher::lang.plugin.name',
'label' => 'vdlp.rssfetcher::lang.permissions.access_items',
],
'vdlp.rssfetcher.access_import_export' => [
'tab' => 'vdlp.rssfetcher::lang.plugin.name',
'label' => 'vdlp.rssfetcher::lang.permissions.access_import_export',
],
'vdlp.rssfetcher.access_feeds' => [
'tab' => 'vdlp.rssfetcher::lang.plugin.name',
'label' => 'vdlp.rssfetcher::lang.permissions.access_feeds',
],
];
}
public function registerNavigation(): array
{
/** @var BackendHelper $backendHelper */
$backendHelper = resolve(BackendHelper::class);
return [
'rssfetcher' => [
'label' => 'vdlp.rssfetcher::lang.navigation.menu_label',
'url' => $backendHelper->url('vdlp/rssfetcher/sources'),
'iconSvg' => '/plugins/vdlp/rssfetcher/assets/images/icon.svg',
'permissions' => ['vdlp.rssfetcher.*'],
'order' => 500,
'sideMenu' => [
'sources' => [
'label' => 'vdlp.rssfetcher::lang.navigation.side_menu_label_sources',
'icon' => 'icon-globe',
'url' => $backendHelper->url('vdlp/rssfetcher/sources'),
'permissions' => ['vdlp.rssfetcher.access_sources'],
],
'items' => [
'label' => 'vdlp.rssfetcher::lang.navigation.side_menu_label_items',
'icon' => 'icon-files-o',
'url' => $backendHelper->url('vdlp/rssfetcher/items'),
'permissions' => ['vdlp.rssfetcher.access_items'],
],
'feeds' => [
'label' => 'vdlp.rssfetcher::lang.navigation.side_menu_label_feeds',
'icon' => 'icon-rss',
'url' => $backendHelper->url('vdlp/rssfetcher/feeds'),
'permissions' => ['vdlp.rssfetcher.access_feeds'],
],
],
],
];
}
public function registerFormWidgets(): array
{
return [
FormWidgets\TextWithPrefix::class => 'textWithPrefix',
];
}
}