]> git.llucax.com Git - mecon/ai.git/blobdiff - sistema/local_lib/Sistema.php
Se completa la primera alfa. Ahora se hace todo desde el index.php.
[mecon/ai.git] / sistema / local_lib / Sistema.php
index 746be87feba429f3f7ef048e26f8069284e9f1e4..2d2f63a826b2f15a7e49e5fd19d954fb56ff998f 100644 (file)
@@ -31,6 +31,8 @@ require_once 'AIError.php';
 
 // +X2C Class 416 :Sistema
 /**
+ * Sistema.
+ *
  * @access public
  */
 class Sistema {
@@ -61,10 +63,10 @@ class Sistema {
     /**
      * Enlace a la ayuda del sistema.
      *
-     * @var    string $linkAyuda
+     * @var    string $link_ayuda
      * @access public
      */
-    var $linkAyuda = '';
+    var $link_ayuda = '';
 
     /**
      * Indica si esta habilitado.
@@ -83,7 +85,7 @@ class Sistema {
      * @return void
      * @access public
      */
-    function Sistema($sistema = 0)// ~X2C
+    function Sistema($sistema = 0) // ~X2C
     {
         $this->sistema = $sistema;
     }
@@ -96,7 +98,7 @@ class Sistema {
      * @return PEAR_Error
      * @access public
      */
-    function cargar($db)// ~X2C
+    function cargar($db) // ~X2C
     {
         $sistema = intval($this->sistema);
         if (is_a($db, 'db_result')) {
@@ -123,7 +125,7 @@ class Sistema {
         $this->sistema    = $sistema;
         $this->icono      = $icono; # FIXME - new HTML_Icono (o no?)
         $this->link       = $link;
-        $this->linkAyuda  = $link_ayuda;
+        $this->link_ayuda = $link_ayuda;
         $this->habilitado = $habilitado;
         return true;
     }
@@ -136,14 +138,14 @@ class Sistema {
      * @return PEAR_Error
      * @access public
      */
-    function guardar($db)// ~X2C
+    function guardar($db) // ~X2C
     {
         $sistema = intval($this->sistema);
         $where    = '';
         $datos    = array(
             'icono'      => $this->icono,
             'link'       => $this->link,
-            'link_ayuda' => $this->linkAyuda,
+            'link_ayuda' => $this->link_ayuda,
             'habilitado' => $this->habilitado ? 1 : 0,
         );
         if ($sistema) {
@@ -174,7 +176,7 @@ class Sistema {
      * @return PEAR_Error
      * @access public
      */
-    function borrar($db)// ~X2C
+    function borrar($db) // ~X2C
     {
         $sistema = intval($this->sistema);
         if ($sistema) {
@@ -194,7 +196,7 @@ class Sistema {
      * @return Sistema
      * @access public
      */
-    function __clone()// ~X2C
+    function __clone() // ~X2C
     {
         return $this;
     }
@@ -202,4 +204,4 @@ class Sistema {
 
 } // -X2C Class :Sistema
 
-?>
+?>
\ No newline at end of file