result; $oauth=[]; foreach ($profiles as $p) { if ($p->enabled) { $oauth[] = [ "name"=>$p->name, "id"=>$p->id, "icon"=>$p->getClient(null)->getAuthIcon(), ]; } } return [ "title" => config::get("TITLE"), "sitePrefix" => config::get("SITEPREFIX"), "theme" => config::get("DEFAULT_THEME") === null ? "chimera" : config::get("DEFAULT_THEME"), "buildVersion" => "undefined", "buildDate" => time::current()->dayStart, "pageSize" => config::get("DEFAULT_PAGESIZE") === null ? "30" : config::get("DEFAULT_PAGESIZE"), "language" => config::get("DEFAULT_LANGUAGE") === null ? "ru" : config::get("DEFAULT_LANGUAGE"), "defaultModule" => config::get("DEFAULT_MODULE") === null ? "core" : config::get("DEFAULT_MODULE"), "sessionRenewInterval" => config::get("SESSION_RENEW_SEC") === null ? "3600" : config::get("SESSION_RENEW_SEC"), "coreLanguages" => modules::list()["core"]->languages, "oauthProfiles"=>$oauth, ]; } } ?>