You are here

public function FormsSteps::setStepCancelLabel in Forms Steps 8

Sets a step's cancel label.

Parameters

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

string $label: The step's cancel label.

Return value

\Drupal\forms_steps\StepInterface The forms_steps entity.

Overrides FormsStepsInterface::setStepCancelLabel

File

src/Entity/FormsSteps.php, line 626

Class

FormsSteps
FormsSteps configuration entity to persistently store configuration.

Namespace

Drupal\forms_steps\Entity

Code

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