Initial commit

This commit is contained in:
Deon George
2014-10-06 21:57:54 +11:00
commit 62992c1a0e
35 changed files with 2412 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
return array
(
'appname' => 'TSM Access Request',
'theme' => 'bootstrap',
'theme_admin' => 'baseadmin',
);

View File

@@ -0,0 +1,31 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
return array
(
'default' => array
(
'type' => 'MySQL',
'connection' => array(
/**
* The following options are available for MySQL:
*
* string hostname server hostname, or socket
* string database database name
* string username database username
* string password database password
* boolean persistent use persistent connections?
* array variables system variables as "key => value" pairs
*
* Ports and sockets may be appended to the hostname.
*/
'hostname' => 'mysql.leenooks.vpn',
'database' => 'weblntsmac',
'username' => 'ln-tsmac',
'password' => 'TSM',
'persistent' => TRUE,
),
'table_prefix' => 'tac_',
'charset' => 'utf8',
'caching' => TRUE,
),
);

View File

@@ -0,0 +1,18 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Configuration - Session Configuration
*
* @package TSM Access Management
* @category Configuration
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
*/
return array(
'native' => array(
'name'=>'TSMAC',
),
);
?>