23 lines
509 B
PHP
23 lines
509 B
PHP
<?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);
|
|
}
|
|
}
|