aboutsummaryrefslogtreecommitdiffstats
path: root/langs.php
blob: 6849d781aabe06767bd0e795b2f5c6cfede82e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
*/

if (isset($_SERVER['APP_MODE']) && $_SERVER['APP_MODE'] !== 'prod') {
    ini_set('error_reporting', E_ALL);
    ini_set('show_errors', true);
    ini_set('display_errors', true);
} else {
    ini_set('error_reporting', FALSE);
    ini_set('show_errors', FALSE);
    ini_set('display_errors', FALSE);
    ini_set('log_errors', FALSE);
}

if ($_SERVER['HTTP_HOST'] == 'www-test.mageia.org') {
    ini_set('error_reporting', E_ALL&~E_DEPRECATED);
    ini_set('show_errors', true);
    ini_set('display_errors', true);
    ini_set('log_errors', true);
}

//$g_app_root = realpath(dirname(__FILE__));
//define('G_APP_ROOT', $g_app_root);

$g_donate_amount = '--';
$g_amount_remain = 'EUR&nbsp;10,244.46';

$G_coord_assos = <<<T
  Association Mageia.Org
  6 rue du chateau d'eau
  78650 BEYNES
  FRANCE
T;
$G_coord_assos_bank = <<<T
  CIC BEYNES
  18 rue de la République
  78650 BEYNES
  FRANCE

  IBAN:
  BIC:
T;

//Removed temporarily, something fishy with the account to check
//IBAN: FR76 3006 6103 1600 0202 1370 139
//BIC:  CMCIFRPP

require_once 'langs.inc.php';

$sru = trim($_SERVER['REQUEST_URI']);
$sel = explode('/', $sru);
array_shift($sel);
if (!isset($locale))
    $locale = array_shift($sel);

$page       = count($sel) > 0 ? implode('/', $sel) : null;
$list_langs = array();
$options    = array();

foreach ($langs as $k => $v) {
    $list_langs[] = sprintf('<a href="/%s"%s>%s</a>',
        $page != null ? implode('/', array($k, $page)) : $k,
        $k == $locale ? ' class="sel"' : '',
        $v);

    $options[] = sprintf('<option value="%s"%s>%s</option>',
        $k,
        $k == $locale ? ' selected="selected"' : '',
        $v);
}

$options = implode($options);
$langsForm = <<<H
<form id="lang_form" dir="ltr" method="get" action="/">
    <input type="hidden" name="furl" value="{$_SERVER['REQUEST_URI']}" />
    <select id="flang" name="flang" dir="ltr" onchange="this.form.submit()">
        {$options}
    </select>
    <noscript><div><input type="submit" id="lang_submit" value="Hop!" /></div></noscript>
</form>
H;

$hsnav = _mgnav_style() . _mgnav_html(true, $locale, $langsForm, $_SERVER['HTTP_HOST']);
$hsfoot = '';

if (!defined('HLANG'))
    echo $hsnav;