You are here

public function FieldBlockConfigForm::getFormId in Field as Block 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

src/Form/FieldBlockConfigForm.php, line 104

Class

FieldBlockConfigForm
Configuration for select Entity types and delete blocks of unused types.

Namespace

Drupal\fieldblock\Form

Code

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