Subversion Repositories Applications.bazar

Rev

Rev 56 | Rev 64 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 56 Rev 57
Line 347... Line 347...
347
		$squelette->setElementTemplate( '<label style="width:200px;">{label}&nbsp;</label><br />'."\n".'{element}<br />'."\n");
347
		$squelette->setElementTemplate( '<label style="width:200px;">{label}&nbsp;</label><br />'."\n".'{element}<br />'."\n");
348
		$squelette->setRequiredNoteTemplate("\n".'{requiredNote} '."\n");
348
		$squelette->setRequiredNoteTemplate("\n".'{requiredNote} '."\n");
349
		$option=array('style'=>'width:300px;', 'maxlength'=>100);
349
		$option=array('style'=>'width:300px;', 'maxlength'=>100);
350
		$form_commentaire->addElement('text', 'Nom', BAZ_ENTREZ_VOTRE_NOM, $option);
350
		$form_commentaire->addElement('text', 'Nom', BAZ_ENTREZ_VOTRE_NOM, $option);
351
		$option=array('style'=>'width:100%;height:100px;white-space: pre;padding:3px;');
351
		$option=array('style'=>'width:100%;height:100px;white-space: pre;padding:3px;');
352
		require_once PAP_CHEMIN_RACINE.'api/pear/HTML/QuickForm/textarea.php';
352
		require_once 'HTML/QuickForm/textarea.php';
353
		$formtexte= new HTML_QuickForm_textarea('Commentaire', BAZ_ENTREZ_VOTRE_COMMENTAIRE, $option);
353
		$formtexte= new HTML_QuickForm_textarea('Commentaire', BAZ_ENTREZ_VOTRE_COMMENTAIRE, $option);
354
		$form_commentaire->addElement($formtexte) ;
354
		$form_commentaire->addElement($formtexte) ;
355
		$form_commentaire->addElement('submit', 'Envoyer', BAZ_ENVOYER);
355
		$form_commentaire->addElement('submit', 'Envoyer', BAZ_ENVOYER);
356
		$form_commentaire->addRule('Nom', BAZ_NOM_REQUIS, 'required', '', 'client') ;
356
		$form_commentaire->addRule('Nom', BAZ_NOM_REQUIS, 'required', '', 'client') ;
357
		$form_commentaire->addRule('Commentaire', BAZ_COMMENTAIRE_REQUIS, 'required', '', 'client') ;
357
		$form_commentaire->addRule('Commentaire', BAZ_COMMENTAIRE_REQUIS, 'required', '', 'client') ;