home.php 538 Bytes
<?php

include_once 'sesiones/session_admin.php'; 

class Home extends Controller{
    function __construct(){
        parent::__construct();
    }

    function render(){ 

        if($_SESSION['id_perfil']==1 || $_SESSION['id_perfil']==2){

            $actas=$this->model->getCant('acta');
            $this->view->actas=$actas;

            $resoluciones=$this->model->getResolucion('resolucion');
            $this->view->resoluciones=$resoluciones;
        }
        
        $this->view->render('home/index');
        
    }

}

?>