'abrirAplicacion') { include_once('igep/include_class.php'); IgepSession::session_start(); } include_once('igep/include_all.php'); //error global global $g_error; $g_error =& new IgepError(); /*Si estamos en desarrollo creamos el mappings cada vez para que sean efectivos los cambios*/ if(ConfIgep::es_desarrollo()===true) IgepSession::borraPanel(_MAPPING); if(!IgepSession::existePanel(_MAPPING)){ $go_map = new ComponentesMap(); IgepSession::_guardaPanelIgep(_MAPPING,$go_map); } else $go_map = &IgepSession::damePanel(_MAPPING); //release control to controller for further processing if(!IgepSession::existePanel(_CONTROLLER)){ $controller = new ActionController($go_map->GetOptions()); IgepSession::_guardaPanelIgep(_CONTROLLER,$controller); } else{ $controller = &IgepSession::damePanel(_CONTROLLER); } $controller->process($go_map->GetMappings(), $_REQUEST); ?>