Added more options to the launchpad configuration.
This commit is contained in:
parent
7e1a45e9cb
commit
89f3dc60c7
1 changed files with 17 additions and 0 deletions
|
@ -21,6 +21,8 @@ $config = array(
|
|||
'disabled' => false,
|
||||
// Use sessions
|
||||
'session' => true,
|
||||
// Force HTTPS
|
||||
'secure' => true,
|
||||
// Name of the parent template
|
||||
'template' => 'index',
|
||||
// Name of the default module
|
||||
|
@ -47,6 +49,21 @@ $config = array(
|
|||
'database' => 'test'
|
||||
),
|
||||
),
|
||||
|
||||
// Security configuration
|
||||
'security' => array(
|
||||
// Login page
|
||||
'login' => 'login',
|
||||
// Your user table
|
||||
'model' => 'User',
|
||||
// The column you use to specify the user role
|
||||
'column' => 'access_level',
|
||||
// The available levels (roles)
|
||||
'levels' => array(
|
||||
10 => 'USER',
|
||||
20 => 'ADMIN',
|
||||
),
|
||||
),
|
||||
|
||||
// Anything can be defined
|
||||
'stuff' => array(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue