Major work to domain and hosting

Minor updates for ADSL services
Updates to Sort::MAsort()
Move core OSB items under application/
Moved ACCOUNT functions under application
Minor updates to task
This commit is contained in:
Deon George
2011-09-28 16:46:22 +10:00
parent 147d035e46
commit 130a87aa9a
199 changed files with 1536 additions and 10742 deletions

View File

@@ -1,9 +1,10 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB authentication configuration
* OSB Configuration - Authentication
*
* @package OSB
* @subpackage Authentication
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing

View File

@@ -1,20 +1,18 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* lnApp Configuration - Cache Driver
* OSB Configuration - Cache Driver
*
* @package lnApp
* @package OSB
* @subpackage Cache
* @category Configuration
* @author Deon George
* @copyright (c) 2010 phpTSMadmin Development Team
* @license http://phptsmadmin.sf.net/license.html
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array
(
'file' => array
(
return array (
'file' => array (
'driver' => 'file',
'cache_dir' => Kohana::$cache_dir ? Kohana::$cache_dir : '/dev/shm/lnapp',
'default_expire' => 3600,

View File

@@ -1,9 +1,10 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB system default configurable items.
* OSB Configuration - System Default Configurable Items.
*
* @package OSB
* @subpackage System
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing

View File

@@ -1,9 +1,10 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Database configuration
* OSB Configuration - Database Driver
*
* @package OSB
* @subpackage Database
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing

View File

@@ -1,14 +1,16 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB invoice configuration
* OSB Configuration - Invoice Driver
*
* @package OSB
* @subpackage Invoice
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array(
'driver' => 'default',
);

View File

@@ -1,15 +1,24 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?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(
// Application defaults
'default' => array(
'current_page' => array('source' => 'query_string', 'key' => 'page'), // source: "query_string" or "route"
'current_page' => array('source' => 'query_string', 'key' => 'page'),
'total_items' => 0,
'items_per_page' => 20,
'view' => 'pagination/floating',
'auto_hide' => TRUE,
'first_page_in_url' => FALSE,
),
);
?>