You are here

public function BreakLockForm::buildForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/Form/BreakLockForm.php \Drupal\views_ui\Form\BreakLockForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides EntityConfirmFormBase::buildForm

File

core/modules/views_ui/src/Form/BreakLockForm.php, line 99

Class

BreakLockForm
Builds the form to break the lock of an edited view.

Namespace

Drupal\views_ui\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  if (!$this->tempStore
    ->getMetadata($this->entity
    ->id())) {
    $form['message']['#markup'] = $this
      ->t('There is no lock on view %name to break.', [
      '%name' => $this->entity
        ->id(),
    ]);
    return $form;
  }
  return parent::buildForm($form, $form_state);
}