]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/HTML/TablaDB.php
- Cambio un query a BASE.Tabla
[mecon/meconlib.git] / lib / MECON / HTML / TablaDB.php
index 4e06d259a8f7762daf2357d3200c4b276f06170a..6852ba91936ce4fade804d4a041a15ee1c52e65d 100644 (file)
@@ -29,6 +29,7 @@ require_once 'MECON/DB/Pager.php';
 require_once 'MECON/Array/Pager.php';
 require_once 'MECON/HTML/Error.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/Array/Pager.php';
 require_once 'MECON/HTML/Error.php';
 require_once 'MECON/HTML/Link.php';
+require_once 'MECON/HTML/Icon.php';
 require_once 'MECON/HTML/Tabla.php';
 
 /// Prefijo a usar para las variables GET que genera la tabla.
 require_once 'MECON/HTML/Tabla.php';
 
 /// Prefijo a usar para las variables GET que genera la tabla.
@@ -145,9 +146,9 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
      */
     function addPager($result, $tipo = null, $link = null, $limit = 10, $maxpages = 21, $getvar = 'from') {
         // Creo el pager con el resultado.
      */
     function addPager($result, $tipo = null, $link = null, $limit = 10, $maxpages = 21, $getvar = 'from') {
         // Creo el pager con el resultado.
-       $pager = (is_array($result))?
-               new MECON_Array_Pager($result, @$_GET[$this->_getVarPrefix.$getvar], $limit, $maxpages):
-               new MECON_DB_Pager($result, @$_GET[$this->_getVarPrefix.$getvar], $limit, $maxpages);
+        $pager = (is_array($result))?
+                new MECON_Array_Pager($result, @$_GET[$this->getGetVarPrefix().$getvar], $limit, $maxpages):
+                new MECON_DB_Pager($result, @$_GET[$this->getGetVarPrefix().$getvar], $limit, $maxpages);
 
         // Obtengo un link válido.
         if (!$link) {
 
         // Obtengo un link válido.
         if (!$link) {
@@ -641,21 +642,20 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
                 break;
         }
         if ($activo === true) {
                 break;
         }
         if ($activo === true) {
-            $img = new MECON_HTML_Image("/MECON/images/general_$id",
-                '('.strtoupper($id{0}).')');
-            $img->updateAttributes(array('title' => ucfirst($id)));
-            $link->addContents($img);
+            $img = new MECON_HTML_Icon($id, $link, null,
+                array('title' => ucfirst($id)));
+            $l = $img->getLink();
             foreach ($campos as $campo) {
                 $format = null;
                 if (is_array($campo)) {
                     list($campo, $format) = $campo;
                 }
             foreach ($campos as $campo) {
                 $format = null;
                 if (is_array($campo)) {
                     list($campo, $format) = $campo;
                 }
-                $link->setGetVar($this->getGetVarPrefix().$campo, $format);
+                $l->setGetVar($this->getGetVarPrefix().$campo, $format);
             }
             }
-            $this->addRowsData($link, array(), $lugar);
+            $this->addRowsData($l, array(), $lugar);
         } elseif ($activo === false) {
         } elseif ($activo === false) {
-            $img = new MECON_HTML_Image("/MECON/images/general_{$id}_des", '(-)');
-            $img->updateAttributes(array('title' => ucfirst($id)));
+            $img = new MECON_HTML_Icon($id.'_des', null, '-',
+                array('title' => ucfirst($id)));
             $this->addRowsData($img, array(), $lugar);
         } else {
             $campos[] = $activo;
             $this->addRowsData($img, array(), $lugar);
         } else {
             $campos[] = $activo;
@@ -682,17 +682,16 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla {
 function MECON_HTML_TablaDB_callback_addRowsIcon($campos, $args) {
     list($tipo, $link, $activo) = $args;
     if ($campos[$activo]) {
 function MECON_HTML_TablaDB_callback_addRowsIcon($campos, $args) {
     list($tipo, $link, $activo) = $args;
     if ($campos[$activo]) {
-        $img = new MECON_HTML_Image("/MECON/images/general_$tipo",
-            '('.strtoupper($tipo{0}).')');
-        $img->updateAttributes(array('title' => ucfirst($tipo)));
-        $link->addContents($img);
+        $img = new MECON_HTML_Icon($tipo, $link, null,
+            array('title' => ucfirst($tipo)));
+        $l = $img->getLink();
         foreach ($campos as $campo => $valor) {
         foreach ($campos as $campo => $valor) {
-            $link->setGetVar(MECON_HTML_TablaDB::getGetVarPrefix().$campo, $valor);
+            $l->setGetVar(MECON_HTML_TablaDB::getGetVarPrefix().$campo, $valor);
         }
         }
-        return $link->toHtml();
+        return $l->toHtml();
     } else {
     } else {
-        $img = new MECON_HTML_Image("/MECON/images/general_{$tipo}_des", '(-)');
-        $img->updateAttributes(array('title' => ucfirst($tipo)));
+        $img = new MECON_HTML_Icon($tipo.'_des', null, '-',
+            array('title' => ucfirst($tipo)));
         return $img->toHtml();
     }
 }
         return $img->toHtml();
     }
 }