Subversion Repositories Applications.gtt

Compare Revisions

Ignore whitespace Rev 125 → Rev 126

/trunk/actions/GttCtrlActionStatTableauGlobal.class.php
30,6 → 30,7
$Calendrier = new Calendrier();
// Construction de l'url pour les mois précédent/suivant
$aso_stat['url_mois_courant'] = 'index.php?action='.GTT_ACTION_STAT_TAB_GLOB.'&annee='.$Month->thisYear().'&mois='.$Month->thisMonth();
$PMonth = $Month->prevMonth('object');
$aso_stat['url_mois_precedent'] = 'index.php?action='.GTT_ACTION_STAT_TAB_GLOB.'&annee='.$PMonth->thisYear().'&mois='.$PMonth->thisMonth();
$NMonth = $Month->nextMonth('object');
/trunk/actions/GttCtrlActionStatTableauCharge.class.php
102,6 → 102,7
$aso_stat['form_param']['action'] = GTT_ACTION_STAT_TAB_CHARGE;
$aso_stat['form_param']['annee'] = $Month->thisYear();
$aso_stat['form_param']['mois'] = $Month->thisMonth();
$aso_stat['url_mois_courant'] = 'index.php?action='.GTT_ACTION_STAT_TAB_CHARGE.'&annee='.$Month->thisYear().'&mois='.$Month->thisMonth().'&uid='.$_GET['uid'];
$PMonth = $Month->prevMonth('object');
$aso_stat['url_mois_precedent'] = 'index.php?action='.GTT_ACTION_STAT_TAB_CHARGE.'&annee='.$PMonth->thisYear().'&mois='.$PMonth->thisMonth().'&uid='.$_GET['uid'];
$NMonth = $Month->nextMonth('object');