Browse Source

Minor: headers improvement

Yannick Warnier 12 years ago
parent
commit
9143a55ba5

+ 5 - 2
main/inc/lib/access.class.php

@@ -1,5 +1,9 @@
 <?php
-
+/* For licensing terms, see /license.txt */
+/**
+ * Definition of the Access class
+ * @package chamilo.library
+ */
 /**
  * Authorize or deny calls. 
  * 
@@ -14,7 +18,6 @@
  * (form, javascript for javascript, etc) can get access to the same token.
  * 
  * @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Geneva
- * @license /license.txt
  */
 abstract class Access
 {

+ 6 - 3
main/inc/lib/access_token.class.php

@@ -1,5 +1,9 @@
 <?php
-
+/* For licensing terms, see /license.txt */
+/**
+ * Definition of the AccessToken class
+ * @package chamilo.library
+ */
 /**
  * An access token. Can be passed between applications to grant access.
  * 
@@ -26,7 +30,6 @@
  *      $token = new AccessToken(1, 1, '+*ç*%ç*ç');
  *      $url = '.....?access_token=' . $token;
  *
- * @license see /license.txt
  * @author Laurent Opprecht <laurent@opprecht.info> for the Univesity of Geneva
  */
 class AccessToken
@@ -182,4 +185,4 @@ class AccessToken
         return $result;
     }
 
-}
+}

+ 9 - 5
main/inc/lib/access_url_edit_courses_to_url_functions.lib.php

@@ -1,5 +1,13 @@
 <?php
-/* For licensing terms, see /chamilo_license.txt */
+/* For licensing terms, see /license.txt */
+/**
+ * Definition of the Accessurleditcoursestourl class
+ * @package chamilo.library
+ */
+/**
+ * Init
+ */
+require_once ('xajax/xajax.inc.php');
 /**
  * Access_url_edit_courses_to_url class
  * Contains several functions dealing with displaying,
@@ -9,11 +17,7 @@
  * @author Toon Keppens <toon@vi-host.net>
  * @author Julio Montoya - Cleaning code
  * @author Ricardo Rodriguez - Separated the function and code
- *
  */
-
-require_once ('xajax/xajax.inc.php');
-
 class Accessurleditcoursestourl {
 
 	function search_courses($needle, $id)

+ 9 - 10
main/inc/lib/access_url_edit_sessions_to_url_functions.lib.php

@@ -1,7 +1,15 @@
 <?php
 /* For licensing terms, see /license.txt */
 /**
- * Access_url_edit_session_to_url class
+ * Definition of the Accessurleditsessiontourl class
+ * @package chamilo.library
+ */
+/**
+ * Init
+ */
+require_once ('xajax/xajax.inc.php');
+/**
+ * Accessurleditsessiontourl class
  * Contains several functions dealing with displaying,
  * editing,... of a Access_url_edit_session_to_url_functions
  *
@@ -9,15 +17,6 @@
  * @author Toon Keppens <toon@vi-host.net>
  * @author Julio Montoya - Cleaning code
  * @author Ricardo Rodriguez - Separated the function and code
- * @package chamilo.include
- */
-/**
- * Code
- */
-require_once ('xajax/xajax.inc.php');
-/**
- * Class
- * @package chamilo.include
  */
 class Accessurleditsessionstourl {