Przeglądaj źródła

Minor - Updated phpdoc tags

Yannick Warnier 12 lat temu
rodzic
commit
3b31c63135

+ 4 - 3
main/dashboard/index.php

@@ -1,12 +1,13 @@
 <?php
 /* For licensing terms, see /license.txt */
-
 /**
 * Template (front controller in MVC pattern) used for distpaching to the controllers depend on the current action  
 * @author Christian Fasanando <christian1827@gmail.com>
 * @package chamilo.dashboard
 */
-
+/**
+ * Init
+ */
 // name of the language file that needs to be included
 $language_file = array ('index', 'tracking', 'userInfo', 'admin', 'gradebook');
 $cidReset = true;
@@ -62,4 +63,4 @@ switch ($action) {
 		break;					
 	default :	
 		$dashboard_controller->display();
-}
+}

+ 4 - 5
main/exercice/exercise_reminder.php

@@ -4,12 +4,11 @@
 *	Exercise reminder overview
 *	Then it shows the results on the screen.
 *	@package chamilo.exercise
-
 * 	@author Julio Montoya Armas switchable fill in blank option added
-
 */
-
-/*	INIT SECTION	*/
+/**
+ *	INIT SECTION
+ */
 require_once 'exercise.class.php';
 require_once 'question.class.php';
 require_once 'answer.class.php';
@@ -236,4 +235,4 @@ echo Display::div($exercise_actions, array('class'=>'form-actions'));
 if ($origin != 'learnpath') {
 	//we are not in learnpath tool
 	Display::display_footer();
-}
+}

+ 4 - 2
main/exercice/hotspot_admin.inc.php

@@ -6,7 +6,9 @@
  * @package chamilo.exercise
  * @author Toon Keppens
  */
-
+/**
+ * Init
+ */
 use \ChamiloSession as Session;
 
 $modifyAnswers = intval($_GET['hotspotadmin']);
@@ -996,4 +998,4 @@ if ($modifyAnswers) {
     if ($debug > 0) {
         echo str_repeat('&nbsp;', 0) . '$modifyAnswers was set - end' . "<br />\n";
     }
-}
+}