| 1 | <?php |
||
| 21 | class FilesystemEntitiesController extends BaseController |
||
| 22 | { |
||
| 23 | /* |
||
| 24 | * fields we accept to create |
||
| 25 | * |
||
| 26 | * @var array |
||
| 27 | */ |
||
| 28 | protected $createFields = ['id', 'filesystem_id', 'entity_id', 'system_modules_id', 'companies_id', 'field_name', 'created_at']; |
||
| 29 | |||
| 30 | /* |
||
| 31 | * fields we accept to create |
||
| 32 | * |
||
| 33 | * @var array |
||
| 34 | */ |
||
| 35 | protected $updateFields = ['id', 'filesystem_id', 'entity_id', 'system_modules_id', 'companies_id', 'field_name', 'created_at']; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * set objects. |
||
| 39 | * |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | public function onConstruct() |
||
| 52 | } |
||
| 53 |