Skip to content
Snippets Groups Projects
Commit 172e66af authored by clement's avatar clement
Browse files

c

parent 54452c19
Branches
No related tags found
No related merge requests found
...@@ -13,6 +13,10 @@ class Animal extends Objet ...@@ -13,6 +13,10 @@ class Animal extends Objet
protected $date_deces; protected $date_deces;
protected $taille; protected $taille;
protected $code; protected $code;
public $_specialFields = array(
"sterile" => array(
"t" => "BoolField"
));
public function id() public function id()
{ {
......
...@@ -6,6 +6,10 @@ class Produit extends Objet ...@@ -6,6 +6,10 @@ class Produit extends Objet
protected $nom; protected $nom;
protected $prix; protected $prix;
protected $is_medicament; protected $is_medicament;
public $_specialFields = array(
"is_medicament" => array(
"t" => "BoolField"
));
public function id() public function id()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment