Skip to content
Snippets Groups Projects
Commit 2ee2ea40 authored by Nia Kathoni's avatar Nia Kathoni Committed by Nia Kathoni
Browse files

Issue #3492320: Provide a getter method for the views csv query plugin where property

parent cea477c0
No related branches found
No related tags found
1 merge request!20Issue #3492320: Provide a getter method for the views csv query plugin where property
Pipeline #361544 passed with warnings
......@@ -74,7 +74,7 @@ class ViewsCsvQuery extends QueryPluginBase {
*
* @var array
*/
public $where = [];
public array $where = [];
/**
* A simple array of filter clauses.
......@@ -493,6 +493,16 @@ class ViewsCsvQuery extends QueryPluginBase {
];
}
/**
* Retrieves the conditions placed on this query.
*
* @return array
* The conditions.
*/
public function &getWhere(): array {
return $this->where;
}
/**
* To store the filter values required to pick the node from the csv.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment