You are here

public function Edit::getFormId in SimpleAds 8

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

Class

Edit
Edit advertisement form.

Namespace

Drupal\simpleads\Form\Ads

Code

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