Doc: Documentation doxygen

This commit is contained in:
Laurent Destailleur 2005-01-23 02:14:56 +00:00
parent 9f5e68eaa6
commit 582491bfed
2 changed files with 25 additions and 8 deletions

View File

@ -31,7 +31,7 @@
*/ */
/*! \class Facture /** \class Facture
\brief Classe permettant la gestion des factures clients \brief Classe permettant la gestion des factures clients
*/ */
@ -1265,7 +1265,7 @@ class Facture
/*! /**
\class FactureLigne \class FactureLigne
\brief Classe permettant la gestion des lignes de factures \brief Classe permettant la gestion des lignes de factures
*/ */

View File

@ -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) 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/project.class.php
\ingroup projet
\brief Fichier de la classe de gestion des projets
\version $Revision$
*/
/** \class Project
\brief Classe permettant la gestion des projets
*/
class Project { class Project {
var $id; var $id;
@ -28,14 +40,17 @@ class Project {
var $title; var $title;
var $socidp; var $socidp;
/**
* \brief Constructeur de la classe
* \param DB handler accès base de données
*/
function Project($DB) { function Project($DB) {
$this->db = $DB; $this->db = $DB;
} }
/* /*
* * \brief Crée un projet en base
* * \param creatorid id utilisateur qui crée
*
*/ */
function create($creatorid) { function create($creatorid) {
@ -52,9 +67,8 @@ class Project {
} }
/* /*
* * \brief Charge objet projet depuis la base
* * \param rowid id du projet à charger
*
*/ */
function fetch($rowid) { function fetch($rowid) {
@ -76,6 +90,7 @@ class Project {
} }
} }
/* /*
* *
* *
@ -114,6 +129,7 @@ class Project {
} }
} }
/* /*
* *
* *
@ -154,5 +170,6 @@ class Project {
} }
} }
} }
?> ?>