21 lines
512 B
PHP
21 lines
512 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\Sewer' => 'sewer',
|
|
'Romanah\Gokbakja\Components\Order' => 'order',
|
|
];
|
|
}
|
|
|
|
public function registerSettings()
|
|
{
|
|
}
|
|
}
|