[pLog-svn] r2933 - in plog/trunk/class/database/pdb: . drivers

mark at devel.lifetype.net mark at devel.lifetype.net
Thu Feb 9 17:28:41 GMT 2006


Author: mark
Date: 2006-02-09 17:28:41 +0000 (Thu, 09 Feb 2006)
New Revision: 2933

Modified:
   plog/trunk/class/database/pdb/drivers/pdbdriverbase.class.php
   plog/trunk/class/database/pdb/pdb.class.php
Log:
Remove the paging define that we already done in model class.

Modified: plog/trunk/class/database/pdb/drivers/pdbdriverbase.class.php
===================================================================
--- plog/trunk/class/database/pdb/drivers/pdbdriverbase.class.php	2006-02-09 17:27:55 UTC (rev 2932)
+++ plog/trunk/class/database/pdb/drivers/pdbdriverbase.class.php	2006-02-09 17:28:41 UTC (rev 2933)
@@ -1,17 +1,4 @@
 <?php
-
-	
-	
-    /**
-     * how many items per page by default, when paging is enabled
-     */
-    define( "DEFAULT_ITEMS_PER_PAGE", 15 );
-    
-    /**
-     * whether we're going to use paging or not.
-     */
-    define( "DEFAULT_PAGING_ENABLED", -1 );	
-	
 	/**
 	 * number of SQL queries executed so far. It is up to the driver classes
 	 * to keep this number updated!!

Modified: plog/trunk/class/database/pdb/pdb.class.php
===================================================================
--- plog/trunk/class/database/pdb/pdb.class.php	2006-02-09 17:27:55 UTC (rev 2932)
+++ plog/trunk/class/database/pdb/pdb.class.php	2006-02-09 17:28:41 UTC (rev 2933)
@@ -2,22 +2,10 @@
     /**
      * \defgroup PDb
      */
-     
     
-    
     define( "PDB_DRIVER_FOLDER", PLOG_CLASS_PATH."class/database/pdb/drivers/" );
     
     /**
-     * how many items per page by default, when paging is enabled
-     */
-    define( "DEFAULT_ITEMS_PER_PAGE", 15 );
-    
-    /**
-     * whether we're going to use paging or not.
-     */
-    define( "DEFAULT_PAGING_ENABLED", -1 ); 
-
-    /**
      * PDb
      *
      * Plog's own lightweight database abstraction layer



More information about the pLog-svn mailing list