2013-03-04 19:46:06 +01:00
< ? php
2014-09-04 17:52:18 +02:00
/**
* 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 / OpenSondate : Framasoft ( https :// github . com / framasoft )
*
2014-07-04 11:21:31 +02:00
* =============================
2014-09-04 17:52:18 +02:00
*
* 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
*
2014-07-04 11:21:31 +02:00
* Auteurs de STUdS ( projet initial ) : Guilhem BORGHESI ( borghesi @ unistra . fr ) et Raphaël DROZ
2014-09-04 17:52:18 +02:00
* Auteurs de Framadate / OpenSondage : Framasoft ( https :// github . com / framasoft )
2014-07-04 11:21:31 +02:00
*/
2014-12-25 00:55:52 +01:00
use Framadate\Utils ;
2011-05-15 01:32:47 +02:00
2014-09-04 17:52:18 +02:00
include_once __DIR__ . '/app/inc/init.php' ;
2011-05-15 03:56:54 +02:00
2011-05-15 01:32:47 +02:00
// bandeaux de titre
2011-05-15 03:56:54 +02:00
function bandeau_titre ( $titre )
{
2014-11-14 17:35:22 +01:00
global $ALLOWED_LANGUAGES ;
2014-11-06 15:20:03 +01:00
$img = ( IMAGE_TITRE ) ? '<img src="' . Utils :: get_server_name () . IMAGE_TITRE . '" alt="' . NOMAPPLICATION . '">' : '' ;
2014-09-04 17:52:18 +02:00
echo '
2014-11-11 20:28:14 +01:00
< header role = " banner " > ' ;
2014-11-14 17:35:22 +01:00
if ( count ( $ALLOWED_LANGUAGES ) > 1 ){
2015-01-04 02:00:02 +01:00
echo ' < form method = " post " action = " " class = " hidden-print " >
2014-10-21 01:31:26 +02:00
< div class = " input-group input-group-sm pull-right col-md-2 col-xs-4 " >
2014-09-04 17:52:18 +02:00
< select name = " lang " class = " form-control " title = " '. _( " Select the language " ) .' " > ' . liste_lang() . ' </ select >
< span class = " input-group-btn " >
< button type = " submit " class = " btn btn-default btn-sm " title = " '. _( " Change the language " ) .' " > OK </ button >
</ span >
</ div >
2014-11-11 20:28:14 +01:00
</ form > ' ;
2014-11-14 17:35:22 +01:00
}
2014-11-11 20:28:14 +01:00
echo '
2014-11-14 17:35:22 +01:00
< h1 >< a href = " '.str_replace('/admin','', Utils::get_server_name()).' " title = " '._( " Home " ).' - '.NOMAPPLICATION.' " > '.$img.' </ a ></ h1 >
2014-11-06 15:20:03 +01:00
< h2 class = " lead " >< i > '. $titre .' </ i ></ h2 >
2014-11-14 17:35:22 +01:00
< hr class = " trait " role = " presentation " />
2014-09-04 17:52:18 +02:00
</ header >
2014-10-21 01:31:26 +02:00
< main role = " main " > ' ;
2014-12-03 21:08:08 +01:00
global $connect ;
2014-12-31 01:33:56 +01:00
$tables = $connect -> allTables ();
2015-01-01 01:18:49 +01:00
$diff = array_diff ([ Utils :: table ( 'comment' ), Utils :: table ( 'poll' ), Utils :: table ( 'slot' ), Utils :: table ( 'vote' )], $tables );
2014-12-31 01:33:56 +01:00
if ( 0 != count ( $diff )) {
2014-12-03 21:08:08 +01:00
echo '<div class="alert alert-danger">' . _ ( 'Framadate is not properly installed, please check the "INSTALL" to setup the database before continuing.' ) . '</div>' ;
bandeau_pied ();
die ();
}
2011-05-15 01:32:47 +02:00
}
2011-05-15 03:56:54 +02:00
function liste_lang ()
{
2015-01-20 00:05:43 +01:00
global $ALLOWED_LANGUAGES ; global $html_lang ;
2011-05-15 01:32:47 +02:00
2014-09-04 17:52:18 +02:00
$str = '' ;
2011-05-15 01:32:47 +02:00
2014-09-04 17:52:18 +02:00
foreach ( $ALLOWED_LANGUAGES as $k => $v ) {
2015-01-20 00:05:43 +01:00
if ( substr ( $k , 0 , 2 ) == $html_lang ) {
2014-09-04 17:52:18 +02:00
$str .= '<option lang="' . substr ( $k , 0 , 2 ) . '" selected value="' . $k . '">' . $v . '</option>' . " \n " ;
} else {
$str .= '<option lang="' . substr ( $k , 0 , 2 ) . '" value="' . $k . '">' . $v . '</option>' . " \n " ;
}
}
2011-05-15 01:32:47 +02:00
2014-09-04 17:52:18 +02:00
return $str ;
2011-05-15 03:56:54 +02:00
}
2014-09-04 17:52:18 +02:00
function bandeau_pied ( $admin = false )
2011-05-15 03:56:54 +02:00
{
2014-09-04 17:52:18 +02:00
echo '
</ main >
</ div > <!-- . container -->
</ body >
</ html > ' . " \n " ;
2011-12-30 03:34:02 +01:00
}