public function Create::getFormId in SimpleAds 8
Same name in this branch
- 8 src/Form/Groups/Create.php \Drupal\simpleads\Form\Groups\Create::getFormId()
- 8 src/Form/Ads/Create.php \Drupal\simpleads\Form\Ads\Create::getFormId()
- 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/ Groups/ Create.php, line 25
Class
- Create
- New advertisement group form.
Namespace
Drupal\simpleads\Form\GroupsCode
public function getFormId() {
return 'simpleads_group_create_form';
}