]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MLIB/Array/Pager.php
La clase dummy / interfaz Tpl.php tenia implementado un metodo (getGroup) ... se
[mecon/meconlib.git] / lib / MLIB / Array / Pager.php
index f7d5fcb460463572431c20b8753a4599ef5d9eb9..c77261cec4848f612af58f12609f2062dff7a882 100644 (file)
@@ -1,10 +1,33 @@
-<?php
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+-------------------------------------------------------------------------------
+                                    mlib
+-------------------------------------------------------------------------------
+This file is part of mlib.
+
+mlib is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2 of the License, or (at your option)
+any later version.
+
+mlib is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+You should have received a copy of the GNU General Public License; if not,
+write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+Boston, MA  02111-1307  USA
+-------------------------------------------------------------------------------
+Creado: <sin datos>
+Autor:  <sin datos>
+-------------------------------------------------------------------------------
+$Id$
+-----------------------------------------------------------------------------*/
 
 /**
 * Paginador de tablas, a partir de un array    
-* Basado en MECON_DB_Pager
+* Basado en MLIB_DB_Pager
 */
-class MECON_Array_Pager
+class MLIB_Array_Pager
 {
     var $currentpage = 0;
     var $current = 0;
@@ -19,7 +42,7 @@ class MECON_Array_Pager
     * @param int    $maxpages  Cantidad máxima de páginas a mostrar
     * @param int    $numrows Nro. de filas de la tabla
     */
-    function MECON_Array_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
+    function MLIB_Array_Pager (&$res, $from = 0, $limit = 10, $maxpages = 21, $numrows = null)
     {
         $this->dbh = $res->dbh;
         $this->result = $res;
@@ -34,7 +57,7 @@ class MECON_Array_Pager
 
     /**
     * Calcula los datos necesarios para que funcione el paginador
-    * (es igual a MECON_DB_Pager)
+    * (es igual a MLIB_DB_Pager)
     * @return mixed PEAR_Error if error.
     */
     function build()