You are here

public function FormStep::updateStepInfo in Simple multi step form 8.x

Same name and namespace in other branches
  1. 8 src/FormStep.php \Drupal\simple_multistep\FormStep::updateStepInfo()

Update step info.

1 call to FormStep::updateStepInfo()
FormStep::__construct in src/FormStep.php
FormStepController constructor.

File

src/FormStep.php, line 68

Class

FormStep
Class FormStep.

Namespace

Drupal\simple_multistep

Code

public function updateStepInfo() {

  // Fetch list all steps.
  $this
    ->fetchSteps();

  // Fetch current step settings.
  $this
    ->fetchStepSettings();
}