Doc: documentation doxygen
This commit is contained in:
parent
8efdb9ea64
commit
30f22f7d77
@ -21,15 +21,14 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/** \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 $Revision$
|
\version $Revision$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/*! \class CActionComm
|
/** \class CActioncomm
|
||||||
\brief Classe permettant la gestion des différents types d'actions commerciales
|
\brief Classe permettant la gestion des différents types d'actions commerciales
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -20,11 +21,10 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/** \file htdocs/comm/mailing/index.php
|
||||||
\file htdocs/comm/index.php
|
\ingroup commercial
|
||||||
\ingroup commercial
|
\brief Page accueil de la zone mailing
|
||||||
\brief Page acceuil de la zone mailing
|
\version $Revision$
|
||||||
\version $Revision$
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("./pre.inc.php");
|
require("./pre.inc.php");
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -20,6 +21,17 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/** \file htdocs/fichinter/fichinter.class.php
|
||||||
|
\ingroup fucheinter
|
||||||
|
\brief Fichier de la classe des gestion des fiches interventions
|
||||||
|
\version $Revision$
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** \class Ficheinter
|
||||||
|
\brief Classe des gestion des fiches interventions
|
||||||
|
*/
|
||||||
|
|
||||||
class Fichinter
|
class Fichinter
|
||||||
{
|
{
|
||||||
var $id;
|
var $id;
|
||||||
|
|||||||
@ -110,7 +110,7 @@ if (defined("MAIN_NOT_INSTALLED"))
|
|||||||
* \brief Affiche en-tête html + la barre de menu supérieure
|
* \brief Affiche en-tête html + la barre de menu supérieure
|
||||||
* \param head lignes d'en-tete head
|
* \param head lignes d'en-tete head
|
||||||
* \param title titre page web
|
* \param title titre page web
|
||||||
* \param head target du menu Accueil
|
* \param target target du menu Accueil
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function top_menu($head, $title="", $target="")
|
function top_menu($head, $title="", $target="")
|
||||||
@ -313,6 +313,7 @@ function left_menu($menu, $help_url='', $form_search='')
|
|||||||
* \param urlaction url du post
|
* \param urlaction url du post
|
||||||
* \param urlobject url du lien sur titre de la zone de recherche
|
* \param urlobject url du lien sur titre de la zone de recherche
|
||||||
* \param title titre de la zone de recherche
|
* \param title titre de la zone de recherche
|
||||||
|
* \param htmlmodesearch 'search'
|
||||||
* \param htmlinputname nom du champ input du formulaire
|
* \param htmlinputname nom du champ input du formulaire
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -21,6 +21,16 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/** \file htdocs/notify.class.php
|
||||||
|
\brief Fichier de la classe de gestion des notifications
|
||||||
|
\version $Revision$
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** \class Notify
|
||||||
|
\brief Classe de gestion des notifications
|
||||||
|
*/
|
||||||
|
|
||||||
class Notify
|
class Notify
|
||||||
{
|
{
|
||||||
var $id;
|
var $id;
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file htdocs/product/fournisseur.php
|
/** \file htdocs/product/fournisseurs.php
|
||||||
\ingroup product,fournisseur
|
\ingroup product,fournisseur
|
||||||
\brief Page fournisseur de produit
|
\brief Page fournisseur de produit
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file htdocs/telephonie/tarif/index.php
|
/** \file htdocs/telephonie/tarifs/index.php
|
||||||
\ingroup telephonie
|
\ingroup telephonie
|
||||||
\brief Page accueil tarif telephonie
|
\brief Page accueil tarif telephonie
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user