You are here

public function SettingsForm::getFormId in Salesforce Suite 8.3

Same name in this branch
  1. 8.3 src/Form/SettingsForm.php \Drupal\salesforce\Form\SettingsForm::getFormId()
  2. 8.3 modules/salesforce_logger/src/Form/SettingsForm.php \Drupal\salesforce_logger\Form\SettingsForm::getFormId()
  3. 8.3 modules/salesforce_encrypt/src/Form/SettingsForm.php \Drupal\salesforce_encrypt\Form\SettingsForm::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/salesforce_encrypt/src/Form/SettingsForm.php, line 56

Class

SettingsForm
Base form for key add and edit forms.

Namespace

Drupal\salesforce_encrypt\Form

Code

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