25 lines
598 B
PHP
25 lines
598 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* OSB Configuration - Pagination Driver
|
|
*
|
|
* @package OSB
|
|
* @subpackage Pagination
|
|
* @category Configuration
|
|
* @author Deon George
|
|
* @copyright (c) 2010 Open Source Billing
|
|
* @license http://dev.osbill.net/license.html
|
|
*/
|
|
|
|
return array(
|
|
'default' => array(
|
|
'current_page' => array('source' => 'query_string', 'key' => 'page'),
|
|
'total_items' => 0,
|
|
'items_per_page' => 20,
|
|
'view' => 'pagination/float',
|
|
'auto_hide' => TRUE,
|
|
'first_page_in_url' => FALSE,
|
|
),
|
|
);
|
|
?>
|