Rank Question

This commit is contained in:
Gogs
2021-06-16 22:08:53 +02:00
parent dfe1530d27
commit e4373729c5
20 changed files with 375 additions and 52 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Schooling\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class ExamMemberRankQuestion 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();
}
}