You are here

public function JquerySocialStreamAdminForm::getFormId in jQuery social stream 8.2

Same name and namespace in other branches
  1. 8 src/Form/JquerySocialStreamAdminForm.php \Drupal\jquery_social_stream\Form\JquerySocialStreamAdminForm::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/JquerySocialStreamAdminForm.php, line 19
Contains \Drupal\jquery_social_stream\Form\JquerySocialStreamAdminForm.

Class

JquerySocialStreamAdminForm

Namespace

Drupal\jquery_social_stream\Form

Code

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