-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPlugin.php
36 lines (32 loc) · 856 Bytes
/
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
<?php namespace Tschallacka\FormTools;
use Backend;
use System\Classes\PluginBase;
use Tschallacka\FormTools\FormWidgets\ColorPicker;
use Tschallacka\FormTools\FormWidgets\FilteredCheckboxList;
/**
* FormTools Plugin Information File
*/
class Plugin extends PluginBase
{
/**
* Returns information about this plugin.
*
* @return array
*/
public function pluginDetails()
{
return [
'name' => 'FormTools',
'description' => 'A collection of form utilities for use in the backend.',
'author' => 'Tschallacka',
'icon' => 'icon-th-list'
];
}
public function registerFormWidgets()
{
return [
ColorPicker::class => 'tsch_color_picker',
FilteredCheckboxList::class => 'tsch_filtered_checkboxlist',
];
}
}