(Available since DotKernel 1.3.0)
The dots.xml file stores a part of the global settings used by the dots. Its structure is similar with the xml files from configs/dots/ that store the settings for the current dots. This file is meant to be a bridge between multiple dots.
It will always be loaded, before any other xml file, so its values can be overwritten by the current xml dots file.
configs/dots.xml sample code:
<?xml version="1.0" encoding="utf-8"?> <!-- This file is the default file used for config dots. Always dots.xml will be loaded, and it's value can be overwritten by the current xml dots file. --> <config> <dots> <variable option="global"> </variable> <variable option="admin"> <session> <name>admin</name> <rememberMeSeconds>864000</rememberMeSeconds> </session> </variable> <variable option="frontend"> <session> <name>frontend</name> <rememberMeSeconds>864000</rememberMeSeconds> </session> <warningMessage> <userPermission>You don't have enough credentials to access this url.</userPermission> </warningMessage> </variable> </dots> </config>