TYPO3  7.6
form/Configuration/Backend/AjaxRoutes.php
Go to the documentation of this file.
1 <?php
3 
7 return [
8  // Loads the current form wizard data
9  'formwizard_load' => [
10  'path' => '/wizard/form/load',
11  'target' => WizardController::class . '::loadAction'
12  ],
13 
14  // Save the current form wizard
15  'formwizard_save' => [
16  'path' => '/wizard/form/save',
17  'target' => WizardController::class . '::saveAction'
18  ],
19 ];