Correction mineure
This commit is contained in:
parent
fb37b5aeeb
commit
80c247d425
|
@ -54,12 +54,12 @@ require_once __ROOT__.'/manager/career.php';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- mes UEs -->
|
<!-- mes contrôles -->
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
/**********************************/
|
/****************************************/
|
||||||
/*** MES UEs (version étudiant) ***/
|
/*** MES CONTRÔLES (version étudiant) ***/
|
||||||
/**********************************/
|
/****************************************/
|
||||||
if( permission('student') ){ // si l'utilisateur est connecté et que c'est un élève
|
if( permission('student') ){ // si l'utilisateur est connecté et que c'est un élève
|
||||||
|
|
||||||
$request = new stdClass(); $answer = new stdClass();
|
$request = new stdClass(); $answer = new stdClass();
|
||||||
|
@ -76,34 +76,44 @@ if( permission('student') ){ // si l'utilisateur est connecté et que c'est un
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
echo "<section name='marksbyue' data-title='Mes Notes' class='basic'>";
|
echo "<section name='marksbyue' data-title='Mes Notes' class='basic'>";
|
||||||
|
|
||||||
foreach($answer->UEs as $UE){ // pour chaque UE
|
echo "<table class='partlist' name='UE'><tbody><tr>";
|
||||||
echo "<table class='basic col4'>";
|
if( $ueOpt == null ) echo "<td data-value='*' class='active'>Tous</td>";
|
||||||
echo "<thead>";
|
else echo "<td data-value='*'>Tous</td>";
|
||||||
echo '<tr>';
|
|
||||||
echo "<th colspan=5 style='font-size:1.5em; text-align:center;'>".$UE['nom'].' - '.$UE['libelle'].'</th>';
|
|
||||||
echo '</tr>';
|
|
||||||
|
|
||||||
echo '</thead></table>';
|
foreach($answer->UEs as $UE)
|
||||||
foreach($UE['modules'] as $module){ // pour chaque module
|
if( $UE['nom'] == $ueOpt ) // si c'est le semestre séléctionné
|
||||||
echo '<table class=basic><thead>';
|
echo "<td data-value='".$UE['nom']."' class='active'>".$UE['nom'].'</td>';
|
||||||
echo '<tr><th colspan=5>'.$module['nom'].' - '.$module['libelle'].'</th></tr></thead><tbody>';
|
else // sinon on affiche normalement
|
||||||
|
echo "<td data-value='".$UE['nom']."'>".$UE['nom'].'</td>';
|
||||||
|
echo "</tr></tbody></table>";
|
||||||
|
|
||||||
foreach($module['controles'] as $controle){ // pour chaque contrôle
|
foreach($answer->UEs as $UE){ // pour chaque UE
|
||||||
echo '<tr>';
|
|
||||||
echo '<td><span class=link>'.$controle['intitule'].'</span></td>';
|
if( $ueOpt == null || $UE['nom'] == $ueOpt ){ // on affiche l'UE en fonction du paramètre passé par l'URL
|
||||||
|
|
||||||
if( count($controle['notes']) == 0 ) // si aucune note pour ce controle on affiche 'Pas de note'
|
echo '</thead></table>';
|
||||||
echo '<td><span class=unstressed>Pas de note</span></td>';
|
foreach($UE['modules'] as $module){ // pour chaque module
|
||||||
else // si une note, alors on l'affiche
|
echo '<table class=basic><thead class=normal>';
|
||||||
echo '<td>'.number_format($controle['notes'][0]['valeur'], 2).' <span class=unstressed>/</span> '.$controle['base'].'</td>';
|
echo '<tr><th colspan=5><strong>'.$UE['nom'].'</strong> - '.$module['nom'].' - '.$module['libelle'].'</th></tr></thead><tbody>';
|
||||||
|
|
||||||
echo "<td>".$module['nom']." - ".$module['libelle']."</td>";
|
foreach($module['controles'] as $controle){ // pour chaque contrôle
|
||||||
echo '<td>Coefficient '.number_format($controle['coefficient'], 2).'</td>';
|
echo '<tr>';
|
||||||
echo '</tr>';
|
echo '<td><span class=link>'.$controle['intitule'].'</span></td>';
|
||||||
|
|
||||||
|
if( count($controle['notes']) == 0 ) // si aucune note pour ce controle on affiche 'Pas de note'
|
||||||
|
echo '<td><span class=unstressed>Pas de note</span></td>';
|
||||||
|
else // si une note, alors on l'affiche
|
||||||
|
echo '<td>'.number_format($controle['notes'][0]['valeur'], 2).' <span class=unstressed>/</span> '.$controle['base'].'</td>';
|
||||||
|
|
||||||
|
echo "<td>".$module['nom']." - ".$module['libelle']."</td>";
|
||||||
|
echo '<td>Coefficient '.number_format($controle['coefficient'], 2).'</td>';
|
||||||
|
echo '</tr>';
|
||||||
|
}
|
||||||
|
echo '</tbody>';
|
||||||
}
|
}
|
||||||
echo '</tbody>';
|
echo '</table>';
|
||||||
|
|
||||||
}
|
}
|
||||||
echo '</table>';
|
|
||||||
|
|
||||||
}
|
}
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -158,15 +168,14 @@ if( permission('teacher') && $controleOpt == null ){ // si c'est un enseignant e
|
||||||
|
|
||||||
|
|
||||||
echo "<table class='partlist' name='UE'><tbody><tr>";
|
echo "<table class='partlist' name='UE'><tbody><tr>";
|
||||||
|
if( $ueOpt == null ) echo "<td data-value='*' class='active'>Tous</td>";
|
||||||
if( $ueOpt == null ) echo "<td data-value='*' class='active'>Tous</td>";
|
else echo "<td data-value='*'>Tous</td>";
|
||||||
else echo "<td data-value='*'>Tous</td>";
|
|
||||||
|
foreach($answer->UEs as $UE)
|
||||||
foreach($answer->UEs as $UE)
|
if( $UE['nom'] == $ueOpt ) // si c'est le semestre séléctionné
|
||||||
if( $UE['nom'] == $ueOpt ) // si c'est le semestre séléctionné
|
echo "<td data-value='".$UE['nom']."' class='active'>".$UE['nom'].'</td>';
|
||||||
echo "<td data-value='".$UE['nom']."' class='active'>".$UE['nom'].'</td>';
|
else // sinon on affiche normalement
|
||||||
else // sinon on affiche normalement
|
echo "<td data-value='".$UE['nom']."'>".$UE['nom'].'</td>';
|
||||||
echo "<td data-value='".$UE['nom']."'>".$UE['nom'].'</td>';
|
|
||||||
echo "</tr></tbody></table>";
|
echo "</tr></tbody></table>";
|
||||||
|
|
||||||
|
|
||||||
|
@ -175,7 +184,7 @@ if( permission('teacher') && $controleOpt == null ){ // si c'est un enseignant e
|
||||||
|
|
||||||
foreach($answer->UEs as $UE){ // pour chaque UE
|
foreach($answer->UEs as $UE){ // pour chaque UE
|
||||||
|
|
||||||
if( $ueOpt == null || $UE['nom'] == $ueOpt ){ // si on affiche l'UE en fonction du paramètre passé par l'URL
|
if( $ueOpt == null || $UE['nom'] == $ueOpt ){ // on affiche l'UE en fonction du paramètre passé par l'URL
|
||||||
|
|
||||||
if( count($UE['modules']) > 0 ){ // s'il y a au moins un module
|
if( count($UE['modules']) > 0 ){ // s'il y a au moins un module
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue