Doc: doxygen
This commit is contained in:
parent
0e1cca669a
commit
c4e3dd3543
@ -81,7 +81,8 @@ EXCLUDE = mysql \
|
|||||||
doc \
|
doc \
|
||||||
documents \
|
documents \
|
||||||
scripts \
|
scripts \
|
||||||
htdocs/includes/fckeditor \
|
htdocs/conf/conf.php \
|
||||||
|
htdocs/includes/fckeditor \
|
||||||
htdocs/includes/fpdf \
|
htdocs/includes/fpdf \
|
||||||
htdocs/includes/jpgraph2 \
|
htdocs/includes/jpgraph2 \
|
||||||
htdocs/includes/magpierss \
|
htdocs/includes/magpierss \
|
||||||
|
|||||||
@ -18,10 +18,17 @@
|
|||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
* $Source$
|
* $Source$
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
\file htdocs/compta/charges/pre.inc.php
|
||||||
|
\ingroup tax
|
||||||
|
\brief Fichier gestionnaire du menu charges
|
||||||
|
*/
|
||||||
|
|
||||||
require("../../main.inc.php");
|
require("../../main.inc.php");
|
||||||
|
|
||||||
|
|
||||||
function llxHeader($head = "")
|
function llxHeader($head = "")
|
||||||
{
|
{
|
||||||
global $user, $conf, $langs;
|
global $user, $conf, $langs;
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\file htdocs/compta/contact.php
|
\file htdocs/compta/facture/contact.php
|
||||||
\ingroup facture
|
\ingroup facture
|
||||||
\brief Onglet de gestion des contacts des factures
|
\brief Onglet de gestion des contacts des factures
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
|
|||||||
@ -18,9 +18,14 @@
|
|||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
* $Source$
|
* $Source$
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
\file htdocs/compta/paiement/pre.inc.php
|
||||||
|
\ingroup compta
|
||||||
|
\brief Fichier gestionnaire du menu compta paiement
|
||||||
|
*/
|
||||||
|
|
||||||
require("../../main.inc.php");
|
require("../../main.inc.php");
|
||||||
|
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|||||||
@ -20,6 +20,12 @@
|
|||||||
* $Source$
|
* $Source$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
\file htdocs/compta/param/comptes/liste.php
|
||||||
|
\ingroup compta
|
||||||
|
\brief Onglet de gestion de parametrages des ventilations
|
||||||
|
\version $Revision$
|
||||||
|
*/
|
||||||
require("./pre.inc.php");
|
require("./pre.inc.php");
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
* $Source$
|
* $Source$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file htdocs/compta/param/pre.inc.php
|
/** \file htdocs/compta/param/comptes/pre.inc.php
|
||||||
\ingroup compta
|
\ingroup compta
|
||||||
\brief Fichier gestionnaire du menu paramétrage de la compta
|
\brief Fichier gestionnaire du menu paramétrage de la compta
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -8,10 +8,22 @@
|
|||||||
* Code that need to be changed in this file are marked by "CHANGE THIS" tag.
|
* Code that need to be changed in this file are marked by "CHANGE THIS" tag.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
\file htdocs/includes/modules/mailings/example.modules.php
|
||||||
|
\ingroup mailing
|
||||||
|
\brief Example file to provide a list of recipients for mailing module
|
||||||
|
\version $Revision$
|
||||||
|
*/
|
||||||
|
|
||||||
include_once DOL_DOCUMENT_ROOT.'/includes/modules/mailings/modules_mailings.php';
|
include_once DOL_DOCUMENT_ROOT.'/includes/modules/mailings/modules_mailings.php';
|
||||||
|
|
||||||
|
|
||||||
// CHANGE THIS: Class name must be called mailing_xxx with xxx=name of your selector
|
// CHANGE THIS: Class name must be called mailing_xxx with xxx=name of your selector
|
||||||
|
|
||||||
|
/**
|
||||||
|
\class mailing_example
|
||||||
|
\brief Class to manage a list of personalised recipients for mailing feature
|
||||||
|
*/
|
||||||
class mailing_example extends MailingTargets
|
class mailing_example extends MailingTargets
|
||||||
{
|
{
|
||||||
// CHANGE THIS: Put here a name not already used
|
// CHANGE THIS: Put here a name not already used
|
||||||
|
|||||||
@ -20,7 +20,6 @@
|
|||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
* $Source$
|
* $Source$
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\file htdocs/includes/modules/modOSCommerce.class.php
|
\file htdocs/includes/modules/modBoutique.class.php
|
||||||
\ingroup oscommerce
|
\ingroup oscommerce
|
||||||
\brief Fichier de description et activation du module OSCommerce
|
\brief Fichier de description et activation du module OSCommerce
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\file htdocs/lib/memeber.lib.php
|
\file htdocs/lib/member.lib.php
|
||||||
\brief Ensemble de fonctions de base pour les adhérents
|
\brief Ensemble de fonctions de base pour les adhérents
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user