Typeratings

This commit is contained in:
Gogs
2021-06-16 22:40:17 +02:00
parent 80b4516de4
commit 0c182914d9
15 changed files with 319 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php namespace GermanAirlinesVa\Schooling\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class ExamTyperatingQuestion 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();
}
public function listExtendQuery($query)
{
$query->where('typerating_id', '<>', null);
}
}