function ViewsForm::getFormId

Same name and namespace in other branches
  1. 11.x core/modules/views/src/Form/ViewsForm.php \Drupal\views\Form\ViewsForm::getFormId()
  2. 10 core/modules/views/src/Form/ViewsForm.php \Drupal\views\Form\ViewsForm::getFormId()
  3. 8.9.x core/modules/views/src/Form/ViewsForm.php \Drupal\views\Form\ViewsForm::getFormId()

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\Form

Code

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.