yalf.ini 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ; Main module name from modules/general/
  2. INDEX_MODULE="index"
  3. ; Template name to preload from skins/ like "paper", "void", "miniml", "rpg", etc...
  4. YALF_SKIN="oph"
  5. ; Default application language. Loaded from languages directory.
  6. YALF_LANG="english"
  7. ; Allow online language switching by remote clients?
  8. ; Now supported locale switching by GET callback like ?yalfswitchlocale=ukrainian
  9. YALF_LANG_SWITCHABLE=0
  10. ;Is application global menu rendering enabled?
  11. YALF_MENU_ENABLED=1
  12. ;XHProf Hierarchical Profiler enabled?
  13. XHPROF=0
  14. ; XHProf libs path. Recomended to be masked in production.
  15. XHPROF_PATH="modules/foreign/xhprof"
  16. ; Your application logo, name and site URL
  17. YALF_LOGO="skins/oflow.png"
  18. YALF_URL="https://github.com/nightflyza/OphanimFlow"
  19. YALF_APP="OphanimFlow"
  20. YALF_TITLE="OphanimFlow"
  21. ; Disabled modules list. Separator - comma.
  22. YALF_DISABLED_MODULES=""
  23. ; Emulate RCMS users auth and rights system?
  24. YALF_AUTH_ENABLED=1
  25. ; Modules which not require any authorization (public modules)
  26. YALF_NO_AUTH_MODULES="aggrtraff,aggrgdata,graph,gettraff,rotator"
  27. ; Logging emulation. Possible values: fake(output to nowhere), file(output to content/logs/yalflog.log), mysql (YALF_LOG_TABLE table)
  28. YALF_LOGGING_TYPE="fake"
  29. YALF_LOG_TABLE="weblogs"
  30. ;Configs editable from web with sysconf module. Comma separated.
  31. YALF_EDITABLE_CONFIGS="config/yalf.ini,config/mysql.ini,config/globalmenu.ini,config/alter.ini"
  32. ; List of layers which must be loaded, with their dependencies.
  33. ; Format: LAYER_*="lib1,lib2,lib3" will load api/libs/api.lib1.php etc..
  34. LAYER_LOCALE="i18n"
  35. LAYER_NYANORM="mysql,nyanorm,sqldebug"
  36. LAYER_CACHE="ubconfig,ubcache"
  37. ;LAYER_MAPS="mapscompat,lmaps,ubconfig"
  38. ;LAYER_TELEGRAM="telegram,ubconfig"
  39. ;LAYER_WHOIS="whois"
  40. ;LAYER_SNMP="snmphelper,ubconfig"
  41. ;LAYER_ZEN="zenflow"
  42. LAYER_GRAVATAR="ubconfig,gravatar"
  43. ; Renderer layers
  44. LAYER_WEBRENDER="webrender,workicons,astral"
  45. ;LAYER_CLIRENDER="clirender"