Add named parameters support to ServerStatsController.

pull/3779/head
Isaac Connor 2023-10-26 18:26:51 -04:00
parent 69891c877e
commit e8a866e504
1 changed files with 11 additions and 2 deletions

View File

@ -38,8 +38,17 @@ class ServerStatsController extends AppController {
public function index() {
$this->ServerStat->recursive = 0;
$options = '';
$stats = $this->ServerStat->find('all', $options);
$named_params = $this->request->params['named'];
if ( $named_params ) {
$this->FilterComponent = $this->Components->load('Filter');
$conditions = $this->FilterComponent->buildFilter($named_params);
} else {
$conditions = array();
}
$stats = $this->ServerStat->find('all', ['conditions'=>$conditions,
'order' => array('TimeStamp ASC'),
]);
$this->set(array(
'serverstats' => $stats,
'_serialize' => array('serverstats')