You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							117 lines
						
					
					
						
							3.9 KiB
						
					
					
				
			
		
		
	
	
							117 lines
						
					
					
						
							3.9 KiB
						
					
					
				<?php
 | 
						|
/* For licensing terms, see /license.txt */
 | 
						|
/**
 | 
						|
 * Old reporting file - probably not used anymore
 | 
						|
 * @package chamilo.reporting
 | 
						|
 */
 | 
						|
/**
 | 
						|
 * Code
 | 
						|
 */
 | 
						|
// TODO: Is this file used?
 | 
						|
 | 
						|
$nameTools = 'Reussite';
 | 
						|
$cidReset = true;
 | 
						|
 | 
						|
require '../inc/global.inc.php';
 | 
						|
 | 
						|
$this_section = "session_my_space";
 | 
						|
 | 
						|
api_block_anonymous_users();
 | 
						|
$interbreadcrumb[] = array ("url" => "index.php", "name" => get_lang('MySpace'));
 | 
						|
Display :: display_header($nameTools);
 | 
						|
 | 
						|
// Database Table Definitions
 | 
						|
$tbl_course 		= Database :: get_main_table(TABLE_MAIN_COURSE);
 | 
						|
$tbl_user 			= Database :: get_main_table(TABLE_MAIN_USER);
 | 
						|
$tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
 | 
						|
$tbl_session 		= Database :: get_main_table(TABLE_MAIN_SESSION);
 | 
						|
$tbl_track_exercice = Database :: get_main_table(TABLE_STATISTIC_TRACK_E_EXERCISES);
 | 
						|
 | 
						|
/*
 | 
						|
===============================================================================
 | 
						|
	MAIN CODE
 | 
						|
===============================================================================
 | 
						|
*/
 | 
						|
if (!empty($_GET['session'])) {
 | 
						|
	$sql_session = "SELECT name,id
 | 
						|
		FROM $tbl_session
 | 
						|
		ORDER BY name ASC";
 | 
						|
	$result_session = Database::query($sql_session);
 | 
						|
 | 
						|
	echo "<a href='".api_get_self()."'>".get_lang('MoyCourse')."</a>";
 | 
						|
	echo "<br /><br />";
 | 
						|
 | 
						|
	if (Database::num_rows($result_session) > 0) {
 | 
						|
		echo '<table class="data_table"><tr><th>'.get_lang('Session').'</th><th>'.get_lang('MoyenneTest').'</th><th>'.get_lang('MoyenneExamen').'</th></tr>';
 | 
						|
		while ($session = Database::fetch_array($result_session)) {
 | 
						|
			$sql_course = "SELECT title, code, course.id
 | 
						|
				FROM $tbl_course as course
 | 
						|
				INNER JOIN $tbl_session_course AS rel_course
 | 
						|
				ON course.id = rel_course.c_id
 | 
						|
				AND rel_course.session_id = ".$session['id']."
 | 
						|
				ORDER BY title ASC";
 | 
						|
 | 
						|
			$result_course = Database::query($sql_course);
 | 
						|
			$total_result = 0;
 | 
						|
			$total_weighting = 0;
 | 
						|
			while ($course = Database::fetch_array($result_course)) {
 | 
						|
				$sql_moy_test = "SELECT exe_result,exe_weighting
 | 
						|
					FROM $tbl_track_exercice
 | 
						|
					WHERE c_id = ".$course['id'];
 | 
						|
				$result_moy_test = Database::query($sql_moy_test);
 | 
						|
				$result = 0;
 | 
						|
				$weighting = 0;
 | 
						|
				while ($moy_test = Database::fetch_array($result_moy_test)) {
 | 
						|
					$result = $result + $moy_test['exe_result'];
 | 
						|
					$weighting = $weighting + $moy_test['exe_weighting'];
 | 
						|
				}
 | 
						|
				$total_result = $total_result + $result;
 | 
						|
				$total_weighting = $total_weighting + $weighting;
 | 
						|
			}
 | 
						|
			if ($total_weighting != 0) {
 | 
						|
				$moyenne_test = round(($total_result * 100) / $total_weighting);
 | 
						|
			} else {
 | 
						|
				$moyenne_test = null;
 | 
						|
			}
 | 
						|
 | 
						|
			echo '<tr><td>'.$session['name'].'</td><td>'.(is_null($moyenne_test) ? '' : $moyenne_test.'%').'</td><td> </td></tr>';
 | 
						|
		}
 | 
						|
		echo '</table>';
 | 
						|
	} else {
 | 
						|
		echo get_lang('NoSession');
 | 
						|
	}
 | 
						|
} else {
 | 
						|
	$sql_course = "SELECT 	title, code, id
 | 
						|
		FROM $tbl_course as course
 | 
						|
		ORDER BY title ASC";
 | 
						|
 | 
						|
	$result_course = Database::query($sql_course);
 | 
						|
 | 
						|
	echo "<a href='".api_get_self()."?session=true'>".get_lang('MoySession')."</a>";
 | 
						|
	echo "<br /><br />";
 | 
						|
	if (Database::num_rows($result_course) > 0) {
 | 
						|
		echo '<table class="data_table"><tr><th>'.get_lang('Course').'</th><th>'.get_lang('MoyenneTest').'</th><th>'.get_lang('MoyenneExamen').'</th></tr>';
 | 
						|
		while ($course= Database::fetch_array($result_course)) {
 | 
						|
			$sql_moy_test = "SELECT exe_result,exe_weighting
 | 
						|
				FROM $tbl_track_exercice
 | 
						|
				WHERE c_id = ".$course['id'];
 | 
						|
			$result_moy_test = Database::query($sql_moy_test);
 | 
						|
			$result = 0;
 | 
						|
			$weighting = 0;
 | 
						|
			while ($moy_test = Database::fetch_array($result_moy_test)) {
 | 
						|
				$result = $result + $moy_test['exe_result'];
 | 
						|
				$weighting = $weighting + $moy_test['exe_weighting'];
 | 
						|
			}
 | 
						|
			if ($weighting != 0) {
 | 
						|
				$moyenne_test = round(($result * 100) / $weighting);
 | 
						|
			} else {
 | 
						|
				$moyenne_test = null;
 | 
						|
			}
 | 
						|
			echo '<tr><td>'.$course['title'].'</td><td>'.(is_null($moyenne_test) ? '' : $moyenne_test.'%').'</td><td> </td></tr>';
 | 
						|
		}
 | 
						|
		echo '</table>';
 | 
						|
	} else {
 | 
						|
		echo get_lang('NoCourse');
 | 
						|
	}
 | 
						|
}
 | 
						|
Display :: display_footer();
 | 
						|
 |