2023-09-14 20:16:27 +00:00
|
|
|
<?php namespace Romanah\Gokbakja;
|
|
|
|
|
|
|
|
|
|
use System\Classes\PluginBase;
|
|
|
|
|
|
|
|
|
|
class Plugin extends PluginBase
|
|
|
|
|
{
|
|
|
|
|
public function registerComponents()
|
|
|
|
|
{
|
2023-09-17 07:01:15 +00:00
|
|
|
return [
|
|
|
|
|
'Romanah\Gokbakja\Components\Action' => 'action',
|
2023-11-06 21:06:48 +00:00
|
|
|
'Romanah\Gokbakja\Components\RulonAction' => 'rulonAction',
|
|
|
|
|
'Romanah\Gokbakja\Components\BagAction' => 'bagAction',
|
2023-09-18 20:22:50 +00:00
|
|
|
'Romanah\Gokbakja\Components\Production' => 'production',
|
2023-10-06 20:47:05 +00:00
|
|
|
'Romanah\Gokbakja\Components\MachineProduction' => 'machineProduction',
|
2023-10-04 20:51:27 +00:00
|
|
|
'Romanah\Gokbakja\Components\Sewer' => 'sewer',
|
|
|
|
|
'Romanah\Gokbakja\Components\Order' => 'order',
|
2023-10-23 22:37:45 +00:00
|
|
|
'Romanah\Gokbakja\Components\OrderItem' => 'orderItem',
|
2023-11-04 08:35:11 +00:00
|
|
|
'Romanah\Gokbakja\Components\Journal' => 'journal',
|
2023-11-05 21:08:52 +00:00
|
|
|
'Romanah\Gokbakja\Components\LoadTransport' => 'loadTransport',
|
2023-12-12 12:08:47 +00:00
|
|
|
'Romanah\Gokbakja\Components\Drobika' => 'drobika',
|
2023-09-17 07:01:15 +00:00
|
|
|
];
|
2023-09-14 20:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function registerSettings()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|