bonjour,
voila je creer un site e-commerce php5 j'arrive a la gestion des images de mes produits. Je souhaite afficher les nouveautes donc je doit afficher:
titre categorie: nom produit
photos produit
description produit.
Prix produit.
et je doit recuperer le titre de la categorie pour retrouver le nom de ce dossier dans catalogue.
Mais je devrai faire appel a 3 foreach dut faite que je doit afficher la categorie, le titre du produit, les photos et description du produit
donc je dois faire appel a la class illsutration:
la class produit:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289 <?php class IllustrationProduit { /** * Nom de la table utilisée * @var String */ const TB_PREFIX = 'achatsenfolie__'; const TB_NAME = 'illustration_produit'; /** * Numéro d'identifiant * @access private * @var Integer */ private $id; /** * Titre * @access private * @var String */ private $titre; /** * Image * @access private * @var binary */ private $fichier; /** * Produit illustré * @access private * @var Produit */ private $Produit; /** * Donne toutes les illustrations du produit * * @access public * @return Array */ /** * Constructor * @access protected */ public function __construct($id=0,$titre = "sans titre",$fichier = null,$id_produit=NULL ) { $this->id = $id; $this->titre = $titre; $this->fichier = $fichier; $this->id_produit = $id_produit; } public function getIllustrations() { $req ="SELECT * from ".self::TB_PREFIX."produit as p,".self::TB_PREFIX."illustration_produit as i where p.id=i.id_produit"; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->fichier, $data->id_produit ); } if ( !empty($ret) ) return $ret; return null; } /*recupere les informations de tous les categories par id*/ public static function IllustrationProduitById($id){ $req ="SELECT * from ".self::TB_PREFIX."illustration_produit where id_produit='".$id."'"; $res = mysql_query($req) or exit(mysl_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->fichier, $data->id_produit ); } if ( !empty($ret) ) return $ret; return null; } /** * Enregistre l'illustration du produit dans la base de données * * @access public * @return void */ public function Ajouter($id,$titre,$fichier,$id_produit) { $query="INSERT INTO ".self::TB_PREFIX."illustration_produit VALUES ('$id','$titre,'$fichier','','$id_produit'')"; //echo $query mysql_query($query); } public function Supprimer($id) { mysql_query("DELETE FROM ".self::TB_PREFIX."illustration_produit WHERE id='$id'"); } public function Modifier($id,$titre,$fichier,$id_produit) { $query=("UPDATE ".self::TB_PREFIX."illustration_produit SET ('$titre,'$fichier','$id_produit'') WHERE id='$id'"); //echo $query mysql_query($query); } public function ExisteIdIllustration($id){ $query=("SELECT * FROM ".self::TB_PREFIX."illustration_produit WHERE 'id'='$id'"); //echo $query; $result=mysql_query($query); if(mysql_num_rows($result)==0){ return("Identifiant inexistant"); } else { return("Identifiant existant"); } } public function CountIdIllustration($id){ $req=("SELECT * FROM ".self::TB_PREFIX."illustration_produit WHERE 'id' ='$id'"); $reponse = mysql_query($req); $nbCategorie=mysql_num_rows($reponse); return($nbCategorie); } /*Recupere informations tous les illustrations*/ public static function findAllIllustrations(){ $req ="SELECT * from ".self::TB_PREFIX."illustration_produit"; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->fichier, $data->id_produit ); } if ( !empty($ret) ) return $ret; return null; } public function generateThumb() { $monImage = new ImageFilter(); $monImage->loadImage(UPLOAD_PATH.$this->fichier); $monImage->resize(THUMB_WIDTH, THUMB_HEIGHT, 'crop'); $monImage->output('JPEG', UPLOAD_PATH.THUMB_PATH.$this->fichier); } /** * Met le numéro d'identifiant * * @access protected * @param integer $id * @return void */ protected function setId($id) { if (is_int($id) && $id>0) { $this->id = $id; } else { throw new InvalidArgumentException("Numéro d'identifiant invalide ou de type incorrect"); } } /** * Met le titre * * @access public * @param string $titre * @return void */ public function setTitre($titre) { if (is_string($titre) && strlen($titre)>0 && strlen($titre)<255) { $this->titre = $titre; } else { throw new InvalidArgumentException("Nom trop long ou de type incorrect"); } } /** * Met l'image * * @access public * @param binary $fichier * @return void */ public function setFichier($fichier) { if (file_exists(UPLOAD_PATH.$fichier)) { $this->fichier = $fichier; } else { throw new InvalidArgumentException("Le fichier \"".$fichier."\" n'existe pas"); } } /** * Met le produit illustré * * @access public * @param Produit $Produit * @return void */ public function setProduit($Produit) { if ($Produit instanceof Produit) { $this->Produit = $Produit; } else { throw new InvalidArgumentException("L'illustration doit se porter sur un produit existant"); } } /** * Donne le numéro d'identifiant * * @access public * @return integer */ public function getId() { return (int) $this->id; } /** * Donne le titre * * @access public * @return string */ public function getTitre() { return (string) $this->titre; } /** * Donne le fichier * * @access public * @return binary */ public function getFichier() { return (string) $this->fichier; } /** * Donne le Produit * * @access public * @return Produit */ public function getProduit() { return $this->Produit; } } ?>
la class categorie:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935 <?php /* * Drapeau pour signaler un produit de haut de gamme. * * @const HIGH_RANGE * @var String * @access public */ define('HIGH_RANGE', 'haute'); /** * Drapeau pour signaler un produit de moyenne gamme * * @const NORMAL_RANGE * @var String * @access public */ define('NORMAL_RANGE', 'moyenne'); /** * Drapeau pour signaler un produit bas de gamme * * @const POOR_RANGE * @var String * @access public */ define('POOR_RANGE', 'basse'); /** * Produit * -------------------------------- * */ class Produit { const TB_PREFIX = 'achatsenfolie__'; /** * Nom de la table utilisée * @var String */ const TB_NAME = 'PRODUIT'; /** * Numéro d'identifiant * @access private * @var Integer */ private $id = 0; /** * Nom * @access private * @var String */ private $nom = null; /** * Description * @access private * @var String */ private $description = null; /** * Prix * @access private * @var Float */ private $prix = 0.0; /** * Gamme (basse, moyenne, haute) * @access private * @var String */ private $gamme = 'moyenne'; /** * Date de dernière modification * @access private * @var Integer */ private $date_modification = 0; /** * Date de création * @access private * @var Integer */ private $date_creation = 0; /** * S'affiche dans la liste des nouveautés * @access private * @var Boolean */ private $afficher_Dans_Nouveautes = true; /** * S'affiche dans la liste des produits sur la page * de contact * @access private * @var Boolean */ private $afficher_Dans_Contact = true; /** * Est encore disponible * @access private * @var Boolean */ private $est_visible = true; /** * Est encore disponible * @access private * @var Boolean */ private $est_disponible = true; /** * Categorie dans laquelle est affiché le produit * @var Categorie */ private $id_categorie = null; /** * Constructor * @access protected */ public function __construct($id=0,$nom = "sans titre",$description = null,$prix=0, $gamme= null, $date_modification=0,$date_creation = 0, $afficher_Dans_Nouveautes=1,$est_visible=1,$est_disponible=1,$id_categorie=NULL ) { $this->id = $id; $this->nom = $nom; $this->description = $description; $this->prix = $prix; $this->gamme = $gamme; $this->date_modification = $date_modification; $this->date_creation = $date_creation; $this->afficher_Dans_Nouveautes = $afficher_Dans_Nouveautes; $this->est_visible = $est_disponible; $this->est_disponible = $est_disponible; $this->id_categorie = $id_categorie; } /** * Constructor * * @static * @access public * @param Array $Array * @return Produit */ /*public static function findAllProduits(){ $req ="SELECT * from ".self::TB_PREFIX."produit"; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id; $data->nom; $data->description; $data->gamme; $data->dateModification; $data->dateCreation; $data->afficherDansNouveautes; $data->estDisponible; $data->Categorie; ); } if ( !empty($ret) ) return $ret; return null; }*/ /** * Constructor * * @static * @access public * @param integer $id * @return Produit */ static public function getById($id) { global $PDO; if (is_int($id) && $id>0) { $sql = "SELECT * "; $sql.= "FROM `".TB_PREFIX.self::TB_NAME."` "; $sql.= "WHERE `id` = '".$id."';"; $PDOStatement = $PDO->query($sql); if ($PDOStatement->rowCount()>0) { try { $result = self::getByArray($PDOStatement->fetch(PDO::FETCH_ASSOC)); } catch (Exception $e) { $result = null; } } else { $result = null; } } else { $result = null; } return $result; } /** * * @access public * @result String */ public function __toString() { if (function_exists(self::$toStringCallback)) { $result = call_user_func(self::$toStringCallback, $this); } else { trigger_error('Vue "'.self::$toStringCallback.'" introuvable pour : '.__class__, E_USER_WARNING); } return $result; } /** * Enregistre le Produit dans la base de données * * @access public * @return void */ public function ajouter() { global $PDO; $nom = str_replace("'", "\'", $this->nom); $description = str_replace("'", "\'", $this->description); $sql = "INSERT INTO `".TB_PREFIX.self::TB_NAME."` "; $sql.= "(`nom`, `description`, `prix`, `gamme`, `date_creation`, "; $sql.= "`afficher_dans_nouveautes`, `afficher_dans_contact`, "; $sql.= "`est_visible`, `est_disponible`, `id_type_produit`, "; $sql.= "`id_categorie`) VALUE ("; $sql.= "'".$nom."', "; if (!is_null($description) || strlen($description)>0) { $sql.= "'".$description."', "; } else { $sql.= "NULL, "; } $sql.= "'".$this->prix."', "; $sql.= "'".$this->gamme."', "; $sql.= "'".date('Y-m-d H:i:s')."', "; $sql.= "'".(int) $this->afficherDansNouveautes."', "; $sql.= "'".(int) $this->afficherDansContact."', "; $sql.= "'".(int) $this->estVisible."', "; $sql.= "'".(int) $this->estDisponible."', "; $sql.= "'".$this->getTypeProduit()->getId()."', "; $sql.= "'".$this->getCategorie()->getId()."');"; $PDO->beginTransaction(); try { $affectedRows = $PDO->exec($sql); } catch (Exception $e) { $PDO->rollBack(); throw $e; } if ($affectedRows==1) { try { $this->setId((int) $PDO->lastInsertId()); $PDO->commit(); } catch (Exception $e) { $PDO->rollBack(); throw new Exception('La base de données à retourné un numéro d\'identifiant invalide pour '.$this->getNom()); } } else { $PDO->rollBack(); throw new Exception('Impossible d\'ajouter '.$this->getNom()); } } /** * Supprime le produit de la base de données * * @access public * @return void */ public function supprimer() { global $PDO; $sql = "DELETE FROM `".TB_PREFIX.self::TB_NAME."` "; $sql.= "WHERE `id` = '".(int) $this->id."';"; $PDO->beginTransaction(); try { $affectedRows = $PDO->exec($sql); } catch (Exception $e) { $PDO->rollBack(); throw $e; } if ($affectedRows==1) { $PDO->commit(); } else { $PDO->rollBack(); throw new Exception('Impossible de supprimer '.$this->getNom()); } } /** * Enregistre les modifications apportées au produit dans la base de données * * @access public * @return void */ public function modifier() { global $PDO; $nom = str_replace("'", "\'", $this->nom); $description = str_replace("'", "\'", $this->description); $sql = "UPDATE `".TB_PREFIX.self::TB_NAME."` "; $sql.= "SET `nom` = '".$nom."', "; $sql.= "`description` = "; if (!is_null($description) || strlen($description)>0) { $sql.= "'".$description."', "; } else { $sql.= "NULL, "; } $sql.= "`prix` = '".$this->prix."', "; $sql.= "`gamme` = '".$this->gamme."', "; $sql.= "`date_modification` = '".date('Y-m-d H:i:s')."', "; $sql.= "`afficher_dans_nouveautes` = '".$this->afficherDansNouveautes."', "; $sql.= "`afficher_dans_contact` = '".$this->afficherDansContact."', "; $sql.= "`est_visible` = '".$this->estVisible."', "; $sql.= "`est_disponible` = '".$this->estDisponible."', "; $sql.= "`id_type_produit` = '".$this->TypeProduit->getId()."', "; $sql.= "`id_categorie` = '".$this->Categorie->getId()."' "; $sql.= "WHERE `id` = '".$this->id."';"; $PDO->beginTransaction(); try { $affectedRows = $PDO->exec($sql); } catch (Exception $e) { $PDO->rollBack(); throw $e; } if ($affectedRows==1) { $PDO->commit(); } else { $PDO->rollBack(); throw new Exception('Impossible de modifier '.$this->getNom()); } } /** * Met le numéro d'identifiant * * @access protected * @param integer $id * @return void */ protected function setId($id) { if (is_int($id) && $id>0) { $this->id = $id; } else { throw new InvalidArgumentException('Numéro d\'identifiant incorrect'); } return $this; } /** * Met le nom * * @access public * @param string $nom * @return void */ public function setNom($nom) { if (is_string($nom) && strlen($nom)>0 && strlen($nom)<=255) { $this->nom = $nom; } else { throw new InvalidArgumentException('Nom trop long ou de type incorrect'); } return $this; } /** * Met la description * * @access public * @param string $description * @return void */ public function setDescription($description) { if (is_string($description) || is_null($description)) { $this->description = $description; } else { throw new InvalidArgumentException('Description incorrecte'); } return $this; } /** * Met le prix * * @access public * @param float $prix * @return void */ public function setPrix($prix) { if (is_float($prix) && $prix>0) { $this->prix = $prix; } else { throw new InvalidArgumentException('Prix de type incorrect'); } return $this; } /** * Selectionne le type de gamme (basse, moyenne, haute) * * @access public * @param string $gamme * @return void */ public function setGamme($gamme) { $gammesPossibles = Array(POOR_RANGE, NORMAL_RANGE, HIGH_RANGE); if (in_array($gamme, $gammesPossibles)) { $this->gamme = $gamme; } else { throw new InvalidArgumentException($gamme.' n\'est pas considéré comme une gamme valide'); } return $this; } /** * Met la date de modification * * @access public * @param integer $date * @return void */ public function setDateModification($date) { if (is_string($date) && strlen($date)<=20) { $this->dateModification = $date; } else { throw new InvalidArgumentException($date.' n\'est pas considéré comme une date valide'); } return $this; } /** * Met la date de création * * @access public * @param integer $date * @return void */ public function setDateCreation($date) { if (is_string($date) && strlen($date)<=20) { $this->dateCreation = $date; } else { throw new InvalidArgumentException($date.' n\'est pas considéré comme une date valide'); } return $this; } /** * @access public * @param Boolean $afficher * @result Produit */ public function setAfficherDansContact($afficher) { if (is_bool($afficher)) { $this->afficherDansContact = (bool) $afficher; } else { throw new InvalidArgumentException('Impossible de savoir si vous souhaitez afficher ce produit dans la liste de la page contact'); } return $this; } /** * Choisi si le produit sera afficher dans les nouveautées ou non * * @access public * @param boolean $afficher * @return void */ public function setAfficherDansNouveautes($afficher) { if (is_bool($afficher)) { $this->$afficher_Dans_Nouveautes = $afficher; } else { throw new InvalidArgumentException('Impossible de savoir si vous souhaitez afficher ce produit dans les nouveautés ou non'); } return $this; } /** * Met si le produit est visible ou non * * @access public * @param boolean $estVisible * @return void */ public function setVisible($estVisible) { if (is_bool($estVisible)) { $this->estVisible = $estVisible; } else { throw new InvalidArgumentException('Impossible de savoir si vous souhaitez mettre ce produit en ligne ou non'); } return $this; } /** * Met si le produit est encore dispobible ou non * * @access public * @param boolean $est_disponible * @return void */ public function setDisponibilite($est_disponible) { if (is_bool($est_disponible)) { $this->estDisponible = $est_disponible; } else { throw new InvalidArgumentException('Impossible de savoir si ce produit est disponible'); } return $this; } /** * Met le type du produit * * @access public * @param TypeProduit $TypePorduit * @return void */ public function setTypeProduit($TypeProduit) { if ($TypeProduit instanceof TypeProduit) { $this->TypeProduit = $TypeProduit; } else { throw new InvalidArgumentException('"'.$TypeProduit.'" n\'est pas un type de produit valide'); } return $this; } /** * Met la catégorie * * @access public * @param Categorie $id_categorie * @return void */ public function setCategorie($id_categorie) { if ($id_categorie instanceof Categorie) { $this->Categorie = $id_categorie; } else { throw new InvalidArgumentException('Cette catégorie n\'existe pas'); } return $this; } /** * */ public function setChamp($Champ, $valeur) {} /** * Ajoute l'option passée en paramètre au produit * @access public * @param OptionProduit $OptionProduit * @result void */ public function ajouterOption($OptionProduit) { global $PDO; if ($OptionProduit instanceof OptionProduit) { $sql = "INSERT INTO `".TB_PREFIX.OptionProduit::ER_NAME."` "; $sql.= "(`id_produit`, `id_option`) VALUES "; $sql.= "('".$this->getId()."', '".$OptionProduit->getId()."');"; $PDO->beginTransaction(); try { $affectedRows = $PDO->exec($sql); } catch (Exception $e) { $PDO->rollBack(); throw $e; } if ($affectedRows==1) { $PDO->commit(); } else { $PDO->rollBack(); throw new Exception('Impossible d\'ajouter l\'option '.$OptionProduit->getNom().' au produit '.$this->getNom()); } } else { throw new InvalidArgumentException('Ceci n\'est pas une option valide, vous ne pouvez pas l\'ajouter à ce produit'); } } /** * Supprime l'option passée en paramètre du produit * @access public * @param OptionProduit $OptionProduit * @result void */ public function supprimerOption($OptionProduit) { global $PDO; if ($OptionProduit instanceof OptionProduit) { $sql = "DELETE FROM `".TB_PREFIX.OptionProduit::ER_NAME."` "; $sql.= "WHERE `id_produit` = '".$this->getId()."' "; $sql.= "AND `id_option` = '".$OptionProduit->getId()."';"; $PDO->beginTransaction(); try { $affectedRows = $PDO->exec($sql); } catch (Exception $e) { $PDO->rollBack(); throw $e; } if ($affectedRows==1) { $PDO->commit(); } else { $PDO->rollBack(); throw new Exception('Impossible de supprimer l\'option '.$OptionProduit->getNom().' du produit '.$this->getNom()); } } else { throw new InvalidArgumentException('Ceci n\'est pas une option valide, vous ne pouvez pas la supprimer de ce produit'); } } /** * Donne le numéro d'identifiant * * @access public * @return integer */ public function getId() { return (int) $this->id; } /** * Donne le nom * * @access public * @return string */ public function getNom() { return (string) $this->nom; } /** * Donne la description * * @access public * @return string */ public function getDescription() { return (string) $this->description; } /** * Donne le prix * * @access public * @return float */ public function getPrix() { return (float) $this->prix; } /** * Donne la gamme * * @access public * @return string */ public function getGamme() { return (string) $this->gamme; } /** * Donne la date de dernière modification * * @access public * @return integer */ public function getDateModification() { return (string) $this->dateModification; } /** * Donne la date de création * * @access public * @return integer */ public function getDateCreation() { return (string) $this->dateCreation; } /** * Donne l'URL * * @access public * @result String */ /* public function getUrl() { $result = $this->id_categorie->getNom(); $result = forUrl($result); $result = $this->id_categorie->getId().'-'.$result.'/'; $result.= $this->id.'-'.forUrl($this->getNom()).'.html'; return $result; }*/ /** * Indique si le produit s'affiche dans les nouveautées ou non * * @access public * @return boolean */ public function afficherDansNouveautes() { return (bool) $this->afficher_Dans_Nouveautes; } /** * Indique si le produit s'affiche dans les nouveautées ou non * * @access public * @return boolean */ public static function afficherLesNouveautes(){ $req ="SELECT * from ".self::TB_PREFIX."produit where afficher_dans_nouveautes=1"; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->nom, $data->description, $data->prix, $data->gamme, $data->date_modification, $data->date_creation, $data->afficher_dans_nouveautes, $data->afficher_dans_contact, $data->est_visible, $data->est_disponible, $data->id_categorie ); } if ( !empty($ret) ) return $ret; return null; } /** * * @access public * @result Boolean */ public function afficherDansContact() { return (bool) $this->afficherDansContact; } /** * Indique si le produit est encore visible ou ne l'est plus * * @access public * @return boolean */ public function estVisible() { return (bool) $this->estVisible; } /** * Indique si le produit est encore disponible ou ne l'est plus * * @access public * @return boolean */ public function estDisponible() { return (bool) $this->estDisponible; } /** * Donne le type de produit * * @access public * @return TypeProduit */ public function getTypeProduit() { return $this->TypeProduit; } /** * Donne la catégorie * * @access public * @return Categorie */ public function getCategorie() { return $this->Categorie; } /** * Donne le suffixe d'un produit mis entre parenthèses * * Utilisé nottemment pour l'affichage des onglets sur le tableau de * caractéristiques sur la page de consultation de produits. * * @access public * @return String */ public function getSuffixe() { $result = explode('(', $this->nom); if (count($result)>1) { $result = str_replace(')', null, $result[1]); } else { $result = null; } return $result; } /** * Donne la valeur de tous les champ afférants au produit * * @access public * @return Array */ public function getValeurChamps() { global $PDO; $result = Array(); $sql = "SELECT * "; $sql.= "FROM `".TB_PREFIX.ValeurChamp::TB_NAME."` "; $sql.= "WHERE `id_produit` = '".(int) $this->id."';"; $PDOStatement = $PDO->query($sql); while($ValeurChamp = $PDOStatement->fetch(PDO::FETCH_ASSOC)) { array_push($result, ValeurChamp::getByArray($ValeurChamp)); } return $result; } /** * Donne la liste de toutes les options disponible pour le produit donné * * @access public * @result Array */ public function getOptions() { global $PDO; $result = Array(); $sql = "SELECT * "; $sql.= "FROM `".TB_PREFIX.OptionProduit::TB_NAME."` "; $sql.= "LEFT JOIN `".TB_PREFIX.OptionProduit::ER_NAME."` ON `".TB_PREFIX.OptionProduit::TB_NAME."`.`id` = `".TB_PREFIX.OptionProduit::ER_NAME."`.`id_option` "; $sql.= "WHERE `".TB_PREFIX.OptionProduit::ER_NAME."`.`id_produit` = '".(int) $this->id."';"; $PDOStatement = $PDO->query($sql); while($OptionProduit = $PDOStatement->fetch(PDO::FETCH_ASSOC)) { array_push($result, OptionProduit::getByArray($OptionProduit)); } return $result; } /** * Retourne la liste des produits ayant le même titre * * @access public * @return Array */ public function getSimilarProducts() { global $PDO; $query = explode('(', $this->nom); $query = $query[0]; $result = Array(); $sql = "SELECT `".TB_PREFIX.self::TB_NAME."`.* "; $sql.= "FROM `".TB_PREFIX.self::TB_NAME."` "; $sql.= "WHERE `nom` LIKE '".$query." (%)' "; $sql.= "OR `nom` LIKE '".$query."(%)' "; $PDOStatement = $PDO->query($sql); while($Produit = $PDOStatement->fetch(PDO::FETCH_ASSOC)) { $Produit = Produit::getByArray($Produit); $result[$Produit->getSuffixe()] = $Produit; } krsort($result); return $result; } /** * * @access public * @param String $type * @result DocumentPDFProduit */ public function getDocumentPDF($type) { global $PDO; switch ($type) { case 'assemblage' : $SQLtype = DocumentPDFProduit::DIAGRAM_SHEET; break; case 'technical_data' : $SQLtype = DocumentPDFProduit::TECHNICAL_SHEET; break; default : throw new InvalidArgumentException('Type de document inconnu.'); } $result = Array(); $sql = "SELECT * "; $sql.= "FROM `".TB_PREFIX.DocumentPDFProduit::TB_NAME."` "; $sql.= "WHERE `id_produit` = '".(int) $this->id."' "; $sql.= "AND `type` = '".$SQLtype."' ;"; $PDOStatement = $PDO->query($sql); if ($PDOStatement->rowCount() > 0) { $result = $PDOStatement->fetch(PDO::FETCH_ASSOC); $monDocumentPDFProduit = DocumentPDFProduit::getByArray($result); } else { throw new InvalidArgumentException('Le document demandé n\'existe pas.'); } return $monDocumentPDFProduit; } } ?>
donc voial 3 foreach ca fait bc vous n avez pas une idée?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539 <?php class Categorie { const TB_PREFIX = 'achatsenfolie__'; /** * Numéro d'identifiant * @access private * @var integer */ private $id = 0; /** * Titre * @access private * @var string */ private $titre = null; /** * Description * @access private * @var string */ private $description = null; /** * * @access private * @var boolean */ private $estVisible = null; /** * * @access private * @var boolean */ private $estDisponible = null; /** * * @access private * @var boolean */ private $afficherDansNouveautes = null; /** * date de modification de la categorie * Laissez à null pour une catégorie de premier niveau. * @access private * @var Categorie */ private $date_modification = null; /** * date de creation * Laissez à null pour une catégorie de premier niveau. * @access private * @var Categorie */ private $date_creation = null; /** * Illustration de la categorie * Laissez à null pour une catégorie de premier niveau. * @access private * @var Categorie */ private $illustration = null; /** * Catégorie de niveau supérieur. * Laissez à null pour une catégorie de premier niveau. * @access private * @var Categorie */ private $id_categorie = null; /** * Constructor * * @static * Ne peut être static. * Attention, quand tu fais ton new Categorie, tu lui passe des paramètres donc * ton constructeur doit certainement prendre certain parametre * @access public * @param Array $Array * @return Categorie */ public function __construct($id=0,$titre = "sans titre",$description = null,$estVisible = 0,$estDisponible = 0,$afficherDansNouveautes=0,$date_modification=null,$date_creation=null,$illustration=null,$id_categorie = null) { $this->id = $id; $this->titre = $titre; $this->description = $description; $this->estVisible = $estVisible; $this->estDisponible = $estDisponible; $this->afficherDansNouveautes = $afficherDansNouveautes; $this->date_modification = $date_modification; $this->date_creation = $date_creation; $this->illustration = $illustration; $this->id_categorie = $id_categorie; } //ACCESSEURS //SET protected function setId($id) { if (is_int($id) && $id>0) { $this->id = $id; } else { throw new InvalidArguementException('Numéro d\'identifiant incorrect'); } return $this; } public function setTitre($titre) { if (is_string($titre) && strlen($titre)>0 && strlen($titre)<255) { $this->titre = html_entity_decode($titre); } else { throw new InvalidArgumentException('Titre trop long ou de type incorrect'); } return $this; } public function setDescription($description) { if (is_string($description) || is_null($description)) { $this->description = html_entity_decode($description); } else { throw new InvalidArgumentException('Description de type incorrecte'); } return $this; } /** * Choisir si la catégorie est visible ou non. * * @access public * @param boolean $estVisible * @return Visibilite */ public function setVisible($estVisible) { if (is_bool($estVisible)) { $this->estVisible = $estVisible; } else { throw new InvalidArgumentException('Impossible de savoir si la catégorie est visible ou non'); } return $this; } /** * Choisir si la catégorie est disponible ou non. * * @access public * @param boolean $estDisponible * @return Disponibilite */ public function setDisponible($estDisponible) { if (is_bool($estDisponible)) { $this->estDisponible = $estDisponible; } else { throw new InvalidArgumentException('Impossible de savoir si la catégorie est Disponible ou non'); } return $this; } /** * Choisir si la catégorie est nouvelle ou non. * * @access public * @param boolean afficherDansNouveaute * @return Disponibilite */ public function setAfficherDansNouveautes($afficherDansNouveautes) { if (is_bool($afficherDansNouveautes)) { $this->afficherDansNouveautes = $afficherDansNouveautes; } else { throw new InvalidArgumentException('Impossible de savoir si la catégorie est nouvelle ou non'); } return $this; } /** * Choisir si la date de modification de la catégorie. * * @access public * @param boolean afficherDansNouveaute * @return Disponibilite */ public function setDate_modification($date_modification) { if (is_string($date_modification)) { $this->date_modification = $date_modification; } else { throw new InvalidArgumentException('Impossible de savoir si la date de modification de la categorie'); } return $this; } /** * Choisir si la catégorie est nouvelle ou non. * * @access public * @param boolean afficherDansNouveaute * @return Disponibilite */ public function setDate_creation($date_creation) { if (is_string($date_creation)) { $this->date_creation = $date_creation; } else { throw new InvalidArgumentException('Impossible de savoir si la catégorie est nouvelle ou non'); } return $this; } public function setIllustration($illustration) { if (is_string($illustration)) { $this->illustration = $illustration; } else { throw new InvalidArgumentException('Impossible d affiche l illustration de la categorie'); } return $this; } /** * Choisir si la date de creation de la catégorie. * * @access public * @param Categorie $id_categorie * @return Categorie */ public function setCategorie($id_categorie) { if (id_categorie instanceof id_categorie || is_null(id_categorie)) { $this->id_categorie = $id_categorie; } else { throw new InvalidArgumentException('La catégorie "'.(string) $id_categorie.'" n\'existe pas'); } return $this; } /** * Donne le numéro d'identifiant * * @access public * @return integer */ public function getId() { return (int) $this->id; } /** * Donne le nom * * @access public * @return string */ public function getTitre() { return (string) $this->titre; } /** * Donne la description * * @access public * @return string */ public function getDescription() { return (string) $this->description; } /** * @access public * @return boolean */ public function estVisible() { return (bool) $this->estVisible; } /** * @access public * @return boolean */ public function estDisponible() { return (bool) $this->estDisponible; } /** * @access public * @return boolean */ public function AfficherDansNouveautes() { return (bool) $this->afficherDansNouveautes; } /** * Donne la date de moficiation * * @access public * @return boolean */ public function getDate_modification() { return (string) $this->date_modification; } /** * Donne la date de creation * * @access public * @return Categorie */ public function getDate_creation() { return (string)$this->date_creation; } public function getIllustration() { /*prend le tableau search pour remplacer par le tableau remplace*/ $search = array(' ', '/'); $remplace = array('-','-'); $result = EnleveAccents(str_replace($search,$remplace,$this->illustration)); return (String) $result; } public function getCategorieSuperieur() { return $this->id_categorie; } /** * Retourne l'URL de la page du produit * @access public * @result String */ public function getUrl() { /*prend le tableau search pour remplacer par le tableau remplace*/ $search = array(' ', '/'); $remplace = array('-','-'); $result = EnleveAccents(str_replace($search,$remplace,$this->titre)); return (String) $result.'/'.$this->id.'-'.$result.'.php'; } public function NomRemplacement($id,$titre,$description,$id_categorie) { $search = array(' ', '/'); $remplace = array('-','-'); $result = EnleveAccents(str_replace($search,$remplace,$this->titre)); return (String) $result.'.php'; } /***********Créer une catgeorie vide pour rentrer les champs*******/ public function Ajouter($id,$titre,$description,$id_categorie) { $query="INSERT INTO categorie VALUES ('$id','$titre,'$description','','$id_categorie'')"; //echo $query mysql_query($query); } public function Supprimer($id) { mysql_query("DELETE FROM categorie WHERE id='$id'"); } public function Modifier($id,$titre,$description,$id_categorie) { $query=("UPDATE categorie SET ('$titre,'$description','','$id_categorie'') WHERE id='$id'"); //echo $query mysql_query($query); } public function ExisteId($id){ $query=("SELECT * FROM 'categorie' WHERE 'id'='$id'"); //echo $query; $result=mysql_query($query); if(mysql_num_rows($result)==0){ return("Identifiant inexistant"); } else { return("Identifiant existant"); } } public function CountId($id){ $req=("SELECT * FROM 'categorie' WHERE 'id' ='$id'"); $reponse = mysql_query($req); $nbCategorie=mysql_num_rows($reponse); return($nbCategorie); } /*Recupere informations tous les categories*/ public static function findAllCategorie(){ $req ="SELECT * from ".self::TB_PREFIX."categorie where id_categorie is NULL"; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->description, $data->estVisible, $data->estDisponible, $data->afficherDansNouveautes, $data->date_modification, $data->date_creation, $data->illustration, $data->id_categorie ); } if ( !empty($ret) ) return $ret; return null; } /*Recupere informations tous les sous categories*/ public static function findAllSousCategorie(){ $req ="SELECT * from ".self::TB_PREFIX."categorie where id_categorie IS NOT NULL"; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->description, $data->estVisible, $data->estDisponible, $data->afficherDansNouveautes, $data->date_modification, $data->date_creation, $data->illustration, $data->id_categorie ); } if ( !empty($ret) ) return $ret; return null; } /*recupere les informations de tous les categories par id*/ public static function findById($id){ $req ="SELECT * from ".self::TB_PREFIX."categorie where id=".$id.""; $res = mysql_query($req) or exit(mysl_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->description, $data->estVisible, $data->estDisponible, $data->afficherDansNouveautes, $data->date_modification, $data->date_creation, $data->illustration, $data->id_categorie ); } if ( !empty($ret) ) return $ret; return null; } /*Recupere informations tous les sous categories par id*/ public static function findSousCategorieById($id){ $req ="SELECT * from ".self::TB_PREFIX."categorie where id_categorie=".$id.""; $res = mysql_query($req) or die ('Erreur : '.mysql_error()); $ret = array(); while( $data = mysql_fetch_object($res) ) { $ret[] = new self ( $data->id, $data->titre, $data->description, $data->estVisible, $data->estDisponible, $data->afficherDansNouveautes, $data->date_modification, $data->date_creation, $data->illustration, $data->id_categorie ); } if ( !empty($ret) ) return $ret; return null; } /*Recupere informations d'une categorie par titre*/ public static function findByTitre($titre){ $req ="SELECT * from ".self::TB_PREFIX."categorie where titre=".$titre.""; $res = mysql_query($req); if($data = mysql_fetch_object($res))return new categorie( $data->id, $data->titre, $data->description, $data->estVisible, $data->estDisponible, $data->afficherDansNouveautes, $data->date_modification, $data->date_creation, $data->illustration, $data->id_categorie); else return null; } public function __toString() { return $this->titre."".$this->description; } } ?>
MERCI
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 /*appelle de la class categorie*/ $objet3=new categorie; /*appelle de la class produit*/ $objet=new produit; /*appelle de la class illustration*/ $objet2=new IllustrationProduit ; /*utilisation fonction pour recuperer valeur categorie*/ $Nouveautes=$objet->afficherLesNouveautes(); /*utilisation fonction pour recuperer valeur categorie*/ $IdCateg=$Nouveautes->getId(); /*utilisation fonction pour recuperer valeur categorie*/ $Categorie=findById($IdCateg); if ( ($tab = $Nouveautes) !== null ) { $body.='<div class="Nouveaute_center">'; foreach( $tab as $Nouveautes ) { /*recupere element donnée en parametre*/ $IdIllustration=$objet2->IllustrationProduitById($Nouveautes->getId()); /*construction url dynamique*/ $body.='<ul><li><a>'; $body.=''.$Nouveautes->getNom().''; $body.='</a></li></ul>'; if ( ($tab2 = $IdIllustration) !== null ) { foreach( $tab2 as $IdIllustration ) { $body.='<img src="../catalogue/'.$categorie->getTitre.'/'.$IdIllustration->getFichier().'">'; } } } $body.='</div>'; }
Partager