Ajustement de la partie ajout/modif/suppression des projets
This commit is contained in:
parent
80dcaee91c
commit
a846fa104f
7 changed files with 31 additions and 29 deletions
|
|
@ -7,17 +7,17 @@ require_once("mother_entity.php");
|
|||
|
||||
class Project extends Entity{
|
||||
|
||||
private ?int $_id = null;
|
||||
private string $_title = "";
|
||||
private string $_description = "";
|
||||
private ?string $_thumbnail = null;
|
||||
private string $_content = "";
|
||||
private ?int $_id = null;
|
||||
private string $_title = "";
|
||||
private string $_description = "";
|
||||
private ?string $_thumbnail = null;
|
||||
private string $_content = "";
|
||||
private string $_creation_date;
|
||||
private string $_status = "en_attente";
|
||||
private string $_status = "en_attente";
|
||||
private int $_user;
|
||||
private int $_category = 0;
|
||||
private string $_creatorname;
|
||||
private ?string $_user_image = null;
|
||||
private ?string $_user_image = null;
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -216,6 +216,4 @@ class Project extends Entity{
|
|||
public function setUser_image($user_image){
|
||||
$this->_user_image = $user_image;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue