public function execute() { $config = $this->getConfig(); $tipoTercero = new tipoTerceroTable($config); $this->objTipoTercero = $tipoTercero->getAll(); $this->defineView('tipoTercero', 'index', 'html'); }
public function execute() { $id = filter_input(INPUT_GET, 'id'); $config = $this->getConfig(); $tipoTercero = new tipoTerceroTable($config); $this->objTipoTercero = $tipoTercero->getById($id); $this->defineView('tipoTercero', 'verView', 'html'); }
public function execute() { $config = $this->getConfig(); $tipoTercero = new tipoTerceroTable($config); $id = filter_input(INPUT_GET, 'id'); $tipoTercero->setId($id); $tipoTercero->delete(); header('Location: ' . $config->getUrl() . 'index.php/tipoTercero/index'); }
public function execute() { $id = filter_input(INPUT_POST, 'tit_id'); $tipoTercero = new tipoTerceroTable(); $tipoTercero->setId($id); $tipoTercero->delete(); $variables = array('data' => array('code' => 200)); $this->defineView('tipoTercero', 'eliminar', $variables, 'json'); }
public function execute() { $config = $this->getConfig(); $formTipoTercero = filter_input_array(INPUT_POST)['tipoTercero']; $tipoTercero = new tipoTerceroTable($config); $tipoTercero->setDescripcion($formTipoTercero['descripcion']); $this->objTipoTercero = $tipoTercero->save(); header('Location: ' . $config->getUrl() . 'index.php/tipoTercero/index'); exit; }
public function execute() { $config = $this->getConfig(); $id = filter_input(INPUT_GET, 'id'); $tipoTercero = new tipoTerceroTable($config); $this->objTipoTercero = $tipoTercero->getById($id); // $variables = array ( // 'objPersona'=>$objPersona // ); $this->defineView('tipoTercero', 'editarView', 'html'); }
public function execute() { $config = $this->getConfig(); $cargo = new cargoTable($config); $this->objcargo = $cargo->getAll(); $tipoId = new tipoIdTable($config); $this->objTipoId = $tipoId->getAll(); $tipoTercero = new tipoTerceroTable($config); $this->objTipoTercero = $tipoTercero->getAll(); $this->defineView('tercero', 'nuevoView', 'html'); }
public function execute() { $config = $this->getConfig(); $cargo = new cargoTable($config); $this->objcargo = $cargo->getAll(); $tipoId = new tipoIdTable($config); $this->objTipoId = $tipoId->getAll(); $tipoTercero = new tipoTerceroTable($config); $this->objTipoTercero = $tipoTercero->getAll(); $metodo = new terceroTable($config); $paginacion = new Zebra_Pagination(); $this->objRespuesta = $metodo->total(); $respuesta = $this->objRespuesta[0]; $resultado = 5; $pagina = ($paginacion->get_page() - 1) * $resultado; $indicio = filter_input(INPUT_POST, 'filtro'); if (empty($indicio)) { $this->objMetodo = $metodo->pager($resultado, $pagina); } else { $this->objFiltro = $metodo->filtro($indicio); $this->objMetodo = $this->objFiltro; } $this->defineView('tercero', 'index', 'html'); }