'www.wowarmory.com', eu => 'eu.wowarmory.com' }; */ /* Examples 1 => { name:'Eldre\'Thalas', battlegroup:'Reckoning', region:'us' }, */ function realms() { $realms = Profiler::getRealms(); if (!$realms) CLI::write(' - realms: Auth-DB not set up .. static data g_realms will be empty', CLI::LOG_WARN); // else // foreach ($realms as &$r) // $r['battlegroup'] = CFG_BATTLEGROUP; // remove access column array_walk($realms, function (&$x) { unset($x['access']); }); $toFile = "var g_realms = ".Util::toJSON($realms).";"; $file = 'datasets/realms'; return CLISetup::writeFile($file, $toFile); } ?>