Added more options to the launchpad configuration.

This commit is contained in:
Josh Sherman 2010-11-26 23:38:00 -05:00
parent 7e1a45e9cb
commit 89f3dc60c7

View file

@ -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(