Minor - Adapting code comments to phpdoc

skala
Yannick Warnier 14 years ago
parent e70a2688a5
commit d12231e90c
  1. 4
      main/gradebook/exercise_jump.php
  2. 7
      main/gradebook/gradebook.php
  3. 7
      main/gradebook/gradebook_add_cat.php
  4. 8
      main/gradebook/gradebook_add_eval.php
  5. 7
      main/gradebook/gradebook_add_link.php
  6. 7
      main/gradebook/gradebook_add_link_select_course.php
  7. 7
      main/gradebook/gradebook_add_result.php
  8. 7
      main/gradebook/gradebook_add_user.php
  9. 7
      main/gradebook/gradebook_display_certificate.php
  10. 7
      main/gradebook/gradebook_edit_all.php
  11. 7
      main/gradebook/gradebook_edit_cat.php
  12. 7
      main/gradebook/gradebook_edit_eval.php
  13. 7
      main/gradebook/gradebook_edit_link.php
  14. 7
      main/gradebook/gradebook_edit_result.php
  15. 7
      main/gradebook/gradebook_flatview.php
  16. 5
      main/gradebook/gradebook_result.class.php
  17. 7
      main/gradebook/gradebook_scoring_system.php
  18. 7
      main/gradebook/gradebook_showlog_eval.php
  19. 7
      main/gradebook/gradebook_showlog_link.php
  20. 7
      main/gradebook/gradebook_statistics.php
  21. 7
      main/gradebook/gradebook_view_result.php
  22. 7
      main/gradebook/index.php
  23. 9
      main/gradebook/lib/be.inc.php
  24. 4
      main/gradebook/lib/be/abstractlink.class.php
  25. 4
      main/gradebook/lib/be/attendancelink.class.php
  26. 5
      main/gradebook/lib/be/category.class.php
  27. 4
      main/gradebook/lib/be/dropboxlink.class.php
  28. 4
      main/gradebook/lib/be/evallink.class.php
  29. 4
      main/gradebook/lib/be/evaluation.class.php
  30. 4
      main/gradebook/lib/be/exerciselink.class.php
  31. 4
      main/gradebook/lib/be/forumthreadlink.class.php
  32. 4
      main/gradebook/lib/be/gradebookitem.class.php
  33. 4
      main/gradebook/lib/be/learnpathlink.class.php
  34. 8
      main/gradebook/lib/be/linkfactory.class.php
  35. 4
      main/gradebook/lib/be/result.class.php
  36. 4
      main/gradebook/lib/be/studentpublicationlink.class.php
  37. 4
      main/gradebook/lib/be/surveylink.class.php
  38. 9
      main/gradebook/lib/fe/catform.class.php
  39. 9
      main/gradebook/lib/fe/dataform.class.php
  40. 8
      main/gradebook/lib/fe/displaygradebook.php
  41. 9
      main/gradebook/lib/fe/evalform.class.php
  42. 4
      main/gradebook/lib/fe/exportgradebook.php
  43. 8
      main/gradebook/lib/fe/flatviewtable.class.php
  44. 9
      main/gradebook/lib/fe/gradebooktable.class.php
  45. 8
      main/gradebook/lib/fe/linkaddeditform.class.php
  46. 9
      main/gradebook/lib/fe/linkform.class.php
  47. 8
      main/gradebook/lib/fe/resulttable.class.php
  48. 9
      main/gradebook/lib/fe/scoredisplayform.class.php
  49. 7
      main/gradebook/lib/fe/userform.class.php
  50. 8
      main/gradebook/lib/fe/usertable.class.php
  51. 4
      main/gradebook/lib/flatview_data_generator.class.php
  52. 5
      main/gradebook/lib/gradebook_data_generator.class.php
  53. 5
      main/gradebook/lib/gradebook_functions.inc.php
  54. 4
      main/gradebook/lib/results_data_generator.class.php
  55. 9
      main/gradebook/lib/scoredisplay.class.php
  56. 5
      main/gradebook/lib/user_data_generator.class.php
  57. 7
      main/gradebook/open_document.php
  58. 7
      main/gradebook/user_info.php
  59. 7
      main/gradebook/user_stats.php

