Subversion Repositories Applications.gtt

Compare Revisions

Ignore whitespace Rev 81 → Rev 82

/trunk/bibliotheque/metier/Projet.class.php
55,10 → 55,12
 
/*** Attributs : */
private $id_projet;
private $ce_projet_parent;
private $ce_categorie;
private $nom_projet;
private $description;
private $date_debut;
private $date_debut;
private $date_fin;
private $duree_prevue;
private $avancement;
 
70,10 → 72,12
$this->dao_table_nom = 'gestion_projet';
$this->dao_correspondance = array(
'gp_id_projet' => 'id_projet',
'gp_ce_projet_parent' => 'ce_projet_parent',
'gp_ce_categorie' => 'ce_categorie',
'gp_nom_projet' => 'nom_projet',
'gp_nom' => 'nom',
'gp_description' => 'description',
'gp_date_debut' => 'date_debut',
'gp_date_fin' => 'date_fin',
'gp_duree_prevue' => 'duree_prevue',
'gp_avancement' => 'avancement');
 
93,6 → 97,17
{
$this->id_projet = $ip;
}
 
// Ce Projet Parent
public function getCeProjetParent()
{
return $this->ce_projet_parent;
}
public function setCeProjetParent( $cpp )
{
$this->ce_projet_parent = $cpp;
}
 
 
// Ce Categorie
public function getCeCategorie()
104,14 → 119,14
$this->ce_categorie = $cc;
}
 
// Nom Projet
public function getNomProjet()
// Nom
public function getNom()
{
return $this->nom_projet;
return $this->nom;
}
public function setNomProjet( $np )
public function setNom( $n )
{
$this->nom_projet = $np;
$this->nom = $n;
}
 
// Description