public function Lightbox2SlideshowSettingsForm::getFormId in Lightbox2 8
Same name in this branch
- 8 src/Lightbox2SlideshowSettingsForm.php \Drupal\lightbox2\Lightbox2SlideshowSettingsForm::getFormId()
- 8 src/Form/Lightbox2SlideshowSettingsForm.php \Drupal\lightbox2\Form\Lightbox2SlideshowSettingsForm::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/ Lightbox2SlideshowSettingsForm.php, line 19 - Contains \Drupal\lightbox2\Form\Lightbox2SlideshowSettingsForm.
Class
Namespace
Drupal\lightbox2\FormCode
public function getFormId() {
return 'lightbox2_slideshow_settings_form';
}