Esempio n. 1
0
 function get($request)
 {
     $response = new Response($request);
     $data = Updates::getVersionStats(30);
     $this->tm->smarty->assign('title', 'Statistics');
     $this->tm->smarty->assign('output', $data);
     $response->code = Response::OK;
     $response->addHeader('Content-type', 'text/html');
     $response->body = $this->tm->render('stats');
     return $response;
 }