Skip to content
Snippets Groups Projects
Commit 582491bf authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Doc: Documentation doxygen

parent 9f5e68ea
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ ...@@ -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 ...@@ -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
*/ */
......
<?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 @@ ...@@ -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 { ...@@ -28,14 +40,17 @@ class Project {
var $title; var $title;
var $socidp; var $socidp;
/**
* \brief Constructeur de la classe
* \param DB handler accs base de donnes
*/
function Project($DB) { function Project($DB) {
$this->db = $DB; $this->db = $DB;
} }
/* /*
* * \brief Cre un projet en base
* * \param creatorid id utilisateur qui cre
*
*/ */
function create($creatorid) { function create($creatorid) {
...@@ -52,9 +67,8 @@ class Project { ...@@ -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 { ...@@ -76,6 +90,7 @@ class Project {
} }
} }
/* /*
* *
* *
...@@ -113,6 +128,7 @@ class Project { ...@@ -113,6 +128,7 @@ class Project {
print $this->db->error() . '<br>' .$sql; print $this->db->error() . '<br>' .$sql;
} }
} }
/* /*
* *
...@@ -154,5 +170,6 @@ class Project { ...@@ -154,5 +170,6 @@ class Project {
} }
} }
} }
?> ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment