You are here

public function ClientDeleteConfirmForm::buildForm in Acquia Content Hub 8.2

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 ContentHubDeleteClientConfirmForm::buildForm

File

modules/acquia_contenthub_publisher/src/Form/Client/ClientDeleteConfirmForm.php, line 30

Class

ClientDeleteConfirmForm
Class ClientDeleteConfirmForm.

Namespace

Drupal\acquia_contenthub_publisher\Form\Client

Code

public function buildForm(array $form, FormStateInterface $form_state, $uuid = NULL) : array {
  $this->uuid = $uuid;
  return parent::buildForm($form, $form_state);
}