public function DataCollectorTableTestForm::getFormId in Charts 5.0.x
Same name and namespace in other branches
- 8.4 tests/modules/charts_test/src/Form/DataCollectorTableTestForm.php \Drupal\charts_test\Form\DataCollectorTableTestForm::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
- tests/
modules/ charts_test/ src/ Form/ DataCollectorTableTestForm.php, line 21
Class
- DataCollectorTableTestForm
- Class DataCollectorTableTestForm.
Namespace
Drupal\charts_test\FormCode
public function getFormId() {
return 'charts_data_collector_table_test_form';
}