You are here

public function BreakpointListBuilder::getFormId in Bootstrap Layout Builder 1.x

Same name and namespace in other branches
  1. 2.x src/BreakpointListBuilder.php \Drupal\bootstrap_layout_builder\BreakpointListBuilder::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/BreakpointListBuilder.php, line 16

Class

BreakpointListBuilder
Provides a listing of layout builder breakpoints entities.

Namespace

Drupal\bootstrap_layout_builder

Code

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