ajout des commentaires doxygen pour la doc

This commit is contained in:
opensides
2004-07-27 22:46:33 +00:00
parent 5c4e98f2f7
commit 8457b7c87e
5 changed files with 480 additions and 370 deletions

View File

@@ -14,6 +14,23 @@ Note: this code requires version 4.1.0 or higher of PHP.
Adaptation pour fonctionnner en PHP 5.0
*/
/*
* $Id$
* $Source$
*
*/
/*! \file XML-RPC.functions.php
\brief Fonction XLM-RPC pour dolibarr
\author Keith Devens
\author Jean-Louis Bergamo
\auhtor Laurent Destailleur
\version $Revision$
*/
/*! \class XML
\brief Fonction XLM-RPC pour dolibarr
*/
function & XML_serialize(&$data, $level = 0, $prior_key = NULL){
#assumes a hash, keys are the variable names
@@ -71,11 +88,11 @@ function & XML_serialize(&$data, $level = 0, $prior_key = NULL){
}
class XML {
var $parser; #a reference to the XML parser
var $document; #the entire XML structure built up so far
var $current; #a pointer to the current item - what is this
var $parent; #a pointer to the current parent - the parent will be an array
var $parents; #an array of the most recent parent at each level
var $parser; /**< a reference to the XML parser */
var $document; /**< the entire XML structure built up so far */
var $current; /**< a pointer to the current item - what is this */
var $parent; /**< a pointer to the current parent - the parent will be an array */
var $parents; /**< an array of the most recent parent at each level */
var $last_opened_tag;
@@ -496,4 +513,4 @@ function XMLRPC_show($data, $func = "print_r", $return_str = false){
}
}
?>
?>