1 | <?php |
||
3 | class Projet extends \Phalcon\Mvc\Model |
||
|
|||
4 | { |
||
5 | |||
6 | /** |
||
7 | * |
||
8 | * @var integer |
||
9 | */ |
||
10 | protected $id; |
||
11 | |||
12 | /** |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $nom; |
||
17 | |||
18 | /** |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description; |
||
23 | |||
24 | /** |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $dateLancement; |
||
29 | |||
30 | /** |
||
31 | * |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $dateFinPrevue; |
||
35 | |||
36 | /** |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $image; |
||
41 | |||
42 | /** |
||
43 | * |
||
44 | * @var integer |
||
45 | */ |
||
46 | protected $idClient; |
||
47 | |||
48 | /** |
||
49 | * Method to set the value of field id |
||
50 | * |
||
51 | * @param integer $id |
||
52 | * @return $this |
||
53 | */ |
||
54 | public function setId($id) |
||
60 | |||
61 | /** |
||
62 | * Method to set the value of field nom |
||
63 | * |
||
64 | * @param string $nom |
||
65 | * @return $this |
||
66 | */ |
||
67 | public function setNom($nom) |
||
73 | |||
74 | /** |
||
75 | * Method to set the value of field description |
||
76 | * |
||
77 | * @param string $description |
||
78 | * @return $this |
||
79 | */ |
||
80 | public function setDescription($description) |
||
86 | |||
87 | /** |
||
88 | * Method to set the value of field dateLancement |
||
89 | * |
||
90 | * @param string $dateLancement |
||
91 | * @return $this |
||
92 | */ |
||
93 | public function setDateLancement($dateLancement) |
||
99 | |||
100 | /** |
||
101 | * Method to set the value of field dateFinPrevue |
||
102 | * |
||
103 | * @param string $dateFinPrevue |
||
104 | * @return $this |
||
105 | */ |
||
106 | public function setDateFinPrevue($dateFinPrevue) |
||
112 | |||
113 | /** |
||
114 | * Method to set the value of field image |
||
115 | * |
||
116 | * @param string $image |
||
117 | * @return $this |
||
118 | */ |
||
119 | public function setImage($image) |
||
125 | |||
126 | /** |
||
127 | * Method to set the value of field idClient |
||
128 | * |
||
129 | * @param integer $idClient |
||
130 | * @return $this |
||
131 | */ |
||
132 | public function setIdClient($idClient) |
||
138 | |||
139 | /** |
||
140 | * Returns the value of field id |
||
141 | * |
||
142 | * @return integer |
||
143 | */ |
||
144 | public function getId() |
||
148 | |||
149 | /** |
||
150 | * Returns the value of field nom |
||
151 | * |
||
152 | * @return string |
||
153 | */ |
||
154 | public function getNom() |
||
158 | |||
159 | /** |
||
160 | * Returns the value of field description |
||
161 | * |
||
162 | * @return string |
||
163 | */ |
||
164 | public function getDescription() |
||
168 | |||
169 | /** |
||
170 | * Returns the value of field dateLancement |
||
171 | * |
||
172 | * @return string |
||
173 | */ |
||
174 | public function getDateLancement() |
||
178 | |||
179 | /** |
||
180 | * Returns the value of field dateFinPrevue |
||
181 | * |
||
182 | * @return string |
||
183 | */ |
||
184 | public function getDateFinPrevue() |
||
188 | |||
189 | /** |
||
190 | * Returns the value of field image |
||
191 | * |
||
192 | * @return string |
||
193 | */ |
||
194 | public function getImage() |
||
198 | |||
199 | /** |
||
200 | * Returns the value of field idClient |
||
201 | * |
||
202 | * @return integer |
||
203 | */ |
||
204 | public function getIdClient() |
||
208 | |||
209 | /** |
||
210 | * Initialize method for model. |
||
211 | */ |
||
212 | public function initialize() |
||
218 | |||
219 | /** |
||
220 | * Returns table name mapped in the model. |
||
221 | * |
||
222 | * @return string |
||
223 | */ |
||
224 | public function getSource() |
||
228 | |||
229 | /** |
||
230 | * Allows to query a set of records that match the specified conditions |
||
231 | * |
||
232 | * @param mixed $parameters |
||
233 | * @return Projet[] |
||
234 | */ |
||
235 | public static function find($parameters = null) |
||
239 | |||
240 | /** |
||
241 | * Allows to query the first record that match the specified conditions |
||
242 | * |
||
243 | * @param mixed $parameters |
||
244 | * @return Projet |
||
245 | */ |
||
246 | public static function findFirst($parameters = null) |
||
250 | |||
251 | public function toString() |
||
255 | |||
256 | //Return a string containing the principal content of the model |
||
257 | public function getPrincipal() |
||
261 | |||
262 | |||
263 | //R�cup�re la couleur dominante de l'image du profil |
||
264 | public function getDominantColor() |
||
296 | |||
297 | //Converti l'image de profil afin de pouvoir l'analyser. |
||
298 | |||
299 | public function imageCreateFromAny() |
||
329 | |||
330 | |||
331 | } |
||
332 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.