function ViewsForm::getFormId
Same name in other branches
- 8.9.x core/modules/views/src/Form/ViewsForm.php \Drupal\views\Form\ViewsForm::getFormId()
- 10 core/modules/views/src/Form/ViewsForm.php \Drupal\views\Form\ViewsForm::getFormId()
- 11.x core/modules/views/src/Form/ViewsForm.php \Drupal\views\Form\ViewsForm::getFormId()
Overrides FormInterface::getFormId
1 call to ViewsForm::getFormId()
- ViewsForm::buildForm in core/
modules/ views/ src/ Form/ ViewsForm.php - Form constructor.
File
-
core/
modules/ views/ src/ Form/ ViewsForm.php, line 128
Class
- ViewsForm
- Provides a base class for single- or multistep view forms.
Namespace
Drupal\views\FormCode
public function getFormId() {
$parts = [
$this->getBaseFormId(),
];
if (!empty($this->viewArguments)) {
// Append the passed arguments to ensure form uniqueness.
$parts = array_merge($parts, $this->viewArguments);
}
return implode('_', $parts);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.