You are here

public function CookieCategoryListBuilder::getFormId in EU Cookie Compliance (GDPR Compliance) 8

Same name and namespace in other branches
  1. 2.0.x src/CookieCategoryListBuilder.php \Drupal\eu_cookie_compliance\CookieCategoryListBuilder::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/CookieCategoryListBuilder.php, line 24

Class

CookieCategoryListBuilder
Provides a listing of Cookie category entities.

Namespace

Drupal\eu_cookie_compliance

Code

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