Skip to content
Snippets Groups Projects
bandeaux.php 2.98 KiB
Newer Older
/**
 * This software is governed by the CeCILL-B license. If a copy of this license
 * is not distributed with this file, you can obtain one at
 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.txt
 *
 * Authors of STUdS (initial project): Guilhem BORGHESI (borghesi@unistra.fr) and Raphaël DROZ
 * Authors of Framadate/OpenSondage: Framasoft (https://github.com/framasoft)
 *
 * Ce logiciel est régi par la licence CeCILL-B. Si une copie de cette licence
 * ne se trouve pas avec ce fichier vous pouvez l'obtenir sur
 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.txt
 *
 * Auteurs de STUdS (projet initial) : Guilhem BORGHESI (borghesi@unistra.fr) et Raphaël DROZ
 * Auteurs de Framadate/OpenSondage : Framasoft (https://github.com/framasoft)
use Framadate\Utils;
Simon Leblanc's avatar
Simon Leblanc committed

include_once __DIR__ . '/app/inc/init.php';
Simon Leblanc's avatar
Simon Leblanc committed
// bandeaux de titre
function bandeau_titre($titre)
{
    global $ALLOWED_LANGUAGES;
    $img = ( IMAGE_TITRE ) ? '<img src="' . Utils::get_server_name() . IMAGE_TITRE . '" alt="' . NOMAPPLICATION . '" class="img-responsive">' : '';
    if(count($ALLOWED_LANGUAGES) > 1){
        echo '<form method="post" action="" class="hidden-print">
FramaJosephK's avatar
FramaJosephK committed
            <div class="input-group input-group-sm pull-right col-md-2 col-xs-4">
                <select name="lang" class="form-control" title="' . __('Language selector', 'Select the language') . '" >' . liste_lang() . '</select>
                <span class="input-group-btn">
                    <button type="submit" class="btn btn-default btn-sm" title="' . __('Language selector', 'Change the language') . '">OK</button>
        <h1><a href="' . Utils::get_server_name() . '" title="' . __('Generic', 'Home') . ' - ' . NOMAPPLICATION . '">' . $img . '</a></h1>
        <h2 class="lead"><i>' . $titre . '</i></h2>
        <hr class="trait" role="presentation" />
FramaJosephK's avatar
FramaJosephK committed
    <main role="main">';
Olivier PEREZ's avatar
Olivier PEREZ committed
    
    global $connect;
    $tables = $connect->allTables();
    $diff = array_diff([Utils::table('comment'), Utils::table('poll'), Utils::table('slot'), Utils::table('vote')], $tables);
    if (0 !== count($diff)) {
        echo '<div class="alert alert-danger">' . __('Error', 'Framadate is not properly installed, please check the "INSTALL" to setup the database before continuing.') . '</div>';
Olivier PEREZ's avatar
Olivier PEREZ committed
        bandeau_pied();
        die();
    }
Simon Leblanc's avatar
Simon Leblanc committed
}

function liste_lang()
{
    global $ALLOWED_LANGUAGES; global $locale;
Simon Leblanc's avatar
Simon Leblanc committed

Simon Leblanc's avatar
Simon Leblanc committed

    foreach ($ALLOWED_LANGUAGES as $k => $v ) {
        if (substr($k,0,2)===$locale) {
            $str .= '<option lang="' . substr($k,0,2) . '" selected value="' . $k . '">' . $v . '</option>' . "\n" ;
            $str .= '<option lang="' . substr($k,0,2) . '" value="' . $k . '">' . $v . '</option>' . "\n" ;
Simon Leblanc's avatar
Simon Leblanc committed

function bandeau_pied()
    echo '
    </main>
    </div> <!-- .container -->
</body>