SY_IsModuleOptionEnabled
- dw
Owned by dw
22.02.2022
Loading data...
Prüft ob die angegebene Moduloption aktiv ist.
Prototype
SY_IsModuleOptionEnabled( modul, option )
Parameter
Parameter | Typ | Bedeutung |
---|---|---|
1 | string | Modul-Name |
2 | string | Modul-Option |
Rückgabewert
Nummer | Typ | Bedeutung |
---|---|---|
1 | integer | 0 = nicht aktiv, 1 = aktiv |
Beispiel
local enabled = SY_IsModuleOptionEnabled("AUFT", "E_INVOICE") if enabled == 1 then -- ERPv6: if enabled then SY_Proto("Moduloption ist aktiv.") else SY_Proto("Moduloption ist inaktiv.") end
Hinweis
- Achtung: Im syslog.ERP 6 ist der Rückgabetyp "boolean"!