Line 26... |
Line 26... |
26 |
require_once GTT_CHEMIN_METIER.'Utilisateur.class.php';
|
26 |
require_once GTT_CHEMIN_METIER.'Utilisateur.class.php';
|
27 |
$GLOBALS['_GTT_']['Utilisateur'] = new Utilisateur(Utilisateur::GU_MAIL, array($GLOBALS['_GTT_']['identification']->getUserName()));
|
27 |
$GLOBALS['_GTT_']['Utilisateur'] = new Utilisateur(Utilisateur::GU_MAIL, array($GLOBALS['_GTT_']['identification']->getUserName()));
|
28 |
$aso_identification['nom'] = $GLOBALS['_GTT_']['Utilisateur']->getNom();
|
28 |
$aso_identification['nom'] = $GLOBALS['_GTT_']['Utilisateur']->getNom();
|
29 |
$aso_identification['prenom'] = $GLOBALS['_GTT_']['Utilisateur']->getPrenom();
|
29 |
$aso_identification['prenom'] = $GLOBALS['_GTT_']['Utilisateur']->getPrenom();
|
30 |
// Récupération des infos sur l'utilisateur
|
30 |
// Récupération des infos sur l'utilisateur
|
31 |
$aso_identification['conges_payes'] = $GLOBALS['_GTT_']['Utilisateur']->getCongesPayes();
|
31 |
$aso_identification['cp'] = $GLOBALS['_GTT_']['Utilisateur']->getCongesPayes();
|
- |
|
32 |
$cp = $aso_identification['cp'] / $GLOBALS['_GTT_']['Utilisateur']->getTempsDeTravailJour();
|
- |
|
33 |
$aso_identification['cp_j'] = round($cp, 1);
|
32 |
$aso_identification['rtt'] = $GLOBALS['_GTT_']['Utilisateur']->getQuotaHeuresSupp();
|
34 |
$aso_identification['rtt'] = $GLOBALS['_GTT_']['Utilisateur']->getQuotaHeuresSupp();
|
- |
|
35 |
$rtt = $aso_identification['rtt'] / $GLOBALS['_GTT_']['Utilisateur']->getTempsDeTravailJour();
|
- |
|
36 |
$aso_identification['rtt_j'] = round($rtt, 1);
|
33 |
$aso_identification['tps_w'] = $GLOBALS['_GTT_']['Utilisateur']->getTempsDeTravailJour();
|
37 |
$aso_identification['tps_w'] = $GLOBALS['_GTT_']['Utilisateur']->getTempsDeTravailJour();
|
Line 34... |
Line 38... |
34 |
|
38 |
|
35 |
$this->getRegistre()->ajouterSquelette('identification', 'identite.tpl.html');
|
39 |
$this->getRegistre()->ajouterSquelette('identification', 'identite.tpl.html');
|
36 |
//echo '<pre>'.print_r($aso_identification, true).'</pre>';
|
40 |
//echo '<pre>'.print_r($aso_identification, true).'</pre>';
|