Revert "monitoring: Add DataView::handleRequest() (WIP)"

This reverts commit 4c1375834c.

refs #9967
This commit is contained in:
Eric Lippmann 2015-09-07 13:20:18 +02:00
parent f12c740046
commit 1615ed94b2
1 changed files with 0 additions and 16 deletions

View File

@ -625,20 +625,4 @@ abstract class DataView implements QueryInterface, SortRules, FilterColumns, Ite
{
return $this->getQuery()->fetchPairs();
}
/**
* Handle the given request
*
* This method is work in progress as it's missing pagination, sorting and output format handling.
*
* @param Request $request
*
* @return $this
*/
public function handleRequest(Request $request)
{
$params = $request->getUrlParams();
$this->applyFilter(Filter::fromQuerystring((string) $params));
return $this;
}
}