-
Notifications
You must be signed in to change notification settings - Fork 0
Config System
Justin Campo edited this page Oct 24, 2015
·
1 revision
The config system loads in system data in an easy to use format.
##Files
// Information that is going to be shared by all systems on the website
./system/config/common.php
// Information that is only going to be used for a specific domain
./system/config/default.php (only loaded if no specific config file found)
//To load a config file for a specific domain/subdomain simple create a file (and default will not be loaded)
./system/config/sample.com.php
./system/config/subdomain.sample.com.php
##Format All data is simply public variable declarations
/** The site wide security salt of the website @var string */
public $security_salt = '@@lkds@@980z';