123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- ; Main module name from modules/general/
- INDEX_MODULE="index"
- ; Template name to preload from skins/ like "paper", "void", "miniml", "rpg", "386" etc...
- YALF_SKIN="paper"
- ; Default application language. Loaded from languages directory.
- YALF_LANG="english"
- ; Allow online language switching by remote clients?
- ; Now supported locale switching by GET callback like ?yalfswitchlocale=ukrainian
- YALF_LANG_SWITCHABLE=0
- ;Is application global menu rendering enabled?
- YALF_MENU_ENABLED=1
- ;XHProf Hierarchical Profiler enabled?
- XHPROF=0
- ; XHProf libs path. Recomended to be masked in production.
- XHPROF_PATH="modules/foreign/xhprof"
- ; Your application logo, name and site URL
- YALF_LOGO="skins/yalflogo.png"
- YALF_URL="http://yalf.nightfly.biz"
- YALF_APP="Dummy application"
- YALF_TITLE="Application title here"
- ; Disabled modules list. Separator - comma.
- YALF_DISABLED_MODULES=""
- ; Emulate RCMS users auth and rights system?
- YALF_AUTH_ENABLED=0
- ; Modules which not require any authorization (public modules)
- YALF_NO_AUTH_MODULES=""
- ; Logging emulation. Possible values: fake(output to nowhere), file(output to content/logs/yalflog.log), mysql (YALF_LOG_TABLE table)
- YALF_LOGGING_TYPE="fake"
- YALF_LOG_TABLE="weblogs"
- ;Configs editable from web with sysconf module. Comma separated.
- YALF_EDITABLE_CONFIGS="config/yalf.ini,config/mysql.ini,config/globalmenu.ini,config/alter.ini"
- ; List of layers which must be loaded, with their dependencies.
- ; Format: LAYER_*="lib1,lib2,lib3" will load api/libs/api.lib1.php etc..
- LAYER_LOCALE="i18n"
- ;LAYER_NYANORM="mysql,nyanorm,sqldebug"
- ;LAYER_CACHE="ubconfig,ubcache"
- ;LAYER_MAPS="mapscompat,lmaps,ubconfig"
- ;LAYER_TELEGRAM="telegram,ubconfig"
- ;LAYER_WHOIS="whois"
- ;LAYER_SNMP="snmphelper,ubconfig"
- ;LAYER_ZEN="zenflow"
- ;LAYER_GRAVATAR="ubconfig,gravatar"
- ; Renderer layers
- LAYER_WEBRENDER="webrender,workicons,astral"
- ;LAYER_CLIRENDER="clirender"
|