}
//}}}
+//ACTIVAR_SISTEMAS {{{
+elseif (@!$accion || $accion == 'activar_sistema') {
+ //Creo los objetos necesarios {{{
+ $T_SISTEMAS =& new MECON_HTML_Tabla();
+ $IMG =& new MECON_HTML_Image('/MECON/images/general_tilde_azul.gif');
+ $LINK =& new MECON_HTML_Link('sistemas');
+ //}}}
+
+ //Obtengo la lista de sistemas (habilitados y no habilitados) {{{
+ $sistemas = SAMURAI_Sistema::getSistemas($DB, false);
+ //}}}
+
+ //Agrego la informacion a la tabla de sistemas {{{
+ $T_SISTEMAS->addRow(array('Listado de Sistemas de Sistemas Inactivos'), 'cabecera
+ colspan="4"');
+ $T_SISTEMAS->addRow(array('Id', 'Nombre', 'Descripcion', 'Activar'),
+ 'titulo');
+ //Agrego la info de los sistemas
+ foreach ($sistemas as $sistema) {
+ if (!$sistema->getEstado()) {
+ $LINK->setContents($IMG);
+ $LINK->setGetVars(
+ array(
+ 'accion' => 'activar_sistema_activar',
+ 'id_sist' => $sistema->getId(),
+ )
+ );
+ $row = array ( $sistema->getId(),
+ $sistema->getNombre(),
+ $sistema->getDescripcion(),
+ $LINK->toHtml()
+ );
+ $T_SISTEMAS->addRow($row);
+ }
+ }
+ $T_SISTEMAS->updateColAttributes(0, 'width="5%" align="center"');
+ $T_SISTEMAS->updateColAttributes(1, 'width="20%" align="center"');
+ $T_SISTEMAS->updateColAttributes(3, 'width="5%" align="center"');
+ $T_SISTEMAS->updateRowAttributes(0, 'align="left"');
+ //}}}
+
+ //Agrego la informacion al marco {{{
+ $LINK_VOLVER->setHref('consultas');
+ $MARCO->addBodyContent($T_SISTEMAS);
+ $MARCO->addTitle('Activacion de Sistemas');
+ $MARCO->addBodyContent('<BR>');
+ $T_VOLVER->addRow(array($LINK_VOLVER->toHtml()), 'align="left"');
+ $MARCO->addBodyContent($T_VOLVER);
+ //}}}
+}
+//}}}
+
+//ACTIVAR_SISTEMAS_ACTIVAR {{{
+elseif (@!$accion || $accion == 'activar_sistema_activar') {
+
+ //Creo los objetos necesarios {{{
+ $SISTEMA =& new SAMURAI_Sistema($DB, $id_sist);
+ //}}}
+ //Guardo la informacion {{{
+ $SISTEMA->setEstado(1);
+ $SISTEMA->guardarDatos('modificar');
+ //}}}
+
+ header ('Location: sistemas?accion=activar_sistema');
+}
+//}}}
+
//MUESTRO LA INFORMACION {{{
$MARCO->display();
exit;