-
Notifications
You must be signed in to change notification settings - Fork 1
/
Plugin.php
51 lines (44 loc) · 1.35 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
<?php namespace MONEI\MONEI;
use MONEI\MONEI\Components\PaymentForm;
use MONEI\MONEI\Components\SuccessPage;
use MONEI\MONEI\Models\Settings;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function pluginDetails()
{
return [
'name' => 'monei.monei::lang.plugin.name',
'description' => 'monei.monei::lang.plugin.description',
'author' => 'MONEI',
'icon' => 'icon-usd',
];
}
public function registerComponents()
{
return [
PaymentForm::class => 'MONEIPaymentForm',
SuccessPage::class => 'MONEISuccessPage',
];
}
public function registerSettings()
{
return [
'settings' => [
'label' => 'monei.monei::lang.settings.label',
'description' => 'monei.monei::lang.settings.description',
'icon' => 'icon-cog',
'category' => 'MONEI',
'class' => Settings::class,
'order' => 510,
'permissions' => ['monei.monei.access_settings'],
],
];
}
public function registerPermissions()
{
return [
'monei.monei.access_settings' => ['tab' => 'settings', 'label' => 'Settings'],
];
}
}