You are here

public function AutocompletionConfigurationListBuilder::getFormId in Search Autocomplete 8

Same name and namespace in other branches
  1. 2.x src/Controller/AutocompletionConfigurationListBuilder.php \Drupal\search_autocomplete\Controller\AutocompletionConfigurationListBuilder::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/Controller/AutocompletionConfigurationListBuilder.php, line 37

Class

AutocompletionConfigurationListBuilder
Provides a listing of autocompletion_configuration entities.

Namespace

Drupal\search_autocomplete\Controller

Code

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