You are here

public function AssemblerForm::getFormId in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.6

Same name and namespace in other branches
  1. 8.8 src/Form/AssemblerForm.php \Drupal\varbase\Form\AssemblerForm::getFormId()
  2. 8.4 src/Form/AssemblerForm.php \Drupal\varbase\Form\AssemblerForm::getFormId()
  3. 8.5 src/Form/AssemblerForm.php \Drupal\varbase\Form\AssemblerForm::getFormId()
  4. 8.7 src/Form/AssemblerForm.php \Drupal\varbase\Form\AssemblerForm::getFormId()
  5. 9.0.x src/Form/AssemblerForm.php \Drupal\varbase\Form\AssemblerForm::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/Form/AssemblerForm.php, line 72

Class

AssemblerForm
Defines form for selecting extra components for the assembler to install.

Namespace

Drupal\varbase\Form

Code

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