. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ $clearedCookieList = [ 'auth-token-secret', 'auth-username', 'auth-token', ]; foreach ($clearedCookieList as $cookieName) { if (!isset($_COOKIE[$cookieName])) { continue; } setcookie($cookieName, null, -1, '/'); } $config = $installer->getConfig(); $fields = [ 'db-platform' => [ 'default' => $config->get('database.platform', 'Mysql'), ], 'db-driver' => [ 'default' => $config->get('database.driver', ''), ], 'db-name' => [ 'default' => $config->get('database.dbname', ''), ], 'host-name' => [ 'default' => $config->get('database.host', '') . ($config->get('database.port') ? ':' . $config->get('database.port') : ''), ], 'db-user-name' => [ 'default' => $config->get('database.user', ''), ], 'db-user-password' => [], ]; foreach ($fields as $fieldName => $field) { if (isset($_SESSION['install'][$fieldName])) { $fields[$fieldName]['value'] = $_SESSION['install'][$fieldName]; } else { $fields[$fieldName]['value'] = $field['default'] ?? ''; } } $platforms = [ 'Mysql' => 'MySQL / MariaDB', 'Postgresql' => 'PostgreSQL', ]; $smarty->assign('platforms', $platforms); $smarty->assign('fields', $fields);