This commit is contained in:
Laurent Destailleur 2009-07-29 23:10:15 +00:00
parent 4e8b96e405
commit 12f6752631
3 changed files with 27 additions and 29 deletions

View File

@ -18,17 +18,16 @@
*/ */
/** /**
\file htdocs/cactioncomm.class.php * \file htdocs/cactioncomm.class.php
\ingroup commercial * \ingroup commercial
\brief Fichier de la classe des types d'actions commerciales * \brief Fichier de la classe des types d'actions commerciales
\version $Id$ * \version $Id$
*/ */
/** \class CActioncomm /** \class CActionComm
\brief Classe permettant la gestion des diff<EFBFBD>rents types d'actions commerciales * \brief Class to manage different types of events
*/ */
class CActionComm { class CActionComm {
var $db; var $db;

View File

@ -17,24 +17,23 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** \defgroup import Module Iimport /** \defgroup import Module import
\brief Module generique pour realiser des imports de donnees en base * \brief Module to make generic import of data into dolibarr database
\version $Id$ * \version $Id$
*/ */
/** /**
\file htdocs/includes/modules/modImport.class.php * \file htdocs/includes/modules/modImport.class.php
\ingroup import * \ingroup import
\brief Fichier de description et activation du module Import * \brief Fichier de description et activation du module Import
*/ */
include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php"); include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php");
/** \class modImport /** \class modImport
\brief Classe de description et activation du module Import * \brief Classe de description et activation du module Import
*/ */
class modImport extends DolibarrModules class modImport extends DolibarrModules
{ {

View File

@ -482,8 +482,8 @@ function dol_print_date($time,$format='',$to_gmt=false,$outputlangs='',$encodeto
* YYYYMMDDHHMMSS * YYYYMMDDHHMMSS
* DD/MM/YY or DD/MM/YYYY (this format should not be used anymore) * DD/MM/YY or DD/MM/YYYY (this format should not be used anymore)
* DD/MM/YY HH:MM:SS or DD/MM/YYYY HH:MM:SS (this format should not be used anymore) * DD/MM/YY HH:MM:SS or DD/MM/YYYY HH:MM:SS (this format should not be used anymore)
* \return date Date * 19700101020000 -> 7200
* \example 19700101020000 -> 7200 * \return date Date
*/ */
function dol_stringtotime($string) function dol_stringtotime($string)
{ {