* @author Wojciech Król * @copyright 2017 Paweł Klockiewicz, Wojciech Król * @license https://batflat.org/license * @link https://batflat.org */ return [ 'name' => $core->lang['langswitcher']['module_name'], 'description' => $core->lang['langswitcher']['module_desc'], 'author' => 'Sruu.pl', 'version' => '1.2', 'compatibility' => '1.3.*', 'icon' => 'flag', 'install' => function () use ($core) { $core->db()->pdo()->exec("INSERT INTO `settings` (`module`, `field`, `value`) VALUES ('settings', 'autodetectlang', 0)"); }, 'uninstall' => function () use ($core) { $core->db()->pdo()->exec("DELETE FROM `settings` WHERE `field` = 'autodetectlang'"); } ];