modify config

pull/1/head
Jerome De Almeida 2017-01-04 11:22:32 +01:00
parent 0d0c88f8cb
commit d98655c746
3 changed files with 13 additions and 26 deletions

View File

@ -2,9 +2,18 @@
return [
'languages' => [
1 => 'Français',
2 => 'English',
3 => 'Deutsch'
'fr' => [
'index' => 1,
'label' => 'Français',
],
'en' => [
'index' => 2,
'label' => 'English',
],
'de' => [
'index' => 3,
'label' => 'Deutsch',
],
],
'defaultLanguageIndex' => 2
];
];

View File

@ -33,15 +33,6 @@ return array(
),
),
'languages' => [
1 => 'Français',
2 => 'English',
3 => 'Deutsch'
],
'defaultLanguageIndex' => 1,
/* Link with (ModuleCore)
config['languages'] = [
'fr' => array(

View File

@ -1,13 +0,0 @@
<?php
return [
'smtp' => [
'name' => 'mailtrap.io',
'host' => 'mailtrap.io',
'connection_class' => 'crammd5',
'connection_config' => [
'username' => '******',
'password' => '******',
],
]
];