Skip to content
Snippets Groups Projects
bandeaux.php 7.1 KiB
Newer Older
Simon Leblanc's avatar
Simon Leblanc committed
//==========================================================================
//
//Université de Strasbourg - Direction Informatique
//Auteur : Guilhem BORGHESI
//Création : Février 2008
//
//borghesi@unistra.fr
//
//Ce logiciel est régi par la licence CeCILL-B soumise au droit français et
//respectant les principes de diffusion des logiciels libres. Vous pouvez
//utiliser, modifier et/ou redistribuer ce programme sous les conditions
//de la licence CeCILL-B telle que diffusée par le CEA, le CNRS et l'INRIA
Simon Leblanc's avatar
Simon Leblanc committed
//sur le site "http://www.cecill.info".
//
//Le fait que vous puissiez accéder à cet en-tête signifie que vous avez
Simon Leblanc's avatar
Simon Leblanc committed
//pris connaissance de la licence CeCILL-B, et que vous en avez accepté les
//termes. Vous pouvez trouver une copie de la licence dans le fichier LICENCE.
//
//==========================================================================
//
//Université de Strasbourg - Direction Informatique
//Author : Guilhem BORGHESI
//Creation : Feb 2008
//
//borghesi@unistra.fr
//
//This software is governed by the CeCILL-B license under French law and
//abiding by the rules of distribution of free software. You can  use,
Simon Leblanc's avatar
Simon Leblanc committed
//modify and/ or redistribute the software under the terms of the CeCILL-B
//license as circulated by CEA, CNRS and INRIA at the following URL
Simon Leblanc's avatar
Simon Leblanc committed
//
//The fact that you are presently reading this means that you have had
//knowledge of the CeCILL-B license and that you accept its terms. You can
//find a copy of this license in the file LICENSE.
//
//==========================================================================

include_once('fonctions.php');

