3 if (file_exists("$DOCUMENT_ROOT/Etc/cloud_smasher.phh")) {
4 require_once("$DOCUMENT_ROOT/Etc/cloud_smasher.phh");
7 $G_cloud_smasher = array();
10 if (file_exists("$DOCUMENT_ROOT/Etc/provider_proxy.phh")) {
11 require_once("$DOCUMENT_ROOT/Etc/provider_proxy.phh");
14 $G_provider_proxy = array();
17 // G_dbasetype value can be "pgsql" or "file"
20 $G_dbauth = "host=... port=... user=... password=... dbname=... options='--client_encoding=UTF8'";
23 $G_domain = "brisk.example.com";
25 $G_admin_mail = "admin@$G_domain";
26 $G_mail_seed = 281741;
30 $G_crypt_key = "cryptkey";
34 // list of allowed proxies IP address (strings)
35 $G_proxy_white_list = array();
37 // admin passwd to send broadcast messages
38 $G_alarm_passwd = "yourpasswd";
40 // is local or connected to internet
43 // splash window related vars
44 $G_with_splash = TRUE;
45 $G_splash_interval = 25200; // 3600 * 7
49 $G_splash_timeout = 5000;
50 $G_splash_content = array( 'it' => 'content italico',
51 'en' => 'content anglofico' );
53 // to use more then one splash content (to be reviewed)
54 $G_splash_contents = array( "a", "b");
55 $G_splash_cont_idx = 0; // (must be moved outside)
57 // donometer related variables
58 $G_with_donors = TRUE;
62 $G_room_roadmap = '<div style=\"text-align: left;\"><ul>
63 <li>roadmap item 1</li>
64 <li>roadmap item 2</li>
68 // is the top banner active ?
69 $G_with_topbanner = FALSE;
71 $G_topbanner = '<div class="topbanner" id="topbanner" onMouseOver="show_bigpict(this, \'over\', -100, 80);" onMouseOut="show_bigpict(this, \'out\', 0, 0);">
72 <a target="_blank" href="http://www.briscolachiamatamilano.it/maggiotorneo.htm">
73 Torneo di briscola<br> chiamata - Milano<br> 17/05/2008</a>
75 <img class="nobohide" id="topbanner_big" src="img/bcm_tor080517.gif">';
77 $G_sidebanner_idx = array( 0, 1, 0 );
80 $G_sidebanner = array(
81 array('link' => 'http://www.alternativeoutput.it/brisk/bm33/',
82 'title' => '3° BriskMeeting \'Isola delle Femmine\' - Sabato 11 Ottobre 2014 - Palermo (PA)',
83 'icon_big' => 'bm33/img/bm33_500.jpg'
84 // 'type' => 'meeting' or 'event' // (default meeting with the correct icon)
85 // 'icon' => 'img/brisk_meeting60.gif' // (default is the regulare meeting icon)
87 // 'dy' // displacement of the big image
90 array('link' => 'https://www.facebook.com/events/525109597594103/',
91 'title' => 'BriskMeeting Busseto - Terra di Verdi - Sabato 4 Ottobre - Busseto (Parma)',
92 'icon_big' => 'bm32/img/splash.jpg'
98 $G_poll_name = "calcolo_punteggio";
99 $G_poll_title = "Vota come calcolare i punteggi!";
100 $G_poll_entries = array( array( 'id' => 'din', 'cont' => 'Dinner room'),
101 array( 'id' => 'bat', 'cont' => 'Bath room'),
102 array( 'id' => 'coo', 'cont' => 'Cooking room') );
104 $G_ban_list = array(); // each element in the form "IP/<MSBs_number>" i.e. "192.15.21.4/24"
105 $G_black_list = array(); // each element in the form "IP/<MSBs_number>" i.e. "192.15.21.4/24"
108 // this is the prefix path to remove from backtrace
109 $G_btrace_pref_sub = "/home/nastasi/web/";
111 // where documents are stored
112 $G_doc_path = "Obj/doc/";
114 // licence related stuff
116 $G_tos_fname = "terms-of-service_V%s_%s.txt";
117 // USE date +%s -d 'Wed Nov 20 18:35:41 CET 2013' to calculate
118 $G_tos_dthard = 1384968941;
119 $G_tos_dtsoft = 1384968941;