Type Groups

This commit is contained in:
Gogs
2021-06-03 18:34:22 +02:00
parent 9fdfe9dfb1
commit 27410bf5c2
23 changed files with 437 additions and 145 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Fleet\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class AircraftTypeGroups 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();
}
}