| 1 | <?php namespace CosmicRadioTV\Podcast\Controllers; |
||
| 10 | class ReleaseTypes extends Controller |
||
| 11 | { |
||
| 12 | public $implement = [ |
||
| 13 | 'Backend.Behaviors.FormController', |
||
| 14 | 'Backend.Behaviors.ListController' |
||
| 15 | ]; |
||
| 16 | |||
| 17 | public $formConfig = 'config_form.yaml'; |
||
| 18 | public $listConfig = 'config_list.yaml'; |
||
| 19 | |||
| 20 | public $requiredPermissions = ['cosmicradiotv.podcast.access_release_types']; |
||
| 21 | |||
| 22 | public function __construct() |
||
| 28 | |||
| 29 | public function reorder() |
||
| 38 | |||
| 39 | public function onSaveOrder() |
||
| 48 | } |