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

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* lnApp Configuration - Pagination Driver
*
* @package lnApp
* @category Configuration
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.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,
),
);
?>