TypeGroups Localization and refactor

This commit is contained in:
Gogs
2021-06-03 20:44:31 +02:00
parent 3e90d8cbe1
commit dc1a64b32d
14 changed files with 30 additions and 29 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Fleet\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class AircraftTypeGroup extends Controller
{
public $implement = ['Backend\Behaviors\ListController', 'Backend\Behaviors\FormController'];
public $listConfig = 'config_list.yaml';
public $formConfig = 'config_form.yaml';
public function __construct()
{
parent::__construct();
}
}