You are here

public function RuleDeleteConfirmForm::getFormId in CRM Core 8

Same name and namespace in other branches
  1. 8.3 modules/crm_core_user_sync/src/Form/RuleDeleteConfirmForm.php \Drupal\crm_core_user_sync\Form\RuleDeleteConfirmForm::getFormId()

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

File

modules/crm_core_user_sync/src/Form/RuleDeleteConfirmForm.php, line 25

Class

RuleDeleteConfirmForm
Provides a confirmation form before clearing out the examples.

Namespace

Drupal\crm_core_user_sync\Form

Code

public function getFormId() {
  return 'crm_core_user_sync_rule_delete_confirm_form';
}