You are here

public function CacheControlForm::getFormId in Akamai 8.3

Same name and namespace in other branches
  1. 8 lib/Drupal/akamai/Form/CacheControlForm.php \Drupal\akamai\Form\CacheControlForm::getFormID()
  2. 8.2 src/Form/CacheControlForm.php \Drupal\akamai\Form\CacheControlForm::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/CacheControlForm.php, line 67

Class

CacheControlForm
A simple form for testing the Akamai integration, or doing manual clears.

Namespace

Drupal\akamai\Form

Code

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