You are here

public function Authorize::getFormId in DRD Agent 8.3

Same name and namespace in other branches
  1. 4.0.x src/Form/Authorize.php \Drupal\drd_agent\Form\Authorize::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/Authorize.php, line 42

Class

Authorize
Authorize a new dashboard for this drd-agent.

Namespace

Drupal\drd_agent\Form

Code

public function getFormId() : string {
  return 'drd_agent_authorize_form';
}