You are here

public function ContentHubDeleteClientConfirmForm::getFormId in Acquia Content Hub 8.2

Returns a unique string identifying the form.

The returned ID should be a unique string that can be a valid PHP function name, since it's used in hook implementation names such as hook_form_FORM_ID_alter().

Return value

string The unique string identifying the form.

Overrides FormInterface::getFormId

1 method overrides ContentHubDeleteClientConfirmForm::getFormId()
ClientDeleteConfirmForm::getFormId in modules/acquia_contenthub_publisher/src/Form/Client/ClientDeleteConfirmForm.php
Returns a unique string identifying the form.

File

src/Form/ContentHubDeleteClientConfirmForm.php, line 249

Class

ContentHubDeleteClientConfirmForm
Class ContentHubDeleteClientConfirmForm.

Namespace

Drupal\acquia_contenthub\Form

Code

public function getFormId() {
  return "contenthub_delete_client_confirmation";
}