diff options
| author | Tristan Zur <tzur@ccwn.org> | 2012-04-28 13:42:41 +0200 |
|---|---|---|
| committer | Tristan Zur <tzur@ccwn.org> | 2012-04-28 13:42:41 +0200 |
| commit | 2d4bddcbf7b816f86db6f308a4d11bc9787c1f99 (patch) | |
| tree | cb19c5a13d6fcf87c8a9a3eb5dbba4920ca1969f /protected/config/maincfg.php | |
| parent | c98745edd2c7b2f48bc3493c4dd9a061376c4720 (diff) | |
- Veranstaltungen CRUD Basisimplementierung
- Extension "CJuiDateTimePicker" hinzugefügt
- Modul "AuditTrail" hinzugefügt
Diffstat (limited to '')
| -rw-r--r-- | protected/config/maincfg.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/protected/config/maincfg.php b/protected/config/maincfg.php index 78c3c6a..c1443ba 100644 --- a/protected/config/maincfg.php +++ b/protected/config/maincfg.php @@ -16,7 +16,8 @@ return array( 'import'=>array( 'application.models.*', 'application.components.*', - 'application.extensions.egmap.*' + 'application.extensions.egmap.*', + 'application.modules.auditTrail.models.AuditTrail', ), 'modules'=>array( @@ -27,6 +28,11 @@ return array( // If removed, Gii defaults to localhost only. Edit carefully to taste. 'ipFilters'=>array('127.0.0.1','::1'), ), + 'auditTrail'=>array( + 'userClass' => 'User', // the class name for the user object + 'userIdColumn' => 'id', // the column name of the primary key for the user + 'userNameColumn' => 'username', // the column name of the primary key for the user + ), ), // application components @@ -86,6 +92,10 @@ return array( 'pos_lat'=>48.8323934983, 'pos_long'=>9.31750059128, 'map_api_key'=>'ABQIAAAAzwMJRVnIOel5nqTjdUcPrRTSNOUR83EeIVShY4aBvXxHJx0DexSUFNGH3KQhtFhfSNHxkECqL5rQBA', - 'map_api_domain'=>'www.astaf.de' + 'map_api_domain'=>'www.astaf.de', + 'start_date'=>'01.07.2012', + 'end_date'=>'03.07.2012', + 'start_time'=>'19:00', + 'end_time'=>'23:00', ), );
\ No newline at end of file |
