comunic/inc/config/staticConfig.php

30 lines
583 B
PHP
Raw Normal View History

2016-11-19 11:08:12 +00:00
<?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");