]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/DB/Pager.php
Icono para ver listas de datos, hecho para el sistema de ART!!!!!!!
[mecon/meconlib.git] / lib / MECON / DB / Pager.php
index bb030e7ec8d13256e7bd1149fc3067b0bd56e1b3..b492bc3735d60e6ad593c3711913384da960ad55 100644 (file)
@@ -63,6 +63,10 @@ require_once 'DB.php';
 class MECON_DB_Pager extends DB_Result
 {
 
+    var $currentpage = 0;
+    var $current = 0;
+    var $to = 0;
+
     /**
     * Constructor
     *
@@ -100,10 +104,10 @@ class MECON_DB_Pager extends DB_Result
     */
     function MECON_DB_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
     {
-        $this->res->dbh = $res->dbh;
-        $this->res->result = $res->result;
-        $this->res->row_counter = $res->row_counter;
-        $this->res->limit_from = $res->limit_from;
+        $this->dbh = $res->dbh;
+        $this->result = $res->result;
+        $this->row_counter = $res->row_counter;
+        $this->limit_from = $res->limit_from;
         $this->from = $from;
         $this->limit = $limit;
         $this->numrows = $numrows;
@@ -119,7 +123,7 @@ class MECON_DB_Pager extends DB_Result
     {
         // if there is no numrows given, calculate it
         if ($this->numrows === null) {
-            $this->numrows = $this->res->numrows();
+            $this->numrows = $this->numrows();
             if (DB::isError($this->numrows)) {
                 return $this->numrows;
             }
@@ -209,7 +213,7 @@ class MECON_DB_Pager extends DB_Result
         if ($this->current >= $this->to) {
             return null;
         }
-        return $this->res->fetchRow($mode, $this->current);
+        return parent::fetchRow($mode, $this->current);
     }
 
     function fetchInto(&$arr, $mode=DB_FETCHMODE_DEFAULT)
@@ -218,7 +222,7 @@ class MECON_DB_Pager extends DB_Result
         if ($this->current >= $this->to) {
             return null;
         }
-        return $this->res->fetchInto($arr, $mode, $this->current);
+        return parent::fetchInto($arr, $mode, $this->current);
     }
 }
 ?>