public function FormsSteps::setStepCancelRoute in Forms Steps 8
Sets a step's cancel route.
Parameters
string $step_id: The step ID to set the route for.
string $route: The step's cancel route.
Return value
\Drupal\forms_steps\StepInterface The forms_steps entity.
Overrides FormsStepsInterface::setStepCancelRoute
File
- src/
Entity/ FormsSteps.php, line 639
Class
- FormsSteps
- FormsSteps configuration entity to persistently store configuration.
Namespace
Drupal\forms_steps\EntityCode
public function setStepCancelRoute($step_id, $route) {
if (!isset($this->steps[$step_id])) {
throw new \InvalidArgumentException("The Step '{$step_id}' does not exist in forms steps '{$this->id()}'");
}
$this->steps[$step_id]['cancelRoute'] = $route;
return $this;
}