public function BlockAddForm::getFormId in Context 8.0
Same name and namespace in other branches
- 8.4 src/Reaction/Blocks/Form/BlockAddForm.php \Drupal\context\Reaction\Blocks\Form\BlockAddForm::getFormId()
- 8 src/Reaction/Blocks/Form/BlockAddForm.php \Drupal\context\Reaction\Blocks\Form\BlockAddForm::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
- src/
Reaction/ Blocks/ Form/ BlockAddForm.php, line 12
Class
Namespace
Drupal\context\Reaction\Blocks\FormCode
public function getFormId() {
return 'context_reaction_blocks_add_block_form';
}