<?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
// +----------------------------------------------------------------------+
// | PHP Version 4 |
// +----------------------------------------------------------------------+
//
require_once 'MECON/HTML/QuickForm.php';
require_once 'MECON/HTML/Tabla.php';
-
+ require_once 'SAMURAI/Sistema.php';
//CREO LOS OBJETOS NECESARIOS {{{
$FORM = new MECON_HTML_QuickForm ('sel_sistema','post','sel-sistema');
- $SAMURAI = new Samurai($DB);
- $SISTEMAS = $SAMURAI->getSelectSistemas();
+ $SISTEMAS = SAMURAI_Sistema::getArraySistemas($DB);
// }}}
//AGREGO LOS ELEMENTOS DEL FORM {{{
$FORM->addElement ('header', 'cabecera', 'Seleccione el sistema con el cual quiere trabajar');
$group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Seleccionar');
$FORM->addGroup($group,'botones', '', ', ');
// }}}
-
//VALIDO EL FORMULARIO {{{
if ($FORM->validate()) {
$sistema =& $FORM->getElement ('sistemas');
- $tmp = $sistema->getSelected();
+ $tmp = $sistema->getSelected();
$_SESSION['samurai']['id_sistema'] = $tmp['0'];
if ($FORM->elementExists('responsable')) {