Aircraft Controller refactor and localization

This commit is contained in:
Gogs
2021-06-03 20:25:24 +02:00
parent d6dbb3f1e7
commit 3e90d8cbe1
13 changed files with 40 additions and 33 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Fleet\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class Aircraft 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();
}
}