g_sto/plugins/romanah/gokbakja/Plugin.php

28 lines
1.0 KiB
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\RulonAction' => 'rulonAction',
'Romanah\Gokbakja\Components\BagAction' => 'bagAction',
'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',
'Romanah\Gokbakja\Components\Drobika' => 'drobika',
];
}
public function registerSettings()
{
}
}