// +----------------------------------------------------------------------+ // // $Id$ // //REQUIRE ONCE {{{ //MECON {{{ require_once 'MECON/HTML/QuickForm.php'; require_once 'MECON/HTML/Error.php'; //}}} //SAMURAI {{{ require_once 'SAMURAI/Sistema.php'; //}}} require_once 'HTML/Image.php'; require_once 'HTML/Page.php'; // }}} //CREO LOS OBJETOS NECESARIOS {{{ if (!@$_GET['id_sistema']) { $FORM = new MECON_HTML_Error('No hay un perfil seleccionado'); } else { $PAGE = new HTML_Page(array ('doctype' => 'HTML 4.01 Transitional', 'charset' => 'iso-8859-1', 'lineend' => 'unix', 'language' => 'es', 'cache' => 'false', 'simple' => 'true')); $PAGE->addStyleSheet('/MECON/css/general_estilos.css'); $FORM = new MECON_HTML_QuickForm ('sistemas_datos','post','sistemas-datos'); $SISTEMA = new SAMURAI_Sistema ($DB, $_GET['id_sistema']); } // }}} //AGREGO LOS ELEMENTOS AL FORM {{{ $fecha_inicio = $SISTEMA->getFechaInicio(); $fecha_fin = $SISTEMA->getFechaFin(); $fecha_implementacion = $SISTEMA->getFechaImplementacion(); $fecha_inicio = $fecha_inicio ? $fecha_inicio->format("%d-%m-%Y") : '--'; $fecha_fin = $fecha_fin ? $fecha_fin->format("%d-%m-%Y") : '--'; $fecha_implementacion = $fecha_implementacion ? $fecha_implementacion->format("%d-%m-%Y") : '--'; $FORM->addElement ('static', 'id_sistema' , 'Id Sistema' , $SISTEMA->getId() ); $FORM->addElement ('static', 'nombre' , 'Nombre' , $SISTEMA->getNombre() ); $FORM->addElement ('static', 'descripcion', 'Descripcion' , $SISTEMA->getDescripcion()); $FORM->addElement ('static', 'fch_inicio' , 'Fecha Inicio' , $fecha_inicio ); $FORM->addElement ('static', 'fch_fin' , 'Fecha Fin' , $fecha_fin ); $FORM->addElement ('static', 'fch_imple' , 'Fecha Implementacion', $fecha_implementacion ); $FORM->addElement ('static', 'contacto' , 'Contacto' , $SISTEMA->getContacto() ); $FORM->freeze(); // }}} //DIBUJO LA PAGINA {{{ $PAGE->addBodyContent($FORM); $imagen = new HTML_Image('/MECON/images/general_cerrar.gif'); $PAGE->addBodyContent(''.$imagen->toHtml().''); $PAGE->setTitle('Datos del Sistema'); $PAGE->display(); // }}} //FIN ?>