Minor - Adapting code comments to phpdoc

skala
Yannick Warnier 14 years ago
parent cd4f485fa7
commit 889ac0304f
  1. 2
      main/admin/special_exports.php
  2. 1917
      main/inc/lib/browser/Browser.php
  3. 4
      main/inc/lib/classmanager.lib.php
  4. 15
      main/inc/lib/internationalization_internal.lib.php
  5. 6
      main/inc/lib/xajax/xajax.inc.php
  6. 4
      main/inc/lib/xajax/xajaxCompress.php
  7. 4
      main/inc/lib/xajax/xajaxResponse.inc.php

@ -5,7 +5,7 @@
*
* @author Jhon Hinojosa
* @author Julio Montoya Fixing pclzip folder + some clean <gugli100@gmail.com>
* @package special.export
* @package chamilo.include.export
*/
// name of the language file that needs to be included

File diff suppressed because it is too large Load Diff

@ -1,8 +1,8 @@
<?php
/* For licensing terms, see /license.txt */
/**
* This is the class library for Dokeos.
* @package chamilo.library
* This is the class library for this application.
* @package chamilo.library
*/
/**
* Code

@ -1,34 +1,25 @@
<?php
/* For licensing terms, see /license.txt */
/**
* File: internationalization_internal.lib.php
* Main API extension library for Chamilo 1.8.7 LMS,
* contains functions for internal use only.
* License: GNU General Public License Version 3 (Free Software Foundation)
* @author Ivan Tcholakov, <ivantcholakov@gmail.com>, 2009, 2010
* @author More authors, mentioned in the correpsonding fragments of this source.
* @package chamilo.library
* @author More authors, mentioned in the correpsonding fragments of this source
*
* Note: All functions and data structures here are not to be used directly.
* See the file internationalization.lib.php which contains the "public" API.
* @package chamilo.library
*/
/**
* Global variables used by some callback functions
*/
$_api_encoding = null;
$_api_collator = null;
/**
* Appendix to "Language support"
*/
/**
* This function returns an array of those languages that can use Latin 1 encoding.
* Appendix to "Language support"
* @return array The array of languages that can use Latin 1 encoding (ISO-8859-15, ISO-8859-1, WINDOWS-1252, ...).
* Note: The returned language identificators are purified, without suffixes.
*/

@ -28,7 +28,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package xajax
* @package chamilo.include.xajax
* @version $Id: xajax.inc.php,v 1.1 2006/07/21 15:29:46 elixir_inter Exp $
* @copyright Copyright (c) 2005-2006 by Jared White & J. Max Wilson
* @license http://www.gnu.org/copyleft/lesser.html#SEC3 LGPL License
@ -70,7 +70,7 @@ if (!defined ('XAJAX_POST'))
* It also handles processing and executing the command messages in the XML responses
* sent back to your page from your PHP functions.
*
* @package xajax
* @package chamilo.include.xajax
*/
class xajax
{
@ -1249,4 +1249,4 @@ function xajaxErrorHandler($errno, $errstr, $errfile, $errline)
$GLOBALS['xajaxErrorHandlerText'] .= "\n----\n[$errTypeStr] $errstr\nerror in line $errline of file $errfile";
}
?>
?>

@ -28,7 +28,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package xajax
* @package chamilo.include.xajax
* @version $Id: xajaxCompress.php,v 1.1 2006/07/21 15:29:46 elixir_inter Exp $
* @copyright Copyright (c) 2005-2006 by Jared White & J. Max Wilson
* @license http://www.gnu.org/copyleft/lesser.html#SEC3 LGPL License
@ -179,4 +179,4 @@ function xajaxCompressJavascript($sJS)
return $sJS;
}
?>
?>

@ -28,7 +28,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* @package xajax
* @package chamilo.include.xajax
* @version $Id: xajaxResponse.inc.php,v 1.1 2006/07/21 15:29:46 elixir_inter Exp $
* @copyright Copyright (c) 2005-2006 by Jared White & J. Max Wilson
* @license http://www.gnu.org/copyleft/lesser.html#SEC3 LGPL License
@ -63,7 +63,7 @@
* your browser HTML display changing from the request, make sure you're using
* the right id names in your response.
*
* @package xajax
* @package chamilo.include.xajax
*/
class xajaxResponse
{

Loading…
Cancel
Save