function QueueExampleForm::getFormId
Same name in other branches
- 3.x modules/queue_example/src/Form/QueueExampleForm.php \Drupal\queue_example\Form\QueueExampleForm::getFormId()
- 8.x-1.x queue_example/src/Forms/QueueExampleForm.php \Drupal\queue_example\Forms\QueueExampleForm::getFormId()
Overrides FormInterface::getFormId
File
-
modules/
queue_example/ src/ Form/ QueueExampleForm.php, line 91
Class
- QueueExampleForm
- Form with examples on how to use queue.
Namespace
Drupal\queue_example\FormCode
public function getFormId() {
// Return a string that is the unique ID of our form. Best practice here is
// to namespace the form based on your module's name.
return 'queue_example';
}