|
|
@ -1,5 +1,12 @@ |
|
|
|
<?php |
|
|
|
<?php |
|
|
|
/* For licensing terms, see /license.txt */ |
|
|
|
/* For licensing terms, see /license.txt */ |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Script |
|
|
|
|
|
|
|
* @package chamilo.gradebook |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Init |
|
|
|
|
|
|
|
*/ |
|
|
|
require_once dirname(__FILE__).'/../../../inc/global.inc.php'; |
|
|
|
require_once dirname(__FILE__).'/../../../inc/global.inc.php'; |
|
|
|
require_once dirname(__FILE__).'/../be.inc.php'; |
|
|
|
require_once dirname(__FILE__).'/../be.inc.php'; |
|
|
|
set_time_limit(0); |
|
|
|
set_time_limit(0); |
|
|
@ -9,6 +16,7 @@ set_time_limit(0); |
|
|
|
* @author Stijn Konings |
|
|
|
* @author Stijn Konings |
|
|
|
* @author Bert Steppé - (refactored, optimised) |
|
|
|
* @author Bert Steppé - (refactored, optimised) |
|
|
|
* @author Julio Montoya Armas - Gradebook Graphics |
|
|
|
* @author Julio Montoya Armas - Gradebook Graphics |
|
|
|
|
|
|
|
* @package chamilo.gradebook |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
class FlatViewTable extends SortableTable |
|
|
|
class FlatViewTable extends SortableTable |
|
|
|
{ |
|
|
|
{ |
|
|
@ -517,4 +525,4 @@ class FlatViewTable extends SortableTable |
|
|
|
private function build_name_link ($user_id, $name) { |
|
|
|
private function build_name_link ($user_id, $name) { |
|
|
|
return '<a href="user_stats.php?userid='.$user_id.'&selectcat='.$this->selectcat->get_id().'">'.$name.'</a>'; |
|
|
|
return '<a href="user_stats.php?userid='.$user_id.'&selectcat='.$this->selectcat->get_id().'">'.$name.'</a>'; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|