public function ConditionDeleteForm::getFormId in Context 8
Same name and namespace in other branches
- 8.4 modules/context_ui/src/Form/ConditionDeleteForm.php \Drupal\context_ui\Form\ConditionDeleteForm::getFormId()
- 8.0 modules/context_ui/src/Form/ConditionDeleteForm.php \Drupal\context_ui\Form\ConditionDeleteForm::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/
context_ui/ src/ Form/ ConditionDeleteForm.php, line 58
Class
Namespace
Drupal\context_ui\FormCode
public function getFormId() {
return 'context_ui_condition_delete_form';
}