Alternates

This commit is contained in:
2021-08-05 01:22:34 +02:00
parent 772231231d
commit 4fe5935e30
18 changed files with 316 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Routes\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class Alternate 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();
}
}