logo'."\n"; } } #le bandeau principal function bandeau_tete() { echo '
Framadate
'."\n"; } // bandeaux de titre function bandeau_titre($titre) { echo '
'. $titre .'
'."\n"; } function liste_lang() { global $ALLOWED_LANGUAGES; $str = ''; foreach ($ALLOWED_LANGUAGES as $k => $v ) { $str .= '' . $v . '' . "\n" ; } return $str; } #Les sous-bandeaux contenant les boutons de navigation function sous_bandeau() { /*echo '
' . ''. _("Home") .'' . ''. _("Example") .'' . ''. _("Contact") .'' . //''. _("Sources") .'' . //not implemented ''. _("About") .'' . ''. _("Admin") .'' . '' . liste_lang() . ''. '
' . "\n";*/ } function sous_bandeau_admin() { echo '
' . ''. _("Home") .''; if(is_readable('logs_studs.txt')) { echo ''. _("Logs") .''; } echo ''. _("Cleaning") .'' . '' . liste_lang() . ''. '
'."\n"; } function sous_bandeau_choix() { /*echo '
' . ''. _("Home") .'' . '
'."\n";*/ } #les bandeaux de pied function sur_bandeau_pied() { echo '
'."\n"; } function bandeau_pied() { //echo '
'. _("Université de Strasbourg. Creation: Guilhem BORGHESI. 2008-2009") .'
'."\n"; echo '
 
'; echo '
' . ''. _("Home") .'' . ''. _("Example") .'' . ''. _("Contact") .'' . //''. _("Sources") .'' . //not implemented ''. _("About") .'' . //''. _("Admin") .'' . '' . liste_lang() . ''. '
' . "\n"; } function bandeau_pied_mobile() { /*echo '
'."\n" . '
'. _("Université de Strasbourg. Creation: Guilhem BORGHESI. 2008-2009") .'
'."\n";*/ echo '
 
'; echo '
' . ''. _("Home") .'' . ''. _("Example") .'' . ''. _("Contact") .'' . //''. _("Sources") .'' . //not implemented ''. _("About") .'' . //''. _("Admin") .'' . '' . liste_lang() . ''. '
' . "\n"; }