Exemplo n.º 1
0
 public function index()
 {
     $usuario_id = Session::get('id');
     $this->eventos = Evento::getListadoEventos($usuario_id);
     $reporte = new Reporte();
     $this->progress_report = $reporte->getListadoReportePorTipo($usuario_id, 'progress_report');
     $this->demographics_report = $reporte->getListadoReportePorTipo($usuario_id, 'demographics_report');
     $this->beehive_report = $reporte->getListadoReportePorTipo($usuario_id, 'beehive_report');
     $this->read_only = false;
 }
Exemplo n.º 2
0
 public function show($key)
 {
     if (!($id = Security::getKey($key, 'show_calendar', 'int'))) {
         return Redirect::toAction('listar');
     }
     $usuario_id = $id;
     $this->eventos = Calendario::getCalendario($usuario_id);
     $reporte = new Reporte();
     $this->progress_report = $reporte->getListadoReportePorTipo($usuario_id, 'progress_report');
     $this->demographics_report = $reporte->getListadoReportePorTipo($usuario_id, 'demographics_report');
     $this->beehive_report = $reporte->getListadoReportePorTipo($usuario_id, 'beehive_report');
     $this->read_only = true;
     View::setPath('dashboard/index');
     View::select('index', 'backend/bee');
 }