You are here

public function Lightbox2GeneralSettingsForm::getFormId in Lightbox2 8

Same name in this branch
  1. 8 src/Lightbox2GeneralSettingsForm.php \Drupal\lightbox2\Lightbox2GeneralSettingsForm::getFormId()
  2. 8 src/Form/Lightbox2GeneralSettingsForm.php \Drupal\lightbox2\Form\Lightbox2GeneralSettingsForm::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/Lightbox2GeneralSettingsForm.php, line 19
Contains \Drupal\lightbox2\Form\Lightbox2GeneralSettingsForm.

Class

Lightbox2GeneralSettingsForm

Namespace

Drupal\lightbox2\Form

Code

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