1 | <?php namespace VojtaSvoboda\Brands\Controllers; |
||
10 | class Categories extends Controller |
||
11 | { |
||
12 | public $implement = [ |
||
13 | 'Backend\Behaviors\FormController', |
||
14 | 'Backend\Behaviors\ListController', |
||
15 | 'Backend\Behaviors\ReorderController', |
||
16 | ]; |
||
17 | |||
18 | public $formConfig = 'config_form.yaml'; |
||
19 | public $listConfig = 'config_list.yaml'; |
||
20 | public $reorderConfig = 'config_reorder.yaml'; |
||
21 | |||
22 | public $requiredPermissions = [ |
||
23 | 'vojtasvoboda.brands.categories', |
||
24 | ]; |
||
25 | |||
26 | public function __construct() |
||
32 | |||
33 | public function listOverrideColumnValue($record, $columnName, $definition = null) |
||
41 | } |
||
42 |