forked from multiwebinc/recaptcha-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plugin.php
43 lines (38 loc) · 1.18 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
<?php namespace Multiwebinc\Recaptcha;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
public function pluginDetails()
{
return [
'name' => 'multiwebinc.recaptcha::lang.plugin.name',
'description' => 'multiwebinc.recaptcha::lang.plugin.description',
'author' => 'Multiwebinc',
'icon' => 'icon-key'
];
}
public function registerSettings()
{
return [
'settings' => [
'label' => 'multiwebinc.recaptcha::lang.settings.label',
'description' => 'multiwebinc.recaptcha::lang.settings.description',
'icon' => 'icon-key',
'class' => 'Multiwebinc\Recaptcha\Models\Settings',
'permissions' => ['multiwebinc.recaptcha.access_settings'],
]
];
}
public function registerComponents()
{
return [
'Multiwebinc\Recaptcha\Components\Recaptcha' => 'recaptcha',
];
}
public function registerPermissions()
{
return [
'multiwebinc.recaptcha.access_settings' => ['tab' => 'Captcha', 'label' => 'Access Settings']
];
}
}