This commit is contained in:
Laurent Destailleur 2011-06-19 14:35:16 +00:00
parent ad0c76aaea
commit a00d389ea0
4 changed files with 14 additions and 15 deletions

View File

@ -17,17 +17,17 @@
*/ */
/** /**
\file htdocs/core/class/commonobjectline.class.php * \file htdocs/core/class/commonobjectline.class.php
\ingroup core * \ingroup core
\brief File of the superclass of classes of lines of business objects (invoice, contract, PROPAL, commands, etc. ...) * \brief File of the superclass of classes of lines of business objects (invoice, contract, PROPAL, commands, etc. ...)
\version $Id$ * \version $Id$
*/ */
/** /**
\class CommonObjectLine * \class CommonObjectLine
\brief Superclass for class inheritance lines of business objects * \brief Superclass for class inheritance lines of business objects
*/ */
class CommonObjectLine class CommonObjectLine
{ {

View File

@ -19,8 +19,8 @@
/** /**
* \file htdocs/core/class/discount.class.php * \file htdocs/core/class/discount.class.php
* \ingroup propal facture commande * \ingroup core propal facture commande
* \brief Fichier de la classe de gestion des remises * \brief File of class to manage absolute discounts
* \version $Id$ * \version $Id$
*/ */

View File

@ -20,10 +20,9 @@
/** /**
* \file htdocs/core/class/events.class.php * \file htdocs/core/class/events.class.php
* \ingroup core * \ingroup core
* \brief Events class file. * \brief File of class to manage security events.
* \version $Id$ * \version $Id$
* \author Laurent Destailleur * \author Laurent Destailleur
* \remarks An event is when status of an object change.
*/ */
// Put here all includes required by your class file // Put here all includes required by your class file

View File

@ -19,8 +19,8 @@
/** /**
* \file htdocs/core/class/notify.class.php * \file htdocs/core/class/notify.class.php
* \ingroup core * \ingroup notification
* \brief Fichier de la classe de gestion des notifications * \brief File of class to manage notifications
* \version $Id$ * \version $Id$
*/ */
require_once(DOL_DOCUMENT_ROOT ."/lib/CMailFile.class.php"); require_once(DOL_DOCUMENT_ROOT ."/lib/CMailFile.class.php");
@ -86,7 +86,7 @@ class Notify
function countDefinedNotifications($action,$socid) function countDefinedNotifications($action,$socid)
{ {
global $conf; global $conf;
$num=-1; $num=-1;
$sql = "SELECT n.rowid"; $sql = "SELECT n.rowid";