You are here

public function PageVariantConfigureForm::getFormId in Page Manager 8.4

Same name and namespace in other branches
  1. 8 page_manager_ui/src/Form/PageVariantConfigureForm.php \Drupal\page_manager_ui\Form\PageVariantConfigureForm::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

page_manager_ui/src/Form/PageVariantConfigureForm.php, line 15

Class

PageVariantConfigureForm

Namespace

Drupal\page_manager_ui\Form

Code

public function getFormId() {

  // @todo this should vary by step/variant plugin id.
  return 'page_manage_variant_configure_form';
}