mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-29 07:01:39 +00:00
22 lines
728 B
Lua
22 lines
728 B
Lua
local configured_framework = Config.Bridge.Framework
|
|
|
|
if configured_framework == "auto" then
|
|
if GetResourceState("es_extended") == "started" then
|
|
configured_framework = "esx"
|
|
elseif GetResourceState("qbx_core") == "started" then
|
|
configured_framework = "qbox"
|
|
elseif GetResourceState("qb-core") == "started" then
|
|
configured_framework = "qb"
|
|
end
|
|
end
|
|
|
|
if configured_framework ~= "esx" and configured_framework ~= "qbox" and configured_framework ~= "qb" then
|
|
error(("[sky_phone] Unsupported or unavailable framework '%s'."):format(tostring(configured_framework)))
|
|
end
|
|
|
|
Bridge.Framework.Name = configured_framework
|
|
|
|
function Bridge.Framework.GetName()
|
|
return Bridge.Framework.Name
|
|
end
|