* @author Vero: * @author Toni: * @package gvHIDRA */ class gvHidraMaps extends MappingManager { /** * constructor function * @return void */ function gvHidraMaps () { $this->_SetOptions(); /*camposDependientes*/ $this->_AddMapping('gvHrefreshUI', 'IgepAccionesGenericas'); $this->_AddForward('gvHrefreshUI', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_actualizar.php&panel=listar'); $this->_AddMapping('gvHautocomplete', 'IgepAccionesGenericas'); /*ventanaSeleccion*/ $this->_AddMapping('launchSelectionWindow', 'IgepAccionesGenericas'); $this->_AddForward('launchSelectionWindow', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_ventanaSeleccion.php'); $this->_AddMapping('abrirVentanaSeleccion', 'IgepAccionesGenericas'); $this->_AddForward('abrirVentanaSeleccion', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_ventanaSeleccion.php'); $this->_AddMapping('buscarVentanaSeleccion', 'IgepAccionesGenericas', ''); $this->_AddForward('buscarVentanaSeleccion', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_ventanaSeleccion.php'); $this->_AddMapping('ordenarTabla', 'IgepAccionesGenericas'); $this->_AddForward('ordenarTabla', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_ordenarTabla.php'); $this->_AddMapping('IgepSaltoVentana', 'IgepAccionesGenericas'); $this->_AddForward('IgepSaltoVentana', 'IgepSaltoVentana', 'phrame.php'); $this->_AddForward('IgepSaltoVentana', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_saltoModal.php'); $this->_AddMapping('IgepRegresoVentana', 'IgepAccionesGenericas'); $this->_AddForward('IgepRegresoVentana', 'IgepSaltoVentana', 'phrame.php'); $this->_AddForward('IgepRegresoVentana', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_saltoModal.php'); $this->_AddMapping('IgepInicioAplicacion', 'IgepAccionesGenericas'); $this->_AddForward('IgepInicioAplicacion', 'IgepOperacionOculto', 'index.php?view=igep/views/aplicacion.php'); $this->_AddMapping('cambiarPanelDetalle', 'IgepAccionesGenericas'); $this->_AddForward('cambiarPanelDetalle', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_cambiarDetalle.php'); $this->_AddMapping('cerrarAplicacion', 'gvHidraMainWindow'); $this->_AddForward('cerrarAplicacion', 'gvHidraCloseApp', 'index.php?view=igep/views/gvHidraCloseApp.php'); $this->_AddMapping('abrirAplicacion', 'gvHidraMainWindow'); $this->_AddForward('abrirAplicacion', 'gvHidraOpenApp', 'index.php?view=igep/views/aplicacion.php'); $this->_AddForward('abrirAplicacion', 'gvHidraCloseApp', 'index.php?view=igep/views/gvHidraCloseApp.php'); $this->_AddMapping('defaultPrint', 'IgepAccionesGenericas'); $this->_AddMapping('exportCSV', 'IgepAccionesGenericas'); $this->_AddMapping('focusChanged', 'IgepAccionesGenericas'); $this->_AddForward('focusChanged', 'IgepOperacionOculto', 'index.php?view=igep/views/igep_actualizar.php&panel=listar'); //Cargamos el mapeo específico de la organización (si existe) if(class_exists('CustomMapping')) { $mapping = new CustomMapping(); $this->_MergeMappings($mapping); } } }//FIN clase IgepComponentesMap ?>