| 1 | <?php namespace VojtaSvoboda\Reservations\Controllers; |
||
| 7 | class Statuses extends Controller |
||
| 8 | { |
||
| 9 | public $implement = [ |
||
| 10 | 'Backend\Behaviors\ListController', |
||
| 11 | 'Backend\Behaviors\FormController', |
||
| 12 | 'Backend\Behaviors\ReorderController', |
||
| 13 | ]; |
||
| 14 | |||
| 15 | public $listConfig = 'config_list.yaml'; |
||
| 16 | public $formConfig = 'config_form.yaml'; |
||
| 17 | public $reorderConfig = 'config_reorder.yaml'; |
||
| 18 | |||
| 19 | public $requiredPermissions = [ |
||
| 20 | 'vojtasvoboda.reservations.statuses', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | public function __construct() |
||
| 29 | |||
| 30 | public function listOverrideColumnValue($record, $columnName, $definition = null) |
||
| 36 | } |
||
| 37 |