]> git.mxchange.org Git - friendica-addons.git/blob - jappixmini/jappix/php/vars-main.php
Merge branch 'master' of github.com:annando/friendica-addons
[friendica-addons.git] / jappixmini / jappix / php / vars-main.php
1 <?php
2
3 /*
4
5 Jappix - An open social platform
6 These are the main configuration variables
7
8 -------------------------------------------------
9
10 License: AGPL
11 Author: Vanaryon
12 Last revision: 26/08/11
13
14 */
15
16 // Someone is trying to hack us?
17 if(!defined('JAPPIX_BASE'))
18         exit;
19
20 // Define the vars with the main configuration constants
21 $service_name = htmlspecialchars(SERVICE_NAME);
22 $service_desc = htmlspecialchars(SERVICE_DESC);
23 $jappix_resource = htmlspecialchars(JAPPIX_RESOURCE);
24 $lock_host = htmlspecialchars(LOCK_HOST);
25 $anonymous_mode = htmlspecialchars(ANONYMOUS);
26 $registration = htmlspecialchars(REGISTRATION);
27 $bosh_proxy = htmlspecialchars(BOSH_PROXY);
28 $manager_link = htmlspecialchars(MANAGER_LINK);
29 $groupchats_join = htmlspecialchars(GROUPCHATS_JOIN);
30 $encryption = htmlspecialchars(ENCRYPTION);
31 $https_storage = htmlspecialchars(HTTPS_STORAGE);
32 $https_force = htmlspecialchars(HTTPS_FORCE);
33 $compression = htmlspecialchars(COMPRESSION);
34 $multi_files = htmlspecialchars(MULTI_FILES);
35 $developer = htmlspecialchars(DEVELOPER);
36
37 ?>