public function Step::setDisplayPrevious in Forms Steps 8
Set the display state of the previous button.
Parameters
bool $value: TRUE if displayed | FALSE otherwise.
Overrides StepInterface::setDisplayPrevious
File
- src/
Step.php, line 383
Class
- Step
- A value object representing a step state.
Namespace
Drupal\forms_stepsCode
public function setDisplayPrevious($value) {
return $this->displayPrevious = $value;
}