You are here

public function AllowedBlocksForm::getFormId in Layout Builder Restrictions 8.2

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/layout_builder_restrictions_by_region/src/Form/AllowedBlocksForm.php, line 184

Class

AllowedBlocksForm
Provides form for designating allowed blocks.

Namespace

Drupal\layout_builder_restrictions_by_region\Form

Code

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