25 lines
828 B
PHP
25 lines
828 B
PHP
<?php namespace Romanah\Gokbakja;
|
|
|
|
use System\Classes\PluginBase;
|
|
|
|
class Plugin extends PluginBase
|
|
{
|
|
public function registerComponents()
|
|
{
|
|
return [
|
|
'Romanah\Gokbakja\Components\Action' => 'action',
|
|
'Romanah\Gokbakja\Components\Production' => 'production',
|
|
'Romanah\Gokbakja\Components\MachineProduction' => 'machineProduction',
|
|
'Romanah\Gokbakja\Components\Sewer' => 'sewer',
|
|
'Romanah\Gokbakja\Components\Order' => 'order',
|
|
'Romanah\Gokbakja\Components\OrderItem' => 'orderItem',
|
|
'Romanah\Gokbakja\Components\Journal' => 'journal',
|
|
'Romanah\Gokbakja\Components\LoadTransport' => 'loadTransport',
|
|
];
|
|
}
|
|
|
|
public function registerSettings()
|
|
{
|
|
}
|
|
}
|