| 1 | <?php |
||
| 17 | class UserConfigController extends BaseController |
||
| 18 | { |
||
| 19 | /* |
||
| 20 | * fields we accept to create |
||
| 21 | * |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | protected $createFields = []; |
||
| 25 | |||
| 26 | /* |
||
| 27 | * fields we accept to create |
||
| 28 | * |
||
| 29 | * @var array |
||
| 30 | */ |
||
| 31 | protected $updateFields = []; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * set objects. |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | public function onConstruct() |
||
| 45 | } |
||
| 46 |