]> git.llucax.com Git - mecon/ai.git/blobdiff - lib/AI/Sistema.php
Se pasa HTML_Error a MECONlib.
[mecon/ai.git] / lib / AI / Sistema.php
index db067010a70ed9411ee868f7b4540d6bdace31d9..84a074e0f8768230053eb22617205c705af6c86f 100644 (file)
@@ -28,6 +28,8 @@
 //
 
 require_once 'AI/Error.php';
 //
 
 require_once 'AI/Error.php';
+// TODO - preguntar a gmeray si le sirve, yo no lo uso...
+require_once 'SAMURAI/Sistema.php';
 
 // +X2C Class 416 :AI_Sistema
 /**
 
 // +X2C Class 416 :AI_Sistema
 /**
@@ -45,6 +47,22 @@ class AI_Sistema {
      */
     var $sistema = 0;
 
      */
     var $sistema = 0;
 
+    /**
+     * Nombre del sistema (slo de lectura, extra?o de SAMURAI).
+     *
+     * @var    string $nombre
+     * @access public
+     */
+    var $nombre = '';
+
+    /**
+     * Descripcin del sistema (slo de lectura, extra?o de SAMURAI).
+     *
+     * @var    string $descripcion
+     * @access public
+     */
+    var $descripcion = '';
+
     /**
      * ?ono del sistema.
      *
     /**
      * ?ono del sistema.
      *
@@ -124,10 +142,15 @@ class AI_Sistema {
         // Asigno valores al objeto.
         extract($row);
         $this->sistema    = $sistema;
         // Asigno valores al objeto.
         extract($row);
         $this->sistema    = $sistema;
-        $this->icono      = $icono; # FIXME - new HTML_Icono (o no?)
+        $this->icono      = $icono;
         $this->link       = $link;
         $this->link_ayuda = $link_ayuda;
         $this->habilitado = $habilitado;
         $this->link       = $link;
         $this->link_ayuda = $link_ayuda;
         $this->habilitado = $habilitado;
+        // Obtengo datos de SAMURAI. FIXME - preguntar a marrese por manejo de errores.
+        // TODO - preguntar a gmeray si le sirve, yo no lo uso...
+        #$sist = new SAMURAI_Sistema($db, $sistema);
+        #$this->nombre       = $sist->getNombre();
+        #$this->descripcion  = $sist->getDescripcion();
         return true;
     }
     // -X2C
         return true;
     }
     // -X2C