Source for file tpl_dashboard.php
Documentation is available at tpl_dashboard.php
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
$GLOBALS['filters'][LANGUAGE]['scale']['active'] = 1; // filter activation
SetHTMLTitle($GLOBALS['lang']['dashboard']['section']); // HTML title
//////////////////////////////////////////
/////récupération des variables GET et POST
//////////////////////////////////////////
include_once('../dashboard/display.php');
if (isset ($_REQUEST['parentid']))
$scale_id= $_REQUEST['parentid'];
else if (isset ($_REQUEST['id'])) {
$scale_id= $_REQUEST['id'];
//////////////////////////////////////////
/////affichage switch d'affichage jeune public / classique
//////////////////////////////////////////
if(!isset ($_REQUEST['parentid'])) {
//////////////////////////////////////////
/////affichage liste des indicateurs classique
//////////////////////////////////////////
echo "<h1>". $GLOBALS['lang']['dashboard']['list_public']. "</h1>". END_LINE;
<div class="h1_comment" id="h1_dashboard"> <?php echo $GLOBALS['lang']['dashboard']['h1_public_comment']; ?>
//////////////////////////////////////////
/////affichage tableau de bord jeune
//////////////////////////////////////////
echo "<h1>". $GLOBALS['lang']['dashboard']['list_public_anim']. "</h1>". END_LINE;
<div class="h1_comment" id="h1_dashboard"> <?php echo $GLOBALS['lang']['dashboard']['h1_public_comment']; ?>
//////////////////////////////////////////
/////affichage détail d'un indicateur
//////////////////////////////////////////
|