How do I set separated layouts for each module?

ps2full

New Member
I have my config file like this\[code\][production]phpSettings.display_startup_errors = 1phpSettings.display_errors = 1includePaths.library = APPLICATION_PATH "/../library"bootstrap.path = APPLICATION_PATH "/Bootstrap.php"bootstrap.class = "Bootstrap"resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"resources.modules[] =[staging : production][testing : production]phpSettings.display_startup_errors = 1phpSettings.display_errors = 1[development : production]phpSettings.display_startup_errors = 1phpSettings.display_errors = 1[database]resources.db.adapter = PDO_MYSQLresources.db.params.dbname = "ccgss"resources.db.params.username = "root"resources.db.params.password = ""resources.db.params.hostname = "localhost"resources.db.isDefaultTableAdapter = true[layout]layoutPath = APPLICATION_PATH "/modules/default/layouts"contentKey = "content"\[/code\]This works for the default module, but then I have the admin panel and the layout is completely different. How do I set the layout for the admin module?
 
Back
Top