Themeing work based on bootstrap

This commit is contained in:
Deon George
2013-04-25 10:22:36 +10:00
parent b310cdb125
commit 74a9c291e4
184 changed files with 37653 additions and 8903 deletions

View File

@@ -11,6 +11,7 @@
*/
return array(
'appname' => '',
'cache_type' => 'file',
'date_format' => 'd-M-Y',
'method_security' => FALSE,

24
config/pagination.php Normal file
View File

@@ -0,0 +1,24 @@
<?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,
),
);
?>