You are here

public function Step::setHideDelete in Forms Steps 8

Set the hidden state of the delete button.

Parameters

bool $value: TRUE if hidden | FALSE otherwise.

Overrides StepInterface::setHideDelete

File

src/Step.php, line 296

Class

Step
A value object representing a step state.

Namespace

Drupal\forms_steps

Code

public function setHideDelete($value) {
  $this->hideDelete = $value;
}