mirror of
https://github.com/pierre42100/comunic
synced 2025-06-19 16:45:18 +00:00
First commit
This commit is contained in:
30
inc/config/staticConfig.php
Normal file
30
inc/config/staticConfig.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* Static configuration of website
|
||||
* contains every elements which may not require to be changed
|
||||
* when Comunic is installed on a new webserver
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
$staticConfig = array();
|
||||
|
||||
/**
|
||||
* Path to 3rd party elements
|
||||
*/
|
||||
$staticConfig["3rdPartyElementsFolder"] = "3rdparty/";
|
||||
|
||||
/**
|
||||
* Path to user data
|
||||
*/
|
||||
$staticConfig["userDataFolder"] = "user_data/";
|
||||
|
||||
/**
|
||||
* Path the core elements of website
|
||||
*/
|
||||
$staticConfig['coreFolder'] = "inc/core/";
|
||||
|
||||
/**
|
||||
* List of function files
|
||||
*/
|
||||
$staticConfig['listFunctionsFiles'] = array("sql", "main", "url", "api");
|
Reference in New Issue
Block a user