Changeset 2498

Show
Ignore:
Timestamp:
04/15/08 01:53:23 (5 months ago)
Author:
Shadowhand
Message:

Added Pagination::factory()

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Pagination.php

    r2377 r2498  
    3434    protected $sql_offset; 
    3535    protected $sql_limit; 
     36 
     37    /** 
     38     * Constructs and returns a new Pagination object. 
     39     * 
     40     * @param   array  configuration 
     41     * @return  object 
     42     */ 
     43    public function factory($config = array()) 
     44    { 
     45        return new Pagination($config); 
     46    } 
    3647 
    3748    /**