Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 10 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 19
Line 31... Line 31...
31
 * @package    Pager
31
 * @package    Pager
32
 * @author     Lorenzo Alberton <l dot alberton at quipo dot it>
32
 * @author     Lorenzo Alberton <l dot alberton at quipo dot it>
33
 * @author     Richard Heyes <richard@phpguru.org>
33
 * @author     Richard Heyes <richard@phpguru.org>
34
 * @copyright  2003-2006 Lorenzo Alberton, Richard Heyes
34
 * @copyright  2003-2006 Lorenzo Alberton, Richard Heyes
35
 * @license    http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
35
 * @license    http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
36
 * @version    CVS: $Id: Pager.php 10 2010-03-05 14:15:42Z jpm $
36
 * @version    CVS: $Id: Pager.php 19 2010-03-24 18:22:25Z jpm $
37
 * @link       http://pear.php.net/package/Pager
37
 * @link       http://pear.php.net/package/Pager
38
 */
38
 */
Line 39... Line 39...
39
 
39
 
40
/**
40
/**
Line 178... Line 178...
178
            include_once $classfile;
178
            include_once $classfile;
179
        }
179
        }
Line 180... Line 180...
180
 
180
 
181
        // If the class exists, return a new instance of it.
181
        // If the class exists, return a new instance of it.
182
        if (class_exists($classname)) {
182
        if (class_exists($classname)) {
183
            $pager =& new $classname($options);
183
            $pager = new $classname($options);
184
            return $pager;
184
            return $pager;
Line 185... Line 185...
185
        }
185
        }
186
 
186