mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
30 lines
583 B
PHP
30 lines
583 B
PHP
<?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"); |