You are here

public function FormsSteps::setStepCancelStepMode in Forms Steps 8

Sets a step's cancel step mode.

Parameters

string $step_id: The step ID to set the cancel step mode for.

string $mode: The step's cancel step mode.

Return value

\Drupal\forms_steps\StepInterface The forms_steps entity.

Overrides FormsStepsInterface::setStepCancelStepMode

File

src/Entity/FormsSteps.php, line 668

Class

FormsSteps
FormsSteps configuration entity to persistently store configuration.

Namespace

Drupal\forms_steps\Entity

Code

public function setStepCancelStepMode($step_id, $mode) {
  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]['cancelStepMode'] = $mode;
  return $this;
}