You are here

public function All::getFormId in SimpleAds 8

Same name in this branch
  1. 8 src/Form/Groups/All.php \Drupal\simpleads\Form\Groups\All::getFormId()
  2. 8 src/Form/Ads/All.php \Drupal\simpleads\Form\Ads\All::getFormId()
  3. 8 src/Form/Campaigns/All.php \Drupal\simpleads\Form\Campaigns\All::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/Ads/All.php, line 18

Class

All
Advertisement listing form.

Namespace

Drupal\simpleads\Form\Ads

Code

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