You are here

public function Create::getFormId in SimpleAds 8

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

Class

Create
New advertisement campaign form.

Namespace

Drupal\simpleads\Form\Campaigns

Code

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