public function index() { if (!isset($_GET['p'])) { $_GET['p'] = 1; } if (!isset($_GET['q'])) { $_GET['q'] = ""; } if (!isset($_GET['criterio'])) { $_GET['criterio'] = "grupo.nombre_grupo"; } $obj = new grupo(); $data = array(); $data['data'] = $obj->index($_GET['q'], $_GET['p'], $_GET['criterio']); $data['query'] = $_GET['q']; $data['pag'] = $this->Pagination(array('rows' => $data['data']['rowspag'], 'url' => 'index.php?controller=grupo&action=index', 'query' => $_GET['q'])); $cols = array("CODIGO", "DESCRIPCION"); $opt = array("grupo.nombre_grupo" => "Nombre Grupo"); $data['grilla'] = $this->grilla("grupo", $cols, $data['data']['rows'], $opt, $data['pag'], true, true); $view = new View(); $view->setData($data); $view->setTemplate('../view/grupo/_Index.php'); $view->setLayout('../template/Layout.php'); $view->render(); }