123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <?php
- /*
- ==============================================================================
- Dokeos - elearning and course management software
- Copyright (c) 2008 Dokeos SPRL
- Copyright (c) various contributors
- For a full list of contributors, see "credits.txt".
- The full license can be read in "license.txt".
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- See the GNU General Public License for more details.
- Contact address: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium
- Mail: info@dokeos.com
-
- ==============================================================================
- */
- /*
- * Created on 28 juil. 2006 by Elixir Interactive http://www.elixir-interactive.com
- * Somes fixes by Julio Montoya
- */
- ob_start();
- $nameTools= 'Sessions';
- // name of the language file that needs to be included
- $language_file = array ('registration', 'index','trad4all','tracking');
- $cidReset=true;
- require ('../inc/global.inc.php');
- require_once (api_get_path(LIBRARY_PATH).'tracking.lib.php');
- require_once (api_get_path(LIBRARY_PATH).'export.lib.inc.php');
- api_block_anonymous_users();
- $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_user = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
- $tbl_sessions = Database :: get_main_table(TABLE_MAIN_SESSION);
- $tbl_session_course = Database :: get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_course = Database :: get_main_table(TABLE_MAIN_COURSE);
-
- $export_csv = false;
- if (isset($_GET['export']) && $_GET['export'] == 'csv')
- {
- $export_csv=true;
- }
- /*
- ===============================================================================
- FUNCTION
- ===============================================================================
- */
-
- function count_sessions_coached()
- {
- global $nb_sessions;
- return $nb_sessions;
- }
- function sort_sessions($a, $b)
- {
- global $tracking_column;
- if($a[$tracking_column] > $b[$tracking_column])
- return 1;
- else
- return -1;
- }
- /*
- ===============================================================================
- MAIN CODE
- ===============================================================================
- */
- if(isset($_GET['id_coach']) && $_GET['id_coach']!='')
- {
- $id_coach=$_GET['id_coach'];
- }
- else
- {
- $id_coach=$_user['user_id'];
- }
- $a_sessions = Tracking :: get_sessions_coached_by_user($id_coach);
- $nb_sessions = count($a_sessions);
- if($export_csv)
- {
- $csv_content=array();
- }
- if($nb_sessions > 0)
- {
- echo '<div align="right">
- <a href="#" onclick="window.print()"><img align="absbottom" src="../img/printmgr.gif"> '.get_lang('Print').'</a>
- <a href="'.api_get_self().'?export=csv"><img align="absbottom" src="../img/excel.gif"> '.get_lang('ExportAsCSV').'</a>
- </div>';
- $table = new SortableTable('tracking', 'count_sessions_coached');
- $table -> set_header(0, get_lang('Title'));
- $table -> set_header(1, get_lang('Status'));
- $table -> set_header(2, get_lang('Date'));
- $table -> set_header(3, get_lang('Details'),false);
-
- $all_datas = array();
- foreach ($a_sessions as $session)
- {
- $row = array();
- $row[] = $session['name'];
- $row[] = $session['status'];
-
- if($session['date_start']!='0000-00-00' && $session['date_end']!='0000-00-00')
- {
- $row[] = get_lang('From').' '.format_locale_date(get_lang('DateFormatLongWithoutDay'),strtotime($session['date_start'])).' '.get_lang('To').' '.format_locale_date(get_lang('DateFormatLongWithoutDay'),strtotime($session['date_end']));
- }
- else
- {
- $row[] = ' - ';
- }
-
- if($export_csv)
- {
- $csv_content[]=$row;
- }
-
- if(isset($_GET['id_coach']) && $_GET['id_coach']!='')
- {
- $row[] = '<a href="student.php?id_session='.$session['id'].'&id_coach='.$_GET['id_coach'].'"><img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
- }
- else
- {
- $row[] = '<a href="course.php?id_session='.$session['id'].'"><img src="'.api_get_path(WEB_IMG_PATH).'2rightarrow.gif" border="0" /></a>';
- }
- $all_datas[] = $row;
- }
-
- if(!isset($tracking_column))
- {
- $tracking_column = 0;
- }
-
- usort($all_datas, 'sort_sessions');
-
-
- if($export_csv)
- {
- usort($csv_content, 'sort_sessions');
- }
-
- if($_GET['tracking_direction'] == 'DESC')
- {
- rsort($all_datas);
- }
-
- foreach($all_datas as $row)
- {
- $table -> addRow($row);
- }
-
- $table -> setColAttributes(3,array('align'=>'center'));
- $table -> display();
-
- if($export_csv)
- {
- ob_end_clean();
- Export :: export_table_csv($csv_content, 'reporting_student_list');
- }
- }
- else
- {
- get_lang('NoSession');
- }
- /*
- ==============================================================================
- FOOTER
- ==============================================================================
- */
- Display::display_footer();
- ?>
|