/[openfoncier]/trunk/obj/demande.class.php
ViewVC logotype

Annotation of /trunk/obj/demande.class.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1335 - (hide annotations)
Thu Mar 7 14:07:57 2013 UTC (11 years, 10 months ago) by nhaye
File size: 44511 byte(s)
Correction de l'appel à la méthode isDatabaseError

1 vpihour 632 <?php
2     //$Id$
3     //gen openMairie le 08/11/2012 14:00
4    
5     require_once ("../gen/obj/demande.class.php");
6    
7     class demande extends demande_gen {
8    
9 nhaye 838 var $valIdDemandeur = array("petitionnaire_principal" => "",
10     "delegataire" => "",
11     "petitionnaire" => array());
12     var $postedIdDemandeur = array("petitionnaire_principal" => "",
13     "delegataire" => "",
14     "petitionnaire" => array());
15 nhaye 807
16 nhaye 1333 var $autreDossierEnCour;
17    
18 vpihour 632 function demande($id,&$db,$debug) {
19     $this->constructeur($id,$db,$debug);
20     }// fin constructeur
21 fmichon 1005
22     function setValF($val) {
23     parent::setValF($val);
24     // Récupération des id demandeurs postés
25     $this->getPostedValues();
26 nhaye 1020 //$this->valIdDemandeur=$this->postedIdDemandeur;
27 fmichon 1005 }
28    
29     /**
30     * Méthode permettant de récupérer les valeurs du dossier d'autorisation
31 vpihour 1058 * correspondant à la nouvelle demande
32 fmichon 1005 */
33 nhaye 1039 function getValFromDossier($dossier_autorisation) {
34 fmichon 1005 include "../sql/pgsql/demande.form.inc.php";
35     $sql=str_replace("<idx>",$this->getParameter("idx_dossier"),
36 nhaye 1053 $sql_infos_dossier);
37 fmichon 1005 $res = $this->db->query($sql);
38 nhaye 1039 $this->addToLog("demande -> getValFromDossier() : ".$sql);
39 fmichon 1005 $this->f->isDatabaseError();
40     $row = & $res->fetchRow(DB_FETCHMODE_ASSOC);
41     return $row;
42     }
43 vpihour 651
44 vpihour 799 /*
45     * La date du jour par défaut dans le champs date_demande
46     * Put the date of the day by default into the field date_demande
47     */
48 vpihour 635 function setVal(&$form, $maj, $validation, &$db) {
49     if($maj == 0) {
50 fmichon 1005 $form->setVal("date_demande",date('d/m/Y'));
51    
52     // Récupération des valeurs du dossier d'autorisation correspondant
53     if($this->getParameter("idx_dossier") != "") {
54 nhaye 1039 $val_autorisation = $this->getValFromDossier(
55 fmichon 1005 $this->getParameter("idx_dossier"));
56     foreach($val_autorisation as $champ => $value) {
57     $form->setVal($champ,$value);
58     }
59     }
60 vpihour 635 }
61     }
62    
63 nhaye 838 /**
64     * Méthode de verification du contenu
65     */
66     function verifier($val, &$db, $DEBUG) {
67     parent::verifier($val, $db, $DEBUG);
68     if(!isset($this->postedIdDemandeur["petitionnaire_principal"]) OR
69     empty($this->postedIdDemandeur["petitionnaire_principal"])) {
70     $this->correct = false;
71     $this->addToMessage("La saisie d'un petitionnaire principal est obligatoire.");
72     }
73     }
74 nhaye 1333
75     /**
76     * Méthode permettant de vérifier si un autre dossier d'instruction est en cour
77     * pour le même dossier d'autorisation.
78     */
79     function autreDossierEnCour() {
80    
81     $idx_dossier = $this->getParameter("idx_dossier");
82    
83     // Lorsqu'on se trouve sur un dossier existant
84     if(isset($idx_dossier) AND $idx_dossier != "") {
85    
86     // Si on a pas encore défini si un autre dossier est en cours
87     if(!isset($this->autreDossierEnCour)) {
88    
89     if(file_exists ("../sql/".$this->db->phptype."/".$this->table.".form.inc.php"))
90     include ("../sql/".$this->db->phptype."/".$this->table.".form.inc.php");
91     elseif(file_exists ("../sql/".$this->db->phptype."/".$this->table.".form.inc"))
92     include ("../sql/".$this->db->phptype."/".$this->table.".form.inc");
93     $request = str_replace('<idx>', $idx_dossier,
94     $sql_autreDossierEnCour);
95    
96     $nbDossier = $this->db->getOne($request);
97     $this->f->addToLog("db->getone(\"".$request."\");", VERBOSE_MODE);
98     $this->f->isDatabaseError($nbDossier);
99     // Si un dossier est en cour return true
100     if($nbDossier>0) {
101    
102     $this->autreDossierEnCour = true;
103     } else {
104    
105     $this->autreDossierEnCour = false;
106     }
107    
108     }
109     } else {
110     $this->autreDossierEnCour = false;
111     }
112    
113     return $this->autreDossierEnCour;
114     }
115    
116     /**
117     * Configuration des select
118     */
119     function setSelect(&$form, $maj,&$db,$debug) {
120     parent::setSelect($form, $maj,$db,$debug);
121    
122     if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php"))
123     include ("../sql/".$db->phptype."/".$this->table.".form.inc.php");
124     elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc"))
125     include ("../sql/".$db->phptype."/".$this->table.".form.inc");
126    
127     //Récupération de paramètre pour le rechargement ajax du select
128     $idx_dossier = $this->getParameter("idx_dossier");
129     $datd = $this->getParameter("datd");
130    
131     $contenu = array();
132    
133     // Ajout de filtre sur la requête (initial)
134     if(isset($idx_dossier) AND $idx_dossier != "") {
135     $sql_demande_type .= " WHERE demande_nature = 2 ";
136     } else {
137     $sql_demande_type .= " WHERE demande_nature = 1 ";
138     }
139     // Ajout de filtre sur la requête (dossier_autorisation_type_detaille)
140     if(isset($datd) AND $datd != "") {
141     $sql_demande_type .= " AND dossier_autorisation_type_detaille = ".$datd;
142     } else {
143     $sql_demande_type .= " AND dossier_autorisation_type_detaille = ".$this->getVal("dossier_autorisation_type_detaille");
144     }
145    
146     $res = $db->query($sql_demande_type);
147    
148     // logger
149     $this->addToLog("setSelect()[gen/obj]: db->query(\"".$sql_demande_type."\");",
150     VERBOSE_MODE);
151 nhaye 1335 $this->f->isDatabaseError($res);
152 nhaye 1333
153     $contenu[0][0] = '';
154     $contenu[1][0] = _('choisir')."&nbsp;"._("demande_type");
155    
156     $k=1;
157     while($row =& $res->fetchRow()){
158     $display = true;
159    
160     // Vérification des contraintes
161     if($row[2] != "") {
162     foreach(explode(";", $row[2]) as $meth) {
163     if(method_exists($this, $row[2])) {
164     // Si une des contrainte est validée on affiche pas l'option
165     if($this->$row[2]() === true) {
166     $display = false;
167     }
168     }
169     }
170     }
171     // Affichage ou non de l'option
172     if($display) {
173     $contenu[0][$k] = $row[0];
174     $contenu[1][$k] = $row[1];
175     $k++;
176     }
177     }
178    
179     $form->setSelect("demande_type", $contenu);
180    
181     }
182 vpihour 799 /*
183     * Ajout du fielset
184     * Add fieldset
185     */
186 vpihour 635 function setLayout(&$form, $maj){
187     if ( $maj < 2 OR $maj == 3 ) {
188    
189 vpihour 1058 /*Champ sur lequel s'ouvre le bloc 1 */
190 nhaye 807 $form->setBloc('dossier_autorisation_type_detaille','D',"","dossier_type col_8");
191 vpihour 1058
192 nhaye 807 $form->setFieldset('dossier_autorisation_type_detaille','D'
193     ,_('Type de dossier/demande'));
194     $form->setFieldset('demande_type','F','');
195    
196     $form->setBloc('demande_type','F');
197 vpihour 1058 /*Fin bloc 1*/
198 nhaye 807
199 vpihour 1058 /*Champ sur lequel s'ouvre le bloc 2 */
200 nhaye 807 $form->setBloc('date_demande','D',"","col_4 demande_hidden_bloc");
201     $form->setFieldset('date_demande','D',_('Date de la demande'));
202     $form->setFieldset('date_demande','F','');
203 vpihour 635 $form->setBloc('date_demande','F');
204 vpihour 1058 /*Fin bloc 2*/
205 vpihour 635
206 vpihour 1058 /*Champ sur lequel s'ouvre le bloc 3 */
207 nhaye 807 $form->setBloc('terrain_references_cadastrales','D',"",
208     "localisation col_12 demande_hidden_bloc");
209 vpihour 693 $form->setFieldset('terrain_references_cadastrales','D',_('Localisation du terrain'));
210     $form->setFieldset('terrain_superficie','F','');
211 vpihour 635 $form->setBloc('terrain_superficie','F');
212 vpihour 1058 /*Fin bloc 4*/
213 vpihour 676
214 vpihour 635 }
215     }
216 vpihour 641
217 vpihour 799 /*
218     * Ajoute des actions sur les deux premiers select
219     * Add actions on the two first select
220     */
221 vpihour 641 function setOnchange(&$form,$maj){
222     parent::setOnchange($form,$maj);
223     $form->setOnchange("dossier_autorisation_type_detaille","changeDemandeType();");
224     $form->setOnchange("demande_type","showFormsDemande();");
225     }
226 vpihour 635
227 vpihour 799 /*
228     * Cache le champ terrain_references_cadastrales
229     * Hide the fiels terrain_references_cadastrales
230     */
231 vpihour 651 function setType(&$form,$maj) {
232     parent::setType($form,$maj);
233    
234 vpihour 689 $form->setType('dossier_instruction', 'hidden');
235     $form->setType('dossier_autorisation', 'hidden');
236 fmichon 1005
237     $form->setType('instruction_recepisse', 'hidden');
238     $form->setType('arrondissement', 'hidden');
239    
240     // Si il s'agit d'une demande sur dossier existant on desactive tous les champs
241     // sauf demande_type
242 nhaye 1100 if(($maj == 0 AND $this-> getParameter("idx_dossier"))) {
243 nhaye 1053 $form->setType('dossier_autorisation_type_detaille', 'selecthiddenstatic');
244     $form->setType('terrain_references_cadastrales', 'hiddenstatic');
245     $form->setType('terrain_adresse_voie_numero', 'hiddenstatic');
246     $form->setType('complement', 'hiddenstatic');
247     $form->setType('terrain_adresse_lieu_dit', 'hiddenstatic');
248     $form->setType('terrain_adresse_localite', 'hiddenstatic');
249     $form->setType('terrain_adresse_code_postal', 'hiddenstatic');
250     $form->setType('terrain_adresse_bp', 'hiddenstatic');
251     $form->setType('terrain_adresse_cedex', 'hiddenstatic');
252     $form->setType('terrain_superficie', 'hiddenstatic');
253 fmichon 1005 }
254 nhaye 1100 if($maj == 1) {
255     $form->setType('dossier_autorisation_type_detaille', 'selecthiddenstatic');
256 nhaye 1095 $form->setType('demande_type', 'selecthiddenstatic');
257     }
258 nhaye 1100 if($maj == 3) {
259 nhaye 1101 $form->setType('terrain_references_cadastrales', 'referencescadastralesstatic');
260 nhaye 1100 }
261    
262 vpihour 651 }
263 vpihour 676
264 nhaye 807 /**
265 nhaye 920 * Méthode permettant d'ajouter un dossier d'autorisation
266     */
267     function ajoutDossierAutorisation($id, &$db, $val, $DEBUG){
268     require_once '../obj/dossier_autorisation.class.php';
269     $dossier_autorisation = new dossier_autorisation("]",$db,$DEBUG);
270     // Création du dossier
271     foreach($dossier_autorisation->champs as $value) {
272     $valAuto[$value] = NULL;
273     }
274     $valAuto['dossier_autorisation']=NULL;
275     $valAuto['exercice']=NULL;
276     $valAuto['insee']=NULL;
277     $valAuto['arrondissement']=NULL;
278 vpihour 1318 $valAuto['etat_dossier_autorisation']=1;
279 nhaye 920 $valAuto['erp_numero_batiment']=NULL;
280     $valAuto['erp_ouvert']=NULL;
281     $valAuto['erp_arrete_decision']=NULL;
282     $valAuto['dossier_autorisation_type_detaille']=$this->valF['dossier_autorisation_type_detaille'];
283 vpihour 1318 $valAuto['depot_initial']=$this->dateDBToForm($this->valF['date_demande']);
284 nhaye 920 $valAuto['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales'];
285     $valAuto['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero'];
286     $valAuto['complement']=$this->valF['complement'];
287     $valAuto['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit'];
288     $valAuto['terrain_adresse_localite']=$this->valF['terrain_adresse_localite'];
289     $valAuto['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal'];
290     $valAuto['terrain_adresse_bp']=$this->valF['terrain_adresse_bp'];
291     $valAuto['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex'];
292     $valAuto['terrain_superficie']=$this->valF['terrain_superficie'];
293 fmichon 1005 $valAuto['numero_version']=-1;
294 nhaye 920 // Ajout du dossier dans la base
295     $dossier_autorisation->ajouter($valAuto, $db, $DEBUG);
296     // Liaison du dossier ajouter à la demande
297     $this->valF['dossier_autorisation'] = $dossier_autorisation->valF['dossier_autorisation'];
298     }
299    
300 vpihour 1273 function getCodeDemandeType($demande_type){
301    
302     $sql = "SELECT
303     code
304     FROM
305     ".DB_PREFIXE."demande_type
306     WHERE
307     demande_type = ".$demande_type;
308     $codeDemandeType = $this->db->getOne($sql);
309     $this->addToLog("db->getone(\"".$sql."\");", VERBOSE_MODE);
310    
311     return $codeDemandeType;
312     }
313    
314 nhaye 920 /**
315     * Méthode permettant d'ajouter un dossier d'instruction
316     */
317 fmichon 1005 function ajoutDossierInstruction($id, &$db, $val, $DEBUG, $dossier_instruction_type){
318 nhaye 920 require_once '../obj/dossier.class.php';
319     $dossier = new dossier("]",$db,$DEBUG);
320     foreach($dossier->champs as $value) {
321     $valInstr[$value] = NULL;
322     }
323     require_once '../obj/dossier_autorisation_type_detaille.class.php';
324     $datd = new dossier_autorisation_type_detaille(
325     $this->valF['dossier_autorisation_type_detaille'],$db,$DEBUG);
326 fmichon 1005
327     /*Ajout de la variable dossier_instruction_type à l'objet dossier pour le
328     * versionning
329     */
330     $dossier->setDossierInstructionType($dossier_instruction_type);
331    
332 nhaye 920 // Définition des valeurs à entrée dans la table
333 nhaye 1186 $valInstr['dossier_instruction_type']=$dossier_instruction_type;
334 nhaye 920 $valInstr['date_depot']=$this->dateDBToForm($this->valF['date_demande']);
335 nhaye 1037 $valInstr['date_demande']=$this->dateDBToForm($this->valF['date_demande']);
336 nhaye 920 $valInstr['depot_initial']=$this->dateDBToForm($this->valF['date_demande']);
337     $valInstr['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales'];
338     $valInstr['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero'];
339     $valInstr['complement']=$this->valF['complement'];
340     $valInstr['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit'];
341     $valInstr['terrain_adresse_localite']=$this->valF['terrain_adresse_localite'];
342     $valInstr['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal'];
343     $valInstr['terrain_adresse_bp']=$this->valF['terrain_adresse_bp'];
344     $valInstr['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex'];
345     $valInstr['terrain_superficie']=$this->valF['terrain_superficie'];
346     $valInstr['description']="";
347 fmichon 927 $valInstr['dossier_autorisation']=$this->valF['dossier_autorisation'];
348 nhaye 1262
349 vpihour 1273 /*
350     * Gestion de la qualification
351     * */
352     //Récupérer le code du type de la demande
353     $codeDemandeType = $this->getCodeDemandeType($val['demande_type']);
354    
355     //Marque le dossier comme à qualifier selon le type de dossier d'instruction
356     if ( strcasecmp($codeDemandeType, "DI") == 0 ||
357     strcasecmp($codeDemandeType, "DT") == 0 ||
358     strcasecmp($codeDemandeType, "DM") == 0 ||
359     strcasecmp($codeDemandeType, "DP") == 0 ||
360     strcasecmp($codeDemandeType, "DTP") == 0 ||
361 vpihour 1307 strcasecmp($codeDemandeType, "DAACT") == 0 ||
362 vpihour 1273 strcasecmp($codeDemandeType, "DOC") == 0 ){
363    
364     $valInstr['a_qualifier'] = TRUE;
365     }
366    
367 nhaye 1262 // Récupération du cerfa pour le type d'instruction sélectionnée et valide
368 vpihour 1273 $sql = "SELECT
369     dossier_instruction_type.cerfa
370     FROM
371     ".DB_PREFIXE."dossier_instruction_type
372     JOIN
373     ".DB_PREFIXE."cerfa
374     ON
375     dossier_instruction_type.cerfa = cerfa.cerfa
376     WHERE
377     now()<=om_validite_fin
378     AND now()>=om_validite_debut
379     AND dossier_instruction_type=".$dossier_instruction_type;
380 nhaye 1262 $valInstr['cerfa'] = $db->getOne($sql);
381     $this->addToLog("db->getone(\"".$sql."\");", VERBOSE_MODE);
382    
383 nhaye 920 $dossier->ajouter($valInstr, $db, $DEBUG);
384     $this->f->isDatabaseError();
385     // Liaison du dossier ajouter à la demande
386     $this->valF['dossier_instruction'] = $dossier->valF['dossier'];
387     }
388    
389     /**
390     * Ajout des liens demandeurs / dossier d'autorisation
391 nhaye 907 **/
392 nhaye 920 function ajoutLiensDossierAutorisation($id, &$db, $val, $DEBUG) {
393     // Création des liens entre le dossier autorisation et les demandeurs
394 nhaye 907 include '../sql/pgsql/demande.form.inc.php';
395 nhaye 920 require_once '../obj/lien_dossier_autorisation_demandeur.class.php';
396     $ldad = new lien_dossier_autorisation_demandeur("]",$db,$DEBUG);
397     // Recupération des demandeurs liés à la demande
398     $sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur);
399     $res = $db->query($sql);
400     $this->f->addToLog("demande.class.php: db->query(\"".$sql."\");", VERBOSE_MODE);
401     $this->f->isDatabaseError();
402     while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) {
403     $row['lien_dossier_autorisation_demandeur'] = NULL;
404     $row['dossier_autorisation'] = $this->valF['dossier_autorisation'];
405     $ldad->ajouter($row, $db, $DEBUG);
406     }
407     }
408    
409     /**
410     * Ajout des liens demandeurs / dossier d'autorisation
411     **/
412     function ajoutLiensDossierInstruction($id, &$db, $val, $DEBUG) {
413     // Création des liens entre le dossier instruction et les demandeurs
414     include '../sql/pgsql/demande.form.inc.php';
415     require_once '../obj/lien_dossier_demandeur.class.php';
416     $ldd = new lien_dossier_demandeur("]",$db,$DEBUG);
417     // Recupération des demandeurs liés à la demande
418     $sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur);
419     $res = $db->query($sql);
420     $this->f->addToLog("demande.class.php: db->query(\"".$sql."\");", VERBOSE_MODE);
421     $this->f->isDatabaseError();
422     while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) {
423     $row['lien_dossier_demandeur'] = NULL;
424     $row['dossier'] = $this->valF['dossier_instruction'];
425     $ldd->ajouter($row, $db, $DEBUG);
426     }
427     }
428    
429 fmichon 1005 /*
430     * Récupère l'identifiant d'un arrondissement à partir d'un code postal
431     */
432     function getArrondissement($terrain_adresse_code_postal){
433    
434     $arrondissement = NULL;
435    
436     $sql = "SELECT
437     arrondissement
438     FROM
439     ".DB_PREFIXE."arrondissement
440     WHERE
441     code_postal = '$terrain_adresse_code_postal' ";
442     $this->addToLog("demande.class.php : ".$sql." execute <br>", EXTRA_VERBOSE_MODE);
443    
444     $res = $this->db->query($sql);
445     $this->f->isDatabaseError($res);
446    
447     if( $res->numrows() > 0 ) {
448    
449     $row=& $res->fetchRow(DB_FETCHMODE_ASSOC);
450     $arrondissement = $row['arrondissement'];
451     }
452    
453     return $arrondissement;
454     }
455    
456     /*
457     * Récupère l'évènement lié à un type de demande
458     */
459     function getEvenement($demande_type){
460    
461     $evenement = NULL;
462    
463     $sql =
464     "SELECT
465     evenement
466     FROM
467     ".DB_PREFIXE."demande_type
468     WHERE
469     demande_type = $demande_type";
470    
471     $res = $this->db->query($sql);
472     $this->f->isDatabaseError($res);
473    
474     if ( $res->numrows() > 0 ){
475    
476     $row=& $res->fetchRow(DB_FETCHMODE_ASSOC);
477     $evenement = $row['evenement'];
478     }
479    
480     return $evenement;
481     }
482    
483     /*
484     * Récupère la lettre type lié à un événement
485     */
486     function getLettreType($evenement){
487    
488     $lettretype = NULL;
489    
490     $sql =
491     "SELECT
492     lettretype
493     FROM
494     ".DB_PREFIXE."evenement
495     WHERE
496     evenement = $evenement";
497    
498     $res = $this->db->query($sql);
499     $this->f->isDatabaseError($res);
500    
501     if ( $res->numrows() > 0 ){
502    
503     $row=& $res->fetchRow(DB_FETCHMODE_ASSOC);
504     $lettretype = $row['lettretype'];
505     }
506    
507     return $lettretype;
508     }
509    
510 nhaye 920 /**
511     * Ajout des dossiers
512     **/
513     function triggerAjouter($id, &$db, $val, $DEBUG){
514     include '../sql/pgsql/demande.form.inc.php';
515 nhaye 907 if($this->valF["demande_type"] != NULL) {
516     $res = $db->query(str_replace('<idx>', $this->valF['demande_type'], $sql_demande_type_details_by_id));
517     $this->f->isDatabaseError();
518 nhaye 920 $dossier_type = $res->fetchRow(DB_FETCHMODE_ASSOC);
519 nhaye 907 // Création du dossier_autorisation
520 nhaye 1054 if($this->valF['dossier_autorisation'] == "") {
521 nhaye 920 $this->ajoutDossierAutorisation($id, $db, $val, $DEBUG);
522 nhaye 907 $this -> addToMessage(_("Creation du dossier d'autorisation no").$this->valF['dossier_autorisation']);
523     }
524 nhaye 920 // Création du dossier d'instruction
525     if($dossier_type['dossier_instruction_type'] != NULL) {
526 fmichon 1005 $this->ajoutDossierInstruction($id, $db, $val, $DEBUG, $dossier_type['dossier_instruction_type']);
527 nhaye 945 $this -> addToMessage(_("Creation du dossier d'instruction no").$this->valF['dossier_instruction']);
528 nhaye 907 }
529 vpihour 930
530     /*Création du lien de téléchargement de récépissé de demande*/
531     if ( $this->valF['demande_type'] != "" && is_numeric($this->valF['demande_type'])
532     && isset($this->valF['dossier_instruction']) && $this->valF['dossier_instruction'] !== "" ){
533    
534     /*Récupérer l'événement lié à ce type de demande*/
535 fmichon 1005 $evenement = $this->getEvenement($this->valF['demande_type']);
536    
537 vpihour 930 /*Récupération de la lettre type de l'événement*/
538 fmichon 1005 $lettretype = $this->getLettreType($evenement);
539 vpihour 930
540     /*Création d'une nouvelle instruction avec cet événement*/
541     /*Données*/
542     $valInstr['instruction']=NULL;
543    
544     $valInstr['destinataire']=$this->valF['dossier_instruction'];
545     $valInstr['dossier']=$this->valF['dossier_instruction'];
546    
547 vpihour 1127 $valInstr['date_evenement']=date("d/m/Y");
548 fmichon 1005 $valInstr['evenement']=$evenement;
549     $valInstr['lettretype']=$lettretype;
550 vpihour 930 $valInstr['complement']="";
551     $valInstr['complement2']="";
552    
553     $valInstr['action']="initialisation";
554     $valInstr['delai']="2";
555     $valInstr['etat']="notifier";
556     $valInstr['accord_tacite']="Oui";
557     $valInstr['delai_notification']="1";
558     $valInstr['archive_delai']="0";
559     $valInstr['archive_date_complet']=NULL;
560     $valInstr['archive_date_rejet']=NULL;
561     $valInstr['archive_date_limite']=NULL;
562     $valInstr['archive_date_notification_delai']=NULL;
563     $valInstr['archive_accord_tacite']="Non";
564     $valInstr['archive_etat']="initialiser";
565     $valInstr['archive_date_decision']=NULL;
566     $valInstr['archive_avis']="";
567     $valInstr['archive_date_validite']=NULL;
568     $valInstr['archive_date_achevement']=NULL;
569     $valInstr['archive_date_chantier']=NULL;
570     $valInstr['archive_date_conformite']=NULL;
571     $valInstr['complement3']="";
572     $valInstr['complement4']="";
573     $valInstr['complement5']="";
574     $valInstr['complement6']="";
575     $valInstr['complement7']="";
576     $valInstr['complement8']="";
577     $valInstr['complement9']="";
578     $valInstr['complement10']="";
579     $valInstr['complement11']="";
580     $valInstr['complement12']="";
581     $valInstr['complement13']="";
582     $valInstr['complement14']="";
583     $valInstr['complement15']="";
584     $valInstr['avis_decision']=NULL;
585 vpihour 1136 $valInstr['date_finalisation_courrier']=NULL;
586     $valInstr['date_envoi_signature']=NULL;
587     $valInstr['date_retour_signature']=NULL;
588     $valInstr['date_envoi_rar']=NULL;
589     $valInstr['date_retour_rar']=NULL;
590     $valInstr['date_envoi_controle_legalite']=NULL;
591     $valInstr['date_retour_controle_legalite']=NULL;
592 nhaye 1246 $valInstr['signataire_arrete']=NULL;
593 vpihour 1307 $valInstr['numero_arrete']=NULL;
594 vpihour 930
595     /*Fichier requis*/
596     require_once '../obj/instruction.class.php';
597    
598     /*Création d'un nouveau dossier*/
599     $instruction = new instruction("]",$db,$DEBUG);
600     $instruction->valF = "";
601     $instruction->ajouter($valInstr, $db, $DEBUG);
602 vpihour 1058
603     /*Si la création a réussie*/
604 vpihour 930 if ( $instruction->valF['instruction'] != "" ){
605    
606 vpihour 1058 /*Affichage du récépissé de la demande*/
607 fmichon 1005 $this->valF['instruction_recepisse'] = $instruction->valF['instruction'];
608 vpihour 930 $this -> addToMessage("<br/><a
609     class='lien'
610 vpihour 1084 href='../pdf/pdflettretype.php?obj=".$lettretype."&amp;idx=".$this->valF['dossier_instruction']."'
611     target='_blank'>
612 vpihour 930 <span
613     class=\"om-icon om-icon-16 om-icon-fix pdf-16\"
614     title=\""._("Telecharger le recepisse de la demande")."\">".
615     _("Telecharger le recepisse de la demande").
616     "</span>
617     &nbsp;&nbsp;&nbsp;&nbsp;".
618     _("Telecharger le recepisse de la demande")."
619 vpihour 1093 </a><br/>");
620 vpihour 930 }
621 vpihour 1058 /*Sinon affiche un message d'erreur*/
622 vpihour 930 else {
623    
624 fmichon 1012 $this -> addToMessage(_("Une erreur s'est produite lors de la creation du recepisse"));
625 vpihour 930 }
626     }
627 fmichon 1005
628     /*Ajout de l'arrondissement à partir du code postal*/
629     if ( !is_null($this->valF["terrain_adresse_code_postal"]) && is_numeric($this->valF["terrain_adresse_code_postal"]) ){
630    
631     $this->valF["arrondissement"] = $this->getArrondissement($this->valF["terrain_adresse_code_postal"]);
632     }
633 nhaye 907 }
634     }
635    
636     /**
637 nhaye 828 * Ajout des délégataires et pétitionnaires
638 nhaye 807 **/
639 nhaye 828 function triggerAjouterApres($id, &$db, $val, $DEBUG){
640     $this->insertLinkDemandeDemandeur($db, $DEBUG);
641 fmichon 1005
642 nhaye 920 // Ajout des lliens entre dossier_autorisation et demandeur
643 vpihour 1070 if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] == "" ) {
644 nhaye 920 $this->ajoutLiensDossierAutorisation($id, $db, $val, $DEBUG);
645     }
646     // Ajout des lliens entre dossier et demandeur
647     if(!empty($this->valF['dossier_instruction'])) {
648     $this->ajoutLiensDossierInstruction($id, $db, $val, $DEBUG);
649     }
650 nhaye 1246
651     // Duplication des lots et liaison au nouveau dossier_d'instruction
652     if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] != "" ) {
653     $this->lienLotDossierInstruction($id, $db, $val, $DEBUG);
654     }
655 nhaye 828 }
656 vpihour 1058
657     /*Ajout du lien demande / demandeur(s)*/
658 nhaye 828 function triggerModifierApres($id, &$db, $val, $DEBUG){
659 nhaye 1039 $this->listeDemandeur("demande",$this->val[array_search('demande', $this->champs)]);
660 nhaye 828 $this->insertLinkDemandeDemandeur($db, $DEBUG);
661 nhaye 838 $this->valIdDemandeur=$this->postedIdDemandeur;
662 nhaye 828
663     }
664    
665     /**
666 nhaye 1246 * Gestion des liens entre les lots du DA et le nouveau dossier
667     **/
668     function lienLotDossierInstruction($id, $db, $val, $DEBUG) {
669     require_once ("../obj/lot.class.php");
670     $lot = new lot("]", $db, $DEBUG);
671     require_once ("../obj/lien_dossier_lot.class.php");
672     $ldl = new lien_dossier_lot("]", $db, $DEBUG);
673     require_once ("../obj/lien_lot_demandeur.class.php");
674     $lld = new lien_lot_demandeur("]", $db, $DEBUG);
675    
676    
677     $sqlLots = "SELECT * FROM ".DB_PREFIXE."lot
678     WHERE dossier_autorisation = '".$this->valF['dossier_autorisation']."'";
679     $resLot = $db -> query($sqlLots);
680     $this->f->addToLog("db->query(\"".$sqlLots."\");", VERBOSE_MODE);
681     $this->f->isDatabaseError($resLot);
682     while ($rowLot=& $resLot->fetchRow(DB_FETCHMODE_ASSOC)){
683     // Insertion du nouveau lot
684     $valLot['lot'] = "";
685     $valLot['libelle'] = $rowLot['libelle'];
686     $valLot['dossier_autorisation'] = NULL;
687     $lot -> ajouter($valLot, $db, $DEBUG);
688 nhaye 1247
689 nhaye 1246 //Insertion du lien entre le lot et le dossier d'instruction
690     $valLdl['lien_dossier_lot'] = "";
691     $valLdl['dossier'] = $this->valF['dossier_instruction'];
692     $valLdl['lot'] = $lot->valF['lot'];
693     $ldl->ajouter($valLdl, $db, $DEBUG);
694    
695     //Insertion des liens entre dossier et les lots
696     $sqlDemandeurs = "SELECT * FROM ".DB_PREFIXE."lien_lot_demandeur
697     WHERE lot = ".$rowLot['lot'];
698     $res = $db -> query($sqlDemandeurs);
699     $this->f->addToLog("db->query(\"".$sqlDemandeurs."\");", VERBOSE_MODE);
700     $this->f->isDatabaseError($res);
701    
702     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
703     $valLld["lien_lot_demandeur"] = "";
704     $valLld["lot"]=$lot->valF['lot'];
705     $valLld["demandeur"] = $row['demandeur'];
706     $valLld["petitionnaire_principal"] = $row['petitionnaire_principal'];
707     $lld->ajouter($valLld, $db, $DEBUG);
708     }
709     }
710     }
711    
712     /**
713 vpihour 1058 * Gestion des liens entre la demande et les demandeurs recemment ajoutés
714 nhaye 828 **/
715     function insertLinkDemandeDemandeur($db, $DEBUG) {
716     //
717     require_once "../obj/lien_demande_demandeur.class.php";
718 nhaye 838 // Comparaison de l'id petitionnaire principal
719     if(isset($this->postedIdDemandeur['petitionnaire_principal']) AND
720     !empty($this->postedIdDemandeur['petitionnaire_principal']) AND
721     $this->valIdDemandeur['petitionnaire_principal'] !=
722     $this->postedIdDemandeur['petitionnaire_principal']) {
723     // Ajout du nouveau lien
724     $this->addLinkDemandeDemandeur($this->postedIdDemandeur['petitionnaire_principal'], true, $db, $DEBUG);
725     if(!empty($this->valIdDemandeur['petitionnaire_principal'])) {
726     $this->deleteLinkDemandeDemandeur($this->valIdDemandeur['petitionnaire_principal'], $db, $DEBUG);
727 nhaye 807 }
728 nhaye 828 }
729 nhaye 838
730     // Comparaison du delegataire
731     if(isset($this->postedIdDemandeur['delegataire']) AND
732     !empty($this->postedIdDemandeur['delegataire']) AND
733     $this->valIdDemandeur['delegataire'] !=
734     $this->postedIdDemandeur['delegataire']) {
735     // Ajout du nouveau lien
736     $this->addLinkDemandeDemandeur($this->postedIdDemandeur['delegataire'], false, $db, $DEBUG);
737     if(!empty($this->valIdDemandeur['delegataire'])) {
738     $this->deleteLinkDemandeDemandeur($this->valIdDemandeur['delegataire'], $db, $DEBUG);
739     }
740     }
741    
742     // Comparaison des different petitionnaires
743     if(isset($this->postedIdDemandeur['petitionnaire'])) {
744     // Suppression des liens non valides
745     foreach ($this->valIdDemandeur['petitionnaire'] as $petitionnaire) {
746     if(!in_array($petitionnaire, $this->postedIdDemandeur['petitionnaire'])) {
747     $this->deleteLinkDemandeDemandeur($petitionnaire, $db, $DEBUG);
748     }
749     }
750     // Ajout des nouveaux liens
751     foreach ($this->postedIdDemandeur['petitionnaire'] as $petitionnaire) {
752     if(!in_array($petitionnaire, $this->valIdDemandeur['petitionnaire'])) {
753     $this->addLinkDemandeDemandeur($petitionnaire, false, $db, $DEBUG);
754     }
755     }
756     }
757     }
758    
759    
760     /**
761     * Fonction permettant d'ajouter un lien
762     * entre la table demande et demandeur
763     **/
764     function addLinkDemandeDemandeur($id, $principal, $db, $DEBUG) {
765     $lienAjout = new lien_demande_demandeur(
766     "]",
767     $db,
768     $DEBUG);
769     $lien = array('lien_demande_demandeur' => "",
770     'petitionnaire_principal' => (($principal)?"t":"f"),
771     'demande' => $this->valF['demande'],
772     'demandeur' => $id);
773     $lienAjout->ajouter($lien, $db, $DEBUG);
774     $lienAjout->__destruct();
775     }
776    
777     /**
778     * Fonction permettant de supprimer un lien
779     * entre la table demande et demandeur
780     **/
781     function deleteLinkDemandeDemandeur($id, $db, $DEBUG) {
782     // Suppression
783     $sql = "DELETE FROM ".DB_PREFIXE."lien_demande_demandeur ".
784     "WHERE demande=".$this->valF['demande'].
785     " AND demandeur=".$id;
786     // Execution de la requete de suppression de l'objet
787     $res = $db->query($sql);
788     // Logger
789     $this->f->addToLog("supprimer(): db->query(\"".$sql."\");", VERBOSE_MODE);
790     $this->f->isDatabaseError();
791    
792     }
793    
794 vpihour 1058 /*
795     * Teste si le lien entre une demande et un demandeur existe
796     * */
797 nhaye 838 function isLinkDemandeDemandeurExist($idDemandeur) {
798     $sql = "SELECT count(*)
799     FROM ".DB_PREFIXE."lien_demande_demandeur
800     WHERE demande = ".$this->valF['demande'].
801     "AND demandeur = ".$idDemandeur;
802     $count = $this->f->db->getOne($sql);
803     $this->f->addToLog("db->getone(\"".$sql."\");", VERBOSE_MODE);
804     $this->f->isDatabaseError($count);
805     if ($count === 0) {
806     return false;
807 nhaye 828 } else {
808 nhaye 838 return true;
809 nhaye 828 }
810 nhaye 838
811 nhaye 828 }
812    
813     /**
814     * Methode de recupération des valeurs postées
815     **/
816     function getPostedValues() {
817     // Récupération des demandeurs dans POST
818     if (isset($_POST['petitionnaire_principal']) OR
819     isset($_POST['delegataire']) OR
820     isset($_POST['petitionnaire'])) {
821     if( isset($_POST['petitionnaire_principal']) AND
822     !empty($_POST['petitionnaire_principal'])) {
823 nhaye 838 $this->postedIdDemandeur['petitionnaire_principal'] = $_POST['petitionnaire_principal'];
824 nhaye 807 }
825 nhaye 828 if( isset($_POST['delegataire']) AND
826     !empty($_POST['delegataire'])) {
827 nhaye 838 $this->postedIdDemandeur['delegataire'] = $_POST['delegataire'];
828 nhaye 828 }
829     if( isset($_POST['petitionnaire']) AND
830     !empty($_POST['petitionnaire'])) {
831 nhaye 838 $this->postedIdDemandeur['petitionnaire'] = $_POST['petitionnaire'];
832 nhaye 828 }
833 nhaye 807 }
834 vpihour 676 }
835 nhaye 828 /**
836 nhaye 1039 * Méthode permettant de récupérer les id des demandeur liés à la demande ou
837     * liés au dossier d'autorisation
838 nhaye 828 **/
839 nhaye 1039 function listeDemandeur($from, $id) {
840 nhaye 828 // Récupération des demandeurs de la base
841     $sql = "SELECT demandeur.demandeur,
842     demandeur.type_demandeur,
843 nhaye 1039 lien_".$from."_demandeur.petitionnaire_principal
844     FROM ".DB_PREFIXE."lien_".$from."_demandeur
845 nhaye 828 INNER JOIN ".DB_PREFIXE."demandeur
846 nhaye 1039 ON demandeur.demandeur=lien_".$from."_demandeur.demandeur
847     WHERE ".$from." = '".$id."'";
848 nhaye 828 $res = $this->f->db->query($sql);
849 nhaye 838 $this->f->addToLog("listeDemandeur() : ".$sql);
850 nhaye 828 $this->f->isDatabaseError($res);
851     // Stoquage du résultat dans un tableau
852     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
853     if ($row['petitionnaire_principal'] == 't' AND
854     $row['type_demandeur']=="petitionnaire") {
855     $this->valIdDemandeur['petitionnaire_principal']=$row['demandeur'];
856     } elseif ($row['petitionnaire_principal'] == 'f' AND
857     $row['type_demandeur']=="petitionnaire"){
858     $this->valIdDemandeur['petitionnaire'][]=$row['demandeur'];
859     } elseif ($row['type_demandeur']=="delegataire"){
860     $this->valIdDemandeur['delegataire']=$row['demandeur'];
861     }
862     }
863     }
864 nhaye 807
865 nhaye 1037
866 nhaye 807 /**
867 nhaye 1037 * Surcharge du bouton retour afin de retourner sur la recherche de dossiers
868     * d'instruction existant
869     */
870     function retour($premier = 0, $recherche = "", $tricol = "") {
871    
872     echo "\n<a class=\"retour\" ";
873     echo "href=\"";
874     //
875     if($this->getParameter("idx_dossier") != "") {
876     echo "tab.php?";
877     echo "obj=recherche_dossier";
878    
879     } else {
880     if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) {
881     echo "form.php?";
882     } else {
883     echo "tab.php?";
884     }
885     echo "obj=".get_class($this);
886     if($this->getParameter("retour")=="form") {
887     echo "&amp;idx=".$this->getParameter("idx");
888     echo "&amp;action=3";
889     }
890     }
891     echo "&amp;premier=".$this->getParameter("premier");
892     echo "&amp;tricol=".$this->getParameter("tricol");
893     echo "&amp;recherche=".$this->getParameter("recherche");
894     echo "&amp;selectioncol=".$this->getParameter("selectioncol");
895     echo "&amp;advs_id=".$this->getParameter("advs_id");
896     echo "&amp;valide=".$this->getParameter("valide");
897     //
898     echo "\"";
899     echo ">";
900     //
901     echo _("Retour");
902     //
903     echo "</a>\n";
904    
905     }
906    
907    
908     /**
909 nhaye 807 * Ajout de la liste des demandeurs
910     */
911     function formSpecificContent($maj) {
912 nhaye 842 if(!$this->correct AND $maj != 0) {
913 nhaye 1039 $this->listeDemandeur("demande", $this->val[array_search('demande', $this->champs)]);
914 nhaye 838 }
915 nhaye 1039 // Si le paramètre idx_dossier est défini on récupère les demandeurs liés au dossier d'instruction
916     if($this->getParameter("idx_dossier") != "") {
917     $this->listeDemandeur("dossier", $this->getParameter("idx_dossier"));
918     }
919 nhaye 838 if($maj < 2 AND !$this->correct) {
920     $linkable = true;
921     } else {
922     $linkable = false;
923     }
924 nhaye 1020
925 nhaye 807 // Conteneur de la listes des demandeurs
926 nhaye 1097 echo "<div id=\"liste_demandeur\" class=\"demande_hidden_bloc col_12\">";
927 nhaye 807 echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">";
928     echo " <legend class=\"ui-corner-all ui-widget-content ui-state-active\">"
929     ._("Petitionnaire")."</legend>";
930     // Si des demandeurs sont liés à la demande
931 nhaye 828 require_once "../obj/petitionnaire.class.php";
932     require_once "../obj/delegataire.class.php";
933 nhaye 1097 // Affichage du bloc pétitionnaire principal / délégataire
934     // L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
935 nhaye 1118 echo "<div id=\"petitionnaire_principal_delegataire col_12\">";
936 nhaye 1097 // Affichage de la synthèse
937     if (isset ($this->valIdDemandeur["petitionnaire_principal"]) AND
938     !empty($this->valIdDemandeur["petitionnaire_principal"])) {
939     $demandeur = new petitionnaire(
940     $this->valIdDemandeur["petitionnaire_principal"],
941     $this->f->db,false);
942     $demandeur -> afficherSynthese("petitionnaire_principal", $linkable);
943     $demandeur -> __destruct();
944     } elseif ( isset ($this->postedIdDemandeur["petitionnaire_principal"]) AND
945     !empty($this->postedIdDemandeur["petitionnaire_principal"]) ) {
946     $demandeur = new petitionnaire(
947     $this->postedIdDemandeur["petitionnaire_principal"],
948     $this->f->db,false);
949     $demandeur -> afficherSynthese("petitionnaire_principal", $linkable);
950     $demandeur -> __destruct();
951     }
952     // Si en édition de formulaire
953     if($maj < 2) {
954     // Bouton d'ajout du pétitionnaire principal
955     // L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
956     echo "<span id=\"add_petitionnaire_principal\"
957     class=\"om-form-button add-16\">".
958     _("Saisir le petitionnaire principal").
959     "</span>";
960     }
961     // Bouton d'ajout du delegataire
962     // L'ID DU DIV ET DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
963     echo "<div id=\"delegataire\">";
964     // Affichage de la synthèse
965     if (isset ($this->valIdDemandeur["delegataire"]) AND
966     !empty($this->valIdDemandeur["delegataire"])) {
967     $demandeur = new delegataire($this->valIdDemandeur["delegataire"],
968     $this->f->db,false);
969     $demandeur -> afficherSynthese("delegataire", $linkable);
970     $demandeur -> __destruct();
971     } elseif ( isset ($this->postedIdDemandeur["delegataire"]) AND
972     !empty($this->postedIdDemandeur["delegataire"]) ) {
973 nhaye 807
974 nhaye 1097 $demandeur = new delegataire($this->postedIdDemandeur["delegataire"],
975     $this->f->db,false);
976     $demandeur -> afficherSynthese("delegataire", $linkable);
977     $demandeur -> __destruct();
978     }
979     if($maj < 2) {
980     echo "<span id=\"add_delegataire\"
981 vpihour 1075 class=\"om-form-button add-16\">".
982 nhaye 1097 _("Saisir le delegataire").
983 vpihour 1051 "</span>";
984 nhaye 1097 }
985     echo "</div>";
986 nhaye 1118 echo "<div class=\"both\"></div>";
987 nhaye 1097 echo "</div>";
988     // Bloc des pétitionnaires secondaires
989     // L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
990 nhaye 1118 echo "<div id=\"listePetitionnaires col_12\">";
991 fmichon 1005
992 nhaye 1097 // Affichage de la synthèse
993     if (isset ($this->valIdDemandeur["petitionnaire"]) AND
994     !empty($this->valIdDemandeur["petitionnaire"])) {
995    
996     foreach ($this->valIdDemandeur["petitionnaire"] as $petitionnaire) {
997     $demandeur = new petitionnaire($petitionnaire,
998     $this->f->db,false);
999     $demandeur -> afficherSynthese("petitionnaire", $linkable);
1000 nhaye 1065 $demandeur -> __destruct();
1001     }
1002    
1003 nhaye 1097 } elseif ( isset ($this->postedIdDemandeur["petitionnaire"]) AND
1004     !empty($this->postedIdDemandeur["petitionnaire"]) ) {
1005     foreach ($this->postedIdDemandeur["petitionnaire"] as $petitionnaire) {
1006     $demandeur = new petitionnaire($petitionnaire,
1007     $this->f->db,false);
1008     $demandeur -> afficherSynthese("petitionnaire", $linkable);
1009     $demandeur -> __destruct();
1010 nhaye 828 }
1011 nhaye 1097 }
1012     if ($maj < 2) {
1013     // L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
1014     echo "<span id=\"add_petitionnaire\"
1015     class=\"om-form-button add-16\">".
1016     _("Ajouter un petitionnaire")
1017     ."</span>";
1018     }
1019     echo "</div>";
1020 nhaye 807 echo "</fieldset>";
1021     echo "</div>";
1022     }
1023    
1024 nhaye 1097 // {{{
1025    
1026     // getter
1027     function getValIdDemandeur() {
1028     return $this->valIdDemandeur;
1029     }
1030     // setter
1031     function setValIdDemandeur($valIdDemandeur) {
1032     $this->valIdDemandeur = $valIdDemandeur;
1033     }
1034 vpihour 1106
1035     //Supression du lien entre la demandeur et le(s) demandeur(s)
1036     function triggerSupprimer($id, &$db, $val, $DEBUG){
1037    
1038     //Création de la requête
1039     $sql = "DELETE FROM
1040     ".DB_PREFIXE."lien_demande_demandeur
1041     WHERE
1042     demande = $id";
1043    
1044     $res = $this->f->db->query($sql);
1045     $this->f->addToLog("triggerSupprimer() : ".$sql);
1046     $this->f->isDatabaseError($res);
1047     }
1048    
1049 nhaye 1097 // }}}
1050 vpihour 632 }// fin classe
1051 fmichon 1005 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26