get_session(); $request = http_request::getInstance(); $parm = $request->get_parms('id'); $id = $parm['id']; $dashboard = new module_report_dashboard($session->get_usr_id()); $var = array( 'rs' => $dashboard->dashboard['activity_day'][$id], 'legendDay' => $dashboard->legendDay, "sbas_id" => $id, 'ajax_chart' => true ); $core = \bootstrap::getCore(); $twig = $core->getTwig(); $html = $twig->render('report/chart.twig', $var); $t = array("rs" => $html); echo json_encode($t);