@ -7,6 +7,10 @@
* variables. * variables.
* Most code here is ripped from /main/course_home/course_home.php * Most code here is ripped from /main/course_home/course_home.php
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook
*/
/**
* Init
*/ */
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file= 'gradebook'; $language_file= 'gradebook';
// $cidReset : This is the main difference with gradebook.php, here we say, // $cidReset : This is the main difference with gradebook.php, here we say,
// basically, that we are inside a course, and many things depend from that // basically, that we are inside a course, and many things depend from that

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';
$_in_course = true; $_in_course = true;

@ -1,6 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';
require_once 'lib/be.inc.php'; require_once 'lib/be.inc.php';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,6 +1,13 @@
<?php //$Id: gradebook_add_user.php 21153 2009-06-01 01:51:43Z yannoo $ <?php //$Id: gradebook_add_user.php 21153 2009-06-01 01:51:43Z yannoo $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
//Disabling code when course code is null (gradebook as a tab) see issue #2705 //Disabling code when course code is null (gradebook as a tab) see issue #2705
exit; exit;

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file= 'gradebook'; $language_file= 'gradebook';
$cidReset= true; $cidReset= true;

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = array('gradebook','link'); $language_file = array('gradebook','link');
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';

@ -9,7 +9,10 @@
if(!class_exists('GradeBookResult')): if(!class_exists('GradeBookResult')):
/**
* Gradebook results class
* @package chamilo.gradebook
*/
class GradeBookResult class GradeBookResult
{ {
private $gradebook_list = array(); //stores the list of exercises private $gradebook_list = array(); //stores the list of exercises

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file= 'gradebook'; $language_file= 'gradebook';
//$cidReset= true; //$cidReset= true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file= 'gradebook'; $language_file= 'gradebook';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file[] = 'gradebook'; $language_file[] = 'gradebook';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file= 'gradebook'; $language_file= 'gradebook';
// $cidReset : This is the main difference with gradebook.php, here we say, // $cidReset : This is the main difference with gradebook.php, here we say,

@ -1,7 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
// include this file to have access to all backend classes /**
// @author Bert Steppé * include this file to have access to all backend classes
* @author Bert Steppé
*/
/**
* Code
*/
require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php'; require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php';
define ('LIMIT', 1000); define ('LIMIT', 1000);
require_once 'be/gradebookitem.class.php'; require_once 'be/gradebookitem.class.php';

@ -9,6 +9,10 @@
* @author Julio Montoya <gugli100@gmail.com> security improvements * @author Julio Montoya <gugli100@gmail.com> security improvements
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
abstract class AbstractLink implements GradebookItem { abstract class AbstractLink implements GradebookItem {
// PROPERTIES // PROPERTIES

@ -5,6 +5,10 @@
* @author Christian Fasanando (christian1827@gmail.com) * @author Christian Fasanando (christian1827@gmail.com)
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class AttendanceLink extends AbstractLink class AttendanceLink extends AbstractLink
{ {

@ -4,7 +4,10 @@
* Defines a gradebook Category object * Defines a gradebook Category object
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class Category implements GradebookItem class Category implements GradebookItem
{ {

@ -5,6 +5,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class DropboxLink extends EvalLink class DropboxLink extends EvalLink
{ {

@ -5,6 +5,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
abstract class EvalLink extends AbstractLink abstract class EvalLink extends AbstractLink
{ {

@ -4,6 +4,10 @@
* Defines a gradebook Evaluation object * Defines a gradebook Evaluation object
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class Evaluation implements GradebookItem class Evaluation implements GradebookItem
{ {

@ -5,6 +5,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class ExerciseLink extends AbstractLink class ExerciseLink extends AbstractLink
{ {

@ -5,6 +5,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class ForumThreadLink extends AbstractLink class ForumThreadLink extends AbstractLink
{ {

@ -5,6 +5,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Interface
* @package chamilo.gradebook
*/
interface GradebookItem interface GradebookItem
{ {
public function get_item_type(); public function get_item_type();

@ -6,6 +6,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class LearnpathLink extends AbstractLink class LearnpathLink extends AbstractLink
{ {
// INTERNAL VARIABLES // INTERNAL VARIABLES

@ -1,6 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
// To add your new link type here: // To add your new link type here:
// - define a unique type id // - define a unique type id
// - add include // - add include

@ -5,6 +5,10 @@
* @author Bert Steppé, Stijn Konings * @author Bert Steppé, Stijn Konings
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class Result class Result
{ {

@ -5,6 +5,10 @@
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class StudentPublicationLink extends AbstractLink class StudentPublicationLink extends AbstractLink
{ {

@ -7,6 +7,10 @@
* @package chamilo.gradebook * @package chamilo.gradebook
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class SurveyLink extends AbstractLink class SurveyLink extends AbstractLink
{ {
private $survey_table = null; private $survey_table = null;

@ -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';
require_once api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php'; require_once api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php';
@ -7,7 +14,7 @@ require_once api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php';
/** /**
* Extends formvalidator with add&edit forms * Extends formvalidator with add&edit forms
* @author Stijn Konings * @author Stijn Konings
* @package dokeos.gradebook * @package chamilo.gradebook
*/ */
class CatForm extends FormValidator { class CatForm extends FormValidator {

@ -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';
require_once dirname(__FILE__).'/../gradebook_functions.inc.php'; require_once dirname(__FILE__).'/../gradebook_functions.inc.php';
@ -9,7 +16,7 @@ require_once api_get_path(LIBRARY_PATH) . 'formvalidator/FormValidator.class.php
/** /**
* Extends formvalidator with import and export forms * Extends formvalidator with import and export forms
* @author Stijn Konings * @author Stijn Konings
* @package dokeos.gradebook * @package chamilo.gradebook
*/ */
class DataForm extends FormValidator { class DataForm extends FormValidator {

@ -1,5 +1,13 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Class
* @package chamilo.gradebook
*/
class DisplayGradebook class DisplayGradebook
{ {
/** /**

@ -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';
require_once dirname(__FILE__).'/../gradebook_functions.inc.php'; require_once dirname(__FILE__).'/../gradebook_functions.inc.php';
@ -8,7 +15,7 @@ require_once api_get_path(LIBRARY_PATH) . 'formvalidator/FormValidator.class.php
/** /**
* Extends formvalidator with add&edit forms for evaluations * Extends formvalidator with add&edit forms for evaluations
* @author Stijn Konings * @author Stijn Konings
* @package dokeos.gradebook * @package chamilo.gradebook
*/ */
$htmlHeadXtra[] = '<script type="text/javascript"> $htmlHeadXtra[] = '<script type="text/javascript">

@ -1,5 +1,9 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/** /**
* Prints an HTML page with a table containing the gradebook data * Prints an HTML page with a table containing the gradebook data
* @param array Array containing the data to be printed in the table * @param array Array containing the data to be printed in the table

@ -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
{ {

@ -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';
@ -8,7 +15,7 @@ require_once dirname(__FILE__).'/../be.inc.php';
* Table to display categories, evaluations and links * Table to display categories, evaluations and links
* @author Stijn Konings * @author Stijn Konings
* @author Bert Steppé (refactored, optimised) * @author Bert Steppé (refactored, optimised)
* * @package chamilo.gradebook
*/ */
class GradebookTable extends SortableTable class GradebookTable extends SortableTable
{ {

@ -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';
require_once dirname(__FILE__).'/../gradebook_functions.inc.php'; require_once dirname(__FILE__).'/../gradebook_functions.inc.php';
@ -10,6 +17,7 @@ require_once api_get_path(LIBRARY_PATH) . 'formvalidator/FormValidator.class.php
* Form used to add or edit links * Form used to add or edit links
* @author Stijn Konings * @author Stijn Konings
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook
*/ */
class LinkAddEditForm extends FormValidator class LinkAddEditForm extends FormValidator
{ {

@ -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';
require_once dirname(__FILE__).'/../gradebook_functions.inc.php'; require_once dirname(__FILE__).'/../gradebook_functions.inc.php';
@ -10,7 +17,7 @@ require_once api_get_path(LIBRARY_PATH) . 'formvalidator/FormValidator.class.php
* Forms related to links * Forms related to links
* @author Stijn Konings * @author Stijn Konings
* @author Bert Steppé (made more generic) * @author Bert Steppé (made more generic)
* @package dokeos.gradebook * @package chamilo.gradebook
*/ */
class LinkForm extends FormValidator class LinkForm extends FormValidator
{ {

@ -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';
@ -7,6 +14,7 @@ require_once dirname(__FILE__).'/../be.inc.php';
* Table to display results for an evaluation * Table to display results for an evaluation
* @author Stijn Konings * @author Stijn Konings
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook
*/ */
class ResultTable extends SortableTable class ResultTable extends SortableTable
{ {

@ -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__).'/../gradebook_functions.inc.php'; require_once dirname(__FILE__).'/../gradebook_functions.inc.php';
require_once api_get_path(LIBRARY_PATH) . 'groupmanager.lib.php'; require_once api_get_path(LIBRARY_PATH) . 'groupmanager.lib.php';
@ -8,7 +15,7 @@ require_once api_get_path(LIBRARY_PATH) . 'formvalidator/FormValidator.class.php
* Form for the score display dialog * Form for the score display dialog
* @author Stijn Konings * @author Stijn Konings
* @author Bert Steppé * @author Bert Steppé
* @package dokeos.gradebook * @package chamilo.gradebook
*/ */
class ScoreDisplayForm extends FormValidator class ScoreDisplayForm extends FormValidator
{ {

@ -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';
require_once dirname(__FILE__).'/../gradebook_functions.inc.php'; require_once dirname(__FILE__).'/../gradebook_functions.inc.php';

@ -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';
@ -7,6 +14,7 @@ require_once dirname(__FILE__).'/../be.inc.php';
* Table to display flat view of a student's evaluations and links * Table to display flat view of a student's evaluations and links
* @author Stijn Konings * @author Stijn Konings
* @author Bert Steppé (refactored, optimised, use of caching, datagenerator class) * @author Bert Steppé (refactored, optimised, use of caching, datagenerator class)
* @package chamilo.gradebook
*/ */
class UserTable extends SortableTable class UserTable extends SortableTable
{ {

@ -5,6 +5,10 @@
* used for the teacher's flat view * used for the teacher's flat view
* @author Bert Steppé * @author Bert Steppé
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class FlatViewDataGenerator class FlatViewDataGenerator
{ {

@ -1,9 +1,14 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/** /**
* Class to select, sort and transform object data into array data, * Class to select, sort and transform object data into array data,
* used for the general gradebook view * used for the general gradebook view
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook
*/ */
class GradebookDataGenerator class GradebookDataGenerator
{ {

@ -1,6 +1,9 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/** /**
* These are functions used in gradebook * These are functions used in gradebook
* *

@ -5,6 +5,10 @@
* used for the teacher's evaluation results view * used for the teacher's evaluation results view
* @author Bert Steppé * @author Bert Steppé
*/ */
/**
* Class
* @package chamilo.gradebook
*/
class ResultsDataGenerator class ResultsDataGenerator
{ {

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
// Score display types constants // Score display types constants
define('SCORE_DIV', 1); // X / Y define('SCORE_DIV', 1); // X / Y
@ -27,7 +34,7 @@ define('SCORE_ONLY_CUSTOM',3);
* Class to display scores according to the settings made by the platform admin. * Class to display scores according to the settings made by the platform admin.
* This class works as a singleton: call instance() to retrieve an object. * This class works as a singleton: call instance() to retrieve an object.
* @author Bert Steppé * @author Bert Steppé
* @package dokeos.gradebook * @package chamilo.gradebook
*/ */
class ScoreDisplay class ScoreDisplay
{ {

@ -1,9 +1,14 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/** /**
* Class to select, sort and transform object data into array data, * Class to select, sort and transform object data into array data,
* used for a student's general view * used for a student's general view
* @author Bert Steppé * @author Bert Steppé
* @package chamilo.gradebook
*/ */
class UserDataGenerator class UserDataGenerator
{ {

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
//Disabling code due issue #2705 gradebook with id "-1" //Disabling code due issue #2705 gradebook with id "-1"
exit; exit;
/* /*

@ -1,5 +1,12 @@
<?php // $Id: $ <?php // $Id: $
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file = 'gradebook'; $language_file = 'gradebook';
//$cidReset = true; //$cidReset = true;
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';

@ -1,5 +1,12 @@
<?php <?php
/* For licensing terms, see /license.txt */ /* For licensing terms, see /license.txt */
/**
* Script
* @package chamilo.gradebook
*/
/**
* Init
*/
$language_file= 'gradebook'; $language_file= 'gradebook';

Loading…
Cancel
Save