function framanav()
{
    if (file_exists($_SERVER['DOCUMENT_ROOT']."/nav/nav.js")) {
    echo "\n".'<!-- Framanav --> '."\n";;
pyg77's avatar
pyg77 committed
    echo '<script src="/nav/nav.js" id="nav_js" type="text/javascript" charset="utf-8"></script>'."\n";
pyg77's avatar
pyg77 committed
function gAnalytics() {
  if (GOOGLE_ANALYTICS_ID !== false) {
    echo '
pyg77's avatar
pyg77 committed
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push([\'_setAccount\', \''.GOOGLE_ANALYTICS_ID.'\']);
  _gaq.push([\'_trackPageview\']);
pyg77's avatar
pyg77 committed

  (function() {
    var ga = document.createElement(\'script\'); ga.type = \'text/javascript\'; ga.async = true;
    ga.src = (\'https:\' == document.location.protocol ? \'https://ssl\' : \'http://www\') + \'.google-analytics.com/ga.js\';
    var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s);
pyg77's avatar
pyg77 committed
  })();

pyg77's avatar
pyg77 committed
}

Simon Leblanc's avatar
Simon Leblanc committed
//le logo
function logo ()
{
pyg77's avatar
pyg77 committed
/*  if(defined('LOGOBANDEAU')) {
    echo '<div class="logo"><img src="/' . LOGOBANDEAU . '" height="74" alt=""></div>'."\n";
pyg77's avatar
pyg77 committed
  }*/
Simon Leblanc's avatar
Simon Leblanc committed
}

Simon Leblanc's avatar
Simon Leblanc committed
#le bandeau principal
function bandeau_tete()
{
    echo '<div role="banner" class="bandeau"><h1><a href="'.str_replace('/admin','',get_server_name()).'" title="'._("Home").' - '.NOMAPPLICATION.'"><img src="'.get_server_name(). IMAGE_TITRE. '" title="'._("Home").' - '.NOMAPPLICATION.'" alt="'.NOMAPPLICATION.'"></a></h1></div>'."\n";
    echo '<div role="banner" class="bandeau"><h1><a href="'.str_replace('/admin','',get_server_name()).'" title="'._("Home").' - '.NOMAPPLICATION.'">'.NOMAPPLICATION.'</a></h1></div>'."\n";
Simon Leblanc's avatar
Simon Leblanc committed
}

Simon Leblanc's avatar
Simon Leblanc committed
// bandeaux de titre
function bandeau_titre($titre)
{
  echo '<p class="bandeautitre">'. $titre .'</p>'."\n";
Simon Leblanc's avatar
Simon Leblanc committed
}


function liste_lang()
{
Simon Leblanc's avatar
Simon Leblanc committed
  global $ALLOWED_LANGUAGES;
Simon Leblanc's avatar
Simon Leblanc committed
  $str = '';
  foreach ($ALLOWED_LANGUAGES as $k => $v ) {
    $str .= '<li lang="'.substr($k,0,2).'"><a class="button small gray" href="' . $_SERVER['PHP_SELF'] . '?lang=' . $k . '">' . $v . '</a></li>' . "\n" ;
Simon Leblanc's avatar
Simon Leblanc committed
  return $str;
}

Simon Leblanc's avatar
Simon Leblanc committed
#Les sous-bandeaux contenant les boutons de navigation
function sous_bandeau()
{
  /*echo '<div class="sousbandeau">' .
       '<a href="' . getUrlSondage('aqg259dth55iuhwm').'">'. _("Example") .'</a>' .
pyg77's avatar
pyg77 committed
       '<a href="http://contact.framasoft.org" target="_new">'. _("Contact") .'</a>' .
       //'<a href="/sources/sources.php">'. _("Sources") .'</a>' . //not implemented
       '<a href="/apropos.php">'. _("About") .'</a>' .
       '<a href="/admin/index.php">'. _("Admin") .'</a>' .
       '<span class="sousbandeau sousbandeaulangue">' .
       liste_lang() . '</span>'.
       '</div>' . "\n";*/
Simon Leblanc's avatar
Simon Leblanc committed


function sous_bandeau_admin()
{
Simon Leblanc's avatar
Simon Leblanc committed
  echo '<div class="sousbandeau">' .
       '<a class="button small gray" href="'.str_replace('/admin','',get_server_name()).'">'. _("Home") .'</a>';
  if(is_readable('logs_studs.txt')) {
    echo '<a role="button" class="button small gray" href="'.str_replace('/admin','',get_server_name()).'admin/logs_studs.txt">'. _("Logs") .'</a>';
  echo '<a role="button" class="button small gray" href="'.str_replace('/admin','',get_server_name()).'scripts/nettoyage_sondage.php">'. _("Cleaning") .'</a>' .
       '<ul class="sousbandeau sousbandeaulangue">' .
       liste_lang() . '</ul>'.
       '</div>'."\n";
Simon Leblanc's avatar
Simon Leblanc committed


function sous_bandeau_choix()
{
  /*echo '<div class="sousbandeau">' .
       '</div>'."\n";*/
Simon Leblanc's avatar
Simon Leblanc committed
}


#les bandeaux de pied
function sur_bandeau_pied()
{
  echo '<div class="surbandeaupied"></div>'."\n";
function bandeau_pied()
{
  //echo '<div class="bandeaupied">'. _("Universit&eacute; de Strasbourg. Creation: Guilhem BORGHESI. 2008-2009") .'</div>'."\n";
  echo '<div class="sousbandeau">' .
		'<ul>' .
       '<li><a class="button small gray" href="'.get_server_name().'">'. _("Home") .'</a></li>' .
       '<li><a class="button small gray" href="' . getUrlSondage('aqg259dth55iuhwm').'">'. _("Example") .'</a></li>' .
       '<li><a class="button small gray" href="http://contact.framasoft.org">'. _("Contact") .'</a></li>' .
       //'<a href="/sources/sources.php">'. _("Sources") .'</a>' . //not implemented
       '<li><a class="button small gray" href="'.get_server_name().'apropos.php">'. _("About") .'</a></li>' .
       //'<a class="button small gray" href="/admin/index.php">'. _("Admin") .'</a></li>' .
       '</ul>' .
       '<ul class="sousbandeau sousbandeaulangue">' .
       liste_lang() . '</ul>'.
       '</div>' . "\n";
Simon Leblanc's avatar
Simon Leblanc committed

function bandeau_pied_mobile()
{
  /*echo '<div class="surbandeaupiedmobile"></div>'."\n" .
       '<div class="bandeaupiedmobile">'. _("Universit&eacute; de Strasbourg. Creation: Guilhem BORGHESI. 2008-2009") .'</div>'."\n";*/
       echo '<div class="separateur">&nbsp;</div>';
  echo '<div class="sousbandeau">' .
		'<ul>' .
       '<li><a class="button small gray" href="'.get_server_name().'">'. _("Home") .'</a></li>' .
       '<li><a class="button small gray" href="' . getUrlSondage('aqg259dth55iuhwm').'">'. _("Example") .'</a></li>' .
       '<li><a class="button small gray" href="http://contact.framasoft.org">'. _("Contact") .'</a></li>' .
       //'<a href="/sources/sources.php">'. _("Sources") .'</a>' . //not implemented
       '<li><a class="button small gray" href="'.get_server_name().'apropos.php">'. _("About") .'</a></li>' .
       //'<a class="button small gray" href="/admin/index.php">'. _("Admin") .'</a></li>' .
       '</ul>' .
       '<ul class="sousbandeau sousbandeaulangue">' .
       liste_lang() . '</ul>'.
       '</div>' . "\n";