From d12231e90c255a0564aca032a6343c84abe493de Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Fri, 22 Jul 2011 22:39:37 -0500 Subject: [PATCH] Minor - Adapting code comments to phpdoc --- main/gradebook/exercise_jump.php | 6 +++++- main/gradebook/gradebook.php | 7 +++++++ main/gradebook/gradebook_add_cat.php | 9 ++++++++- main/gradebook/gradebook_add_eval.php | 8 +++++++- main/gradebook/gradebook_add_link.php | 7 +++++++ main/gradebook/gradebook_add_link_select_course.php | 9 ++++++++- main/gradebook/gradebook_add_result.php | 9 ++++++++- main/gradebook/gradebook_add_user.php | 7 +++++++ main/gradebook/gradebook_display_certificate.php | 9 ++++++++- main/gradebook/gradebook_edit_all.php | 9 ++++++++- main/gradebook/gradebook_edit_cat.php | 9 ++++++++- main/gradebook/gradebook_edit_eval.php | 7 +++++++ main/gradebook/gradebook_edit_link.php | 7 +++++++ main/gradebook/gradebook_edit_result.php | 9 ++++++++- main/gradebook/gradebook_flatview.php | 9 ++++++++- main/gradebook/gradebook_result.class.php | 7 +++++-- main/gradebook/gradebook_scoring_system.php | 9 ++++++++- main/gradebook/gradebook_showlog_eval.php | 7 +++++++ main/gradebook/gradebook_showlog_link.php | 7 +++++++ main/gradebook/gradebook_statistics.php | 9 ++++++++- main/gradebook/gradebook_view_result.php | 9 ++++++++- main/gradebook/index.php | 9 ++++++++- main/gradebook/lib/be.inc.php | 9 +++++++-- main/gradebook/lib/be/abstractlink.class.php | 4 ++++ main/gradebook/lib/be/attendancelink.class.php | 6 +++++- main/gradebook/lib/be/category.class.php | 5 ++++- main/gradebook/lib/be/dropboxlink.class.php | 6 +++++- main/gradebook/lib/be/evallink.class.php | 4 ++++ main/gradebook/lib/be/evaluation.class.php | 6 +++++- main/gradebook/lib/be/exerciselink.class.php | 6 +++++- main/gradebook/lib/be/forumthreadlink.class.php | 6 +++++- main/gradebook/lib/be/gradebookitem.class.php | 4 ++++ main/gradebook/lib/be/learnpathlink.class.php | 6 +++++- main/gradebook/lib/be/linkfactory.class.php | 10 ++++++++-- main/gradebook/lib/be/result.class.php | 4 ++++ .../gradebook/lib/be/studentpublicationlink.class.php | 6 +++++- main/gradebook/lib/be/surveylink.class.php | 6 +++++- main/gradebook/lib/fe/catform.class.php | 11 +++++++++-- main/gradebook/lib/fe/dataform.class.php | 11 +++++++++-- main/gradebook/lib/fe/displaygradebook.php | 8 ++++++++ main/gradebook/lib/fe/evalform.class.php | 9 ++++++++- main/gradebook/lib/fe/exportgradebook.php | 4 ++++ main/gradebook/lib/fe/flatviewtable.class.php | 10 +++++++++- main/gradebook/lib/fe/gradebooktable.class.php | 9 ++++++++- main/gradebook/lib/fe/linkaddeditform.class.php | 8 ++++++++ main/gradebook/lib/fe/linkform.class.php | 11 +++++++++-- main/gradebook/lib/fe/resulttable.class.php | 10 +++++++++- main/gradebook/lib/fe/scoredisplayform.class.php | 9 ++++++++- main/gradebook/lib/fe/userform.class.php | 9 ++++++++- main/gradebook/lib/fe/usertable.class.php | 10 +++++++++- main/gradebook/lib/flatview_data_generator.class.php | 4 ++++ main/gradebook/lib/gradebook_data_generator.class.php | 5 +++++ main/gradebook/lib/gradebook_functions.inc.php | 7 +++++-- main/gradebook/lib/results_data_generator.class.php | 4 ++++ main/gradebook/lib/scoredisplay.class.php | 11 +++++++++-- main/gradebook/lib/user_data_generator.class.php | 5 +++++ main/gradebook/open_document.php | 9 ++++++++- main/gradebook/user_info.php | 9 ++++++++- main/gradebook/user_stats.php | 7 +++++++ 59 files changed, 398 insertions(+), 48 deletions(-) diff --git a/main/gradebook/exercise_jump.php b/main/gradebook/exercise_jump.php index fc6e2ccb65..0a2a908266 100755 --- a/main/gradebook/exercise_jump.php +++ b/main/gradebook/exercise_jump.php @@ -7,6 +7,10 @@ * variables. * Most code here is ripped from /main/course_home/course_home.php * @author Bert Steppé + * @package chamilo.gradebook + */ +/** + * Init */ require_once '../inc/global.inc.php'; @@ -35,4 +39,4 @@ if (isset($_GET['doexercise'])) { } header('Location: ../exercice/exercice.php?cidReq='.Security::remove_XSS($cidReq).'&show=result'.$add_url); exit; -} \ No newline at end of file +} diff --git a/main/gradebook/gradebook.php b/main/gradebook/gradebook.php index 176e830006..8170dd6e85 100755 --- a/main/gradebook/gradebook.php +++ b/main/gradebook/gradebook.php @@ -1,5 +1,12 @@ display(); -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_add_eval.php b/main/gradebook/gradebook_add_eval.php index 20f194484e..7ef671a80a 100755 --- a/main/gradebook/gradebook_add_eval.php +++ b/main/gradebook/gradebook_add_eval.php @@ -1,6 +1,12 @@ display(); -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_add_result.php b/main/gradebook/gradebook_add_result.php index 4c517619aa..6cccb164ab 100755 --- a/main/gradebook/gradebook_add_result.php +++ b/main/gradebook/gradebook_add_result.php @@ -1,5 +1,12 @@ '; echo $add_result_form->toHtml(); echo ''; -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_add_user.php b/main/gradebook/gradebook_add_user.php index fa854bf34f..844682507b 100755 --- a/main/gradebook/gradebook_add_user.php +++ b/main/gradebook/gradebook_add_user.php @@ -1,6 +1,13 @@ \ No newline at end of file +?> diff --git a/main/gradebook/gradebook_edit_cat.php b/main/gradebook/gradebook_edit_cat.php index cb7b9d0cd7..729ede3eaa 100755 --- a/main/gradebook/gradebook_edit_cat.php +++ b/main/gradebook/gradebook_edit_cat.php @@ -1,5 +1,12 @@ '.get_lang('EditCategory').''; $form->display(); -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_edit_eval.php b/main/gradebook/gradebook_edit_eval.php index 2c00e77bba..e76008721f 100755 --- a/main/gradebook/gradebook_edit_eval.php +++ b/main/gradebook/gradebook_edit_eval.php @@ -1,5 +1,12 @@ '; echo $edit_result_form->toHtml(); echo ''; -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_flatview.php b/main/gradebook/gradebook_flatview.php index 2d852a744d..b23d280daf 100755 --- a/main/gradebook/gradebook_flatview.php +++ b/main/gradebook/gradebook_flatview.php @@ -1,5 +1,12 @@ '; } -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_result.class.php b/main/gradebook/gradebook_result.class.php index 501d37fb59..f6495560b0 100755 --- a/main/gradebook/gradebook_result.class.php +++ b/main/gradebook/gradebook_result.class.php @@ -9,7 +9,10 @@ if(!class_exists('GradeBookResult')): - +/** + * Gradebook results class + * @package chamilo.gradebook + */ class GradeBookResult { private $gradebook_list = array(); //stores the list of exercises @@ -327,4 +330,4 @@ class GradeBookResult return true; } } -endif; \ No newline at end of file +endif; diff --git a/main/gradebook/gradebook_scoring_system.php b/main/gradebook/gradebook_scoring_system.php index 9db37e23ba..ab0f724309 100755 --- a/main/gradebook/gradebook_scoring_system.php +++ b/main/gradebook/gradebook_scoring_system.php @@ -1,5 +1,12 @@ display(); } -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_showlog_eval.php b/main/gradebook/gradebook_showlog_eval.php index 37ed71e748..f9748c93ce 100755 --- a/main/gradebook/gradebook_showlog_eval.php +++ b/main/gradebook/gradebook_showlog_eval.php @@ -1,5 +1,12 @@ is_custom()) { $stattable .= ''; echo $stattable; } -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/gradebook_view_result.php b/main/gradebook/gradebook_view_result.php index 964adb21b1..6253ddf835 100755 --- a/main/gradebook/gradebook_view_result.php +++ b/main/gradebook/gradebook_view_result.php @@ -1,5 +1,12 @@ display(); Display :: display_footer(); -} \ No newline at end of file +} diff --git a/main/gradebook/index.php b/main/gradebook/index.php index 4ed0aaeb36..5f2941bcb0 100755 --- a/main/gradebook/index.php +++ b/main/gradebook/index.php @@ -1,5 +1,12 @@ display(); } -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/lib/be.inc.php b/main/gradebook/lib/be.inc.php index 3dff48100d..2611498024 100755 --- a/main/gradebook/lib/be.inc.php +++ b/main/gradebook/lib/be.inc.php @@ -1,7 +1,12 @@ security improvements * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ abstract class AbstractLink implements GradebookItem { // PROPERTIES diff --git a/main/gradebook/lib/be/attendancelink.class.php b/main/gradebook/lib/be/attendancelink.class.php index 37b94041f0..19e1409636 100755 --- a/main/gradebook/lib/be/attendancelink.class.php +++ b/main/gradebook/lib/be/attendancelink.class.php @@ -5,6 +5,10 @@ * @author Christian Fasanando (christian1827@gmail.com) * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ class AttendanceLink extends AbstractLink { @@ -251,4 +255,4 @@ class AttendanceLink extends AbstractLink } } -?> \ No newline at end of file +?> diff --git a/main/gradebook/lib/be/category.class.php b/main/gradebook/lib/be/category.class.php index e322b637c4..bf393a17ee 100755 --- a/main/gradebook/lib/be/category.class.php +++ b/main/gradebook/lib/be/category.class.php @@ -4,7 +4,10 @@ * Defines a gradebook Category object * @package chamilo.gradebook */ - +/** + * Class + * @package chamilo.gradebook + */ class Category implements GradebookItem { diff --git a/main/gradebook/lib/be/dropboxlink.class.php b/main/gradebook/lib/be/dropboxlink.class.php index b56cb1cb5b..2df810117e 100755 --- a/main/gradebook/lib/be/dropboxlink.class.php +++ b/main/gradebook/lib/be/dropboxlink.class.php @@ -5,6 +5,10 @@ * @author Bert Steppé * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ class DropboxLink extends EvalLink { @@ -73,4 +77,4 @@ class DropboxLink extends EvalLink return 'dropbox'; } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/be/evallink.class.php b/main/gradebook/lib/be/evallink.class.php index a96e71cd12..9042983013 100755 --- a/main/gradebook/lib/be/evallink.class.php +++ b/main/gradebook/lib/be/evallink.class.php @@ -5,6 +5,10 @@ * @author Bert Steppé * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ abstract class EvalLink extends AbstractLink { diff --git a/main/gradebook/lib/be/evaluation.class.php b/main/gradebook/lib/be/evaluation.class.php index 73e5e4c2ef..57b655e569 100755 --- a/main/gradebook/lib/be/evaluation.class.php +++ b/main/gradebook/lib/be/evaluation.class.php @@ -4,6 +4,10 @@ * Defines a gradebook Evaluation object * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ class Evaluation implements GradebookItem { @@ -596,4 +600,4 @@ class Evaluation implements GradebookItem return true; } } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/be/exerciselink.class.php b/main/gradebook/lib/be/exerciselink.class.php index 474b59ca60..dcad1d90cb 100755 --- a/main/gradebook/lib/be/exerciselink.class.php +++ b/main/gradebook/lib/be/exerciselink.class.php @@ -5,6 +5,10 @@ * @author Bert Steppé * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ class ExerciseLink extends AbstractLink { @@ -242,4 +246,4 @@ class ExerciseLink extends AbstractLink return 'exercise'; } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/be/forumthreadlink.class.php b/main/gradebook/lib/be/forumthreadlink.class.php index 22c3f82977..5eac24eeec 100755 --- a/main/gradebook/lib/be/forumthreadlink.class.php +++ b/main/gradebook/lib/be/forumthreadlink.class.php @@ -5,6 +5,10 @@ * @author Bert Steppé * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ class ForumThreadLink extends AbstractLink { @@ -258,4 +262,4 @@ class ForumThreadLink extends AbstractLink return 'forum'; } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/be/gradebookitem.class.php b/main/gradebook/lib/be/gradebookitem.class.php index 24271ef5cc..53e59b8683 100755 --- a/main/gradebook/lib/be/gradebookitem.class.php +++ b/main/gradebook/lib/be/gradebookitem.class.php @@ -5,6 +5,10 @@ * @author Bert Steppé * @package chamilo.gradebook */ +/** + * Interface + * @package chamilo.gradebook + */ interface GradebookItem { public function get_item_type(); diff --git a/main/gradebook/lib/be/learnpathlink.class.php b/main/gradebook/lib/be/learnpathlink.class.php index b377bafb49..0059cf99ce 100755 --- a/main/gradebook/lib/be/learnpathlink.class.php +++ b/main/gradebook/lib/be/learnpathlink.class.php @@ -6,6 +6,10 @@ * @author Bert Steppé * @package chamilo.gradebook */ +/** + * Class + * @package chamilo.gradebook + */ class LearnpathLink extends AbstractLink { // INTERNAL VARIABLES @@ -260,4 +264,4 @@ class LearnpathLink extends AbstractLink return 'learnpath'; } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/be/linkfactory.class.php b/main/gradebook/lib/be/linkfactory.class.php index 9b30b711ea..fe89a5def2 100755 --- a/main/gradebook/lib/be/linkfactory.class.php +++ b/main/gradebook/lib/be/linkfactory.class.php @@ -1,6 +1,12 @@ \ No newline at end of file +?> diff --git a/main/gradebook/lib/fe/catform.class.php b/main/gradebook/lib/fe/catform.class.php index 79137dd64a..eee8e6d8bc 100755 --- a/main/gradebook/lib/fe/catform.class.php +++ b/main/gradebook/lib/fe/catform.class.php @@ -1,5 +1,12 @@ diff --git a/main/gradebook/lib/fe/exportgradebook.php b/main/gradebook/lib/fe/exportgradebook.php index 8aa2bba409..93590a5db4 100755 --- a/main/gradebook/lib/fe/exportgradebook.php +++ b/main/gradebook/lib/fe/exportgradebook.php @@ -1,5 +1,9 @@ selectcat->get_id().'">'.$name.''; } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/fe/gradebooktable.class.php b/main/gradebook/lib/fe/gradebooktable.class.php index 66daf9a2a9..e8838c947a 100755 --- a/main/gradebook/lib/fe/gradebooktable.class.php +++ b/main/gradebook/lib/fe/gradebooktable.class.php @@ -1,5 +1,12 @@ setDefaults(array('select_link' => $this->extra)); } } -} \ No newline at end of file +} diff --git a/main/gradebook/lib/fe/resulttable.class.php b/main/gradebook/lib/fe/resulttable.class.php index 0f25c92d47..023cc6b464 100755 --- a/main/gradebook/lib/fe/resulttable.class.php +++ b/main/gradebook/lib/fe/resulttable.class.php @@ -1,5 +1,12 @@ '.$new_content_html; return $new_content_html; -} \ No newline at end of file +} diff --git a/main/gradebook/lib/results_data_generator.class.php b/main/gradebook/lib/results_data_generator.class.php index c89c25ae49..7794a7e0d3 100755 --- a/main/gradebook/lib/results_data_generator.class.php +++ b/main/gradebook/lib/results_data_generator.class.php @@ -5,6 +5,10 @@ * used for the teacher's evaluation results view * @author Bert Steppé */ +/** + * Class + * @package chamilo.gradebook + */ class ResultsDataGenerator { diff --git a/main/gradebook/lib/scoredisplay.class.php b/main/gradebook/lib/scoredisplay.class.php index 8737f35263..3186762544 100755 --- a/main/gradebook/lib/scoredisplay.class.php +++ b/main/gradebook/lib/scoredisplay.class.php @@ -1,5 +1,12 @@ 300) { //@todo need a "makeup" echo ''; $form->display(); -Display :: display_footer(); \ No newline at end of file +Display :: display_footer(); diff --git a/main/gradebook/user_stats.php b/main/gradebook/user_stats.php index 8c92170bf2..58757606d7 100755 --- a/main/gradebook/user_stats.php +++ b/main/gradebook/user_stats.php @@ -1,5 +1,12 @@