You are here

public function FormsSteps::setStepEntityBundle in Forms Steps 8

Sets a step's Entity bundle.

Parameters

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

int $entityBundle: The step's entity bundle.

Return value

\Drupal\forms_steps\StepInterface The forms_steps entity.

Overrides FormsStepsInterface::setStepEntityBundle

File

src/Entity/FormsSteps.php, line 550

Class

FormsSteps
FormsSteps configuration entity to persistently store configuration.

Namespace

Drupal\forms_steps\Entity

Code

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