Browse Source

Minor - Updated PHPDoc headers

Yannick Warnier 13 years ago
parent
commit
8a25ccac45

+ 0 - 1
main/dropbox/dropbox_download.php

@@ -249,7 +249,6 @@ exit;
  * @author René Haentjens <rene.haentjens@UGent.be>, several contributions
  * @author Roan Embrechts, virtual course support
  *
- * @package chamilo.dropbox
  */
 
 //	INITIALISING VARIABLES 

+ 4 - 2
main/newscorm/aiccItem.class.php

@@ -7,12 +7,14 @@
  * @author	Yannick Warnier	<ywarnier@beeznest.org>
  * @license	GNU/GPL
  */
-
+/**
+ * Code
+ */
+require_once 'learnpathItem.class.php';
 /**
  * This class handles the elements from an AICC Descriptor file.
  * @package	chamilo.learnpath
  */
-require_once 'learnpathItem.class.php';
 class aiccItem extends learnpathItem {
     public $identifier = ''; // AICC AU's system_id
     public $identifierref = '';

+ 4 - 5
main/newscorm/lp_add.php

@@ -1,6 +1,5 @@
 <?php
 /* For licensing terms, see /license.txt */
-
 /**
  * This is a learning path creation and player tool in Chamilo - previously learnpath_handler.php
  *
@@ -12,9 +11,9 @@
  * 
  * @package chamilo.learnpath
  */
-
-/* INIT SECTION */
-
+/** 
+ * Code
+ */
 require_once api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php';
 
 $this_section = SECTION_COURSES;
@@ -148,4 +147,4 @@ $form->addElement('style_submit_button', 'Submit',get_lang('CreateLearningPath')
 
 $form->display();
 // Footer
-Display::display_footer();
+Display::display_footer();

+ 1 - 4
main/newscorm/resourcelinker.inc.php

@@ -161,7 +161,7 @@ function show_documents($folder) {
  * Checks wether something is a file or a folder
  * 0 means file, 1 means folder
  * @param $filefolder
- * @todo: use true and false instead of 1 and 0.
+ * @todo use true and false instead of 1 and 0.
  */
 function file_or_folder($filefolder) {
     global $_course;
@@ -1573,9 +1573,6 @@ function rl_get_html_resource_link($course_code, $type, $id, $style='', $new_win
  * @param	string	Course code
  * @param	integer	The learning path ID (in lp table)
  * @param	integer	The database ID for that item in the lp_item table
- * @param
- * @param	string	Type (as one of the TOOL_ constants declared in main_api.lib.php)
- * @param	integer	ID of the database item to get (from that tool's table)
  * @param id          - that is the correspondent id in the mirror tool (like Agenda item 2)
  * @param id_in_path  - the unique index in the items table
  */