yalf.ini 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ; Main module name from modules/general/
  2. INDEX_MODULE="index"
  3. ; Template name to preload from skins/ like "paper", "void", "miniml", "rpg", "386" etc...
  4. YALF_SKIN="paper"
  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/yalflogo.png"
  18. YALF_URL="http://yalf.nightfly.biz"
  19. YALF_APP="Dummy application"
  20. YALF_TITLE="Application title here"
  21. ; Disabled modules list. Separator - comma.
  22. YALF_DISABLED_MODULES=""
  23. ; Emulate RCMS users auth and rights system?
  24. YALF_AUTH_ENABLED=0
  25. ; Modules which not require any authorization (public modules)
  26. YALF_NO_AUTH_MODULES=""
  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"