public function EnvironmentIndicatorDeleteForm::getFormId in Environment Indicator 8.3
Same name and namespace in other branches
- 8.2 lib/Drupal/environment_indicator/Form/EnvironmentIndicatorDeleteForm.php \Drupal\environment_indicator\Form\EnvironmentIndicatorDeleteForm::getFormID()
- 4.x src/Form/EnvironmentIndicatorDeleteForm.php \Drupal\environment_indicator\Form\EnvironmentIndicatorDeleteForm::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 EntityForm::getFormId
File
- src/
Form/ EnvironmentIndicatorDeleteForm.php, line 21
Class
- EnvironmentIndicatorDeleteForm
- Provides a deletion confirmation form for environment_indicator environment.
Namespace
Drupal\environment_indicator\FormCode
public function getFormId() {
return 'environment_indicator_environment_confirm_delete';
}