| 1 | <?php namespace Bedard\Shop\Controllers; |
||
| 9 | class Promotions extends BackendController |
||
| 10 | { |
||
| 11 | public $implement = [ |
||
| 12 | 'Backend.Behaviors.FormController', |
||
| 13 | 'Backend.Behaviors.ListController' |
||
| 14 | ]; |
||
| 15 | |||
| 16 | public $formConfig = 'config_form.yaml'; |
||
| 17 | |||
| 18 | public $listConfig = 'config_list.yaml'; |
||
| 19 | |||
| 20 | public $registerPermissions = [ |
||
| 21 | 'bedard.shop.promotions.manage', |
||
| 22 | ]; |
||
| 23 | |||
| 24 | public function __construct() |
||
| 31 | } |
||
| 32 |