Manufacturer Controller refactor
This commit is contained in:
Gogs
2021-06-03 19:56:23 +02:00
parent 27410bf5c2
commit d6dbb3f1e7
47 changed files with 1011 additions and 926 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Fleet\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class AircraftManufacturer 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();
}
}