Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
582491bf
Commit
582491bf
authored
20 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Doc: Documentation doxygen
parent
9f5e68ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/facture.class.php
+2
-2
2 additions, 2 deletions
htdocs/facture.class.php
htdocs/project.class.php
+23
-6
23 additions, 6 deletions
htdocs/project.class.php
with
25 additions
and
8 deletions
htdocs/facture.class.php
+
2
−
2
View file @
582491bf
...
...
@@ -31,7 +31,7 @@
*/
/*
!
\class Facture
/*
*
\class
Facture
\brief Classe permettant la gestion des factures clients
*/
...
...
@@ -1265,7 +1265,7 @@ class Facture
/*
!
/*
*
\class FactureLigne
\brief Classe permettant la gestion des lignes de factures
*/
...
...
This diff is collapsed.
Click to expand it.
htdocs/project.class.php
+
23
−
6
View file @
582491bf
<?php
/* 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
* 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
{
var
$id
;
...
...
@@ -28,14 +40,17 @@ class Project {
var
$title
;
var
$socidp
;
/**
* \brief Constructeur de la classe
* \param DB handler accs base de donnes
*/
function
Project
(
$DB
)
{
$this
->
db
=
$DB
;
}
/*
*
*
*
* \brief Cre un projet en base
* \param creatorid id utilisateur qui cre
*/
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
)
{
...
...
@@ -76,6 +90,7 @@ class Project {
}
}
/*
*
*
...
...
@@ -113,6 +128,7 @@ class Project {
print
$this
->
db
->
error
()
.
'<br>'
.
$sql
;
}
}
/*
*
...
...
@@ -154,5 +170,6 @@ class Project {
}
}
}
?>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment