This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnapp/config/pagination.php

24 lines
570 B
PHP
Raw Normal View History

2013-04-25 00:22:36 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
2014-08-22 06:50:01 +00:00
* lnApp Configuration - Pagination Driver
2013-04-25 00:22:36 +00:00
*
2014-08-22 06:50:01 +00:00
* @package lnApp
2013-04-25 00:22:36 +00:00
* @category Configuration
* @author Deon George
2014-08-22 06:50:01 +00:00
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
2013-04-25 00:22:36 +00:00
*/
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,
),
);
?>