public ViewExecutable::setExposedInput($filters)
Sets the exposed filters input to an array.
Parameters
string[] $filters: The values taken from the view's exposed filters and sorts.
File
- core/modules/views/src/ViewExecutable.php, line 659
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\views
Code
public function setExposedInput($filters) { $this->exposed_input = $filters; }
Please login to continue.