root / _classes / Categorie.php @ 232b0a2c
Historique | Voir | Annoter | Télécharger (688 octets)
1 |
<?php
|
---|---|
2 |
|
3 |
class Categorie { |
4 |
|
5 |
/*
|
6 |
*******************************
|
7 |
* GETTERS *
|
8 |
*******************************
|
9 |
*/
|
10 |
|
11 |
public function getId() { |
12 |
return $this->id_categorie; |
13 |
} |
14 |
|
15 |
public function getTitre() { |
16 |
return $this->titre; |
17 |
} |
18 |
|
19 |
public function getDescriptif() { |
20 |
return $this->descriptif; |
21 |
} |
22 |
|
23 |
public function getIcone() { |
24 |
return $this->fa_icone; |
25 |
} |
26 |
|
27 |
public function getIsFichier() { |
28 |
return $this->isFichier; |
29 |
} |
30 |
|
31 |
public function getIsUrl() { |
32 |
return $this->isUrl; |
33 |
} |
34 |
|
35 |
public function getIsIframe() { |
36 |
return $this->isIframe; |
37 |
} |
38 |
|
39 |
public function getExtensions() { |
40 |
return $this->extensions; |
41 |
} |
42 |
} |