2014-05-14 13:24:20 +00:00
|
|
|
<?php namespace TestVendor\Test;
|
|
|
|
|
|
|
|
|
|
use System\Classes\PluginBase;
|
|
|
|
|
|
|
|
|
|
class Plugin extends PluginBase
|
|
|
|
|
{
|
|
|
|
|
public function pluginDetails()
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'name' => 'Another Test Plugin',
|
|
|
|
|
'description' => 'Test plugin used by unit tests with the same name.',
|
|
|
|
|
'author' => 'Test Vendor'
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-25 01:07:51 +00:00
|
|
|
public function registerFormWidgets()
|
|
|
|
|
{
|
|
|
|
|
return [
|
|
|
|
|
'TestVendor\Test\FormWidgets\Sample' => [
|
|
|
|
|
'label' => 'Sample',
|
|
|
|
|
'code' => 'sample'
|
|
|
|
|
]
|
|
|
|
|
];
|
|
|
|
|
}
|
2017-04-24 11:38:19 +00:00
|
|
|
}
|