New: Ajout bouton annuler sur formulaire envoi mail

This commit is contained in:
Laurent Destailleur 2006-08-06 13:35:19 +00:00
parent 9fe3f06928
commit 053f12ded1

View File

@ -1,5 +1,5 @@
<?PHP <?PHP
/* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net> /* Copyright (C) 2005-2006 Laurent Destailleur <eldy@users.sourceforge.net>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -37,67 +37,69 @@ require_once(DOL_DOCUMENT_ROOT ."/html.form.class.php");
class FormMail class FormMail
{ {
var $db; var $db;
var $fromname; var $fromname;
var $frommail; var $frommail;
var $replytoname; var $replytoname;
var $replytomail; var $replytomail;
var $toname; var $toname;
var $tomail; var $tomail;
var $withfrom; var $withfrom;
var $withto; var $withto;
var $withtocc; var $withtocc;
var $withtopic; var $withtopic;
var $withfile; var $withfile;
var $withbody; var $withbody;
var $withfromreadonly; var $withfromreadonly;
var $withreplytoreadonly; var $withreplytoreadonly;
var $withtoreadonly; var $withtoreadonly;
var $withtoccreadonly; var $withtoccreadonly;
var $withtopicreadonly; var $withtopicreadonly;
var $withdeliveryreceipt; var $withdeliveryreceipt;
var $withcancel;
var $substit=array(); var $substit=array();
var $param=array(); var $param=array();
var $errorstr; var $errorstr;
/** \brief Constructeur
\param DB handler d'accès base de donnée
*/
function FormMail($DB)
{
$this->db = $DB;
$this->withfrom=1;
$this->withto=1;
$this->withtocc=1;
$this->withtopic=1;
$this->withfile=0;
$this->withbody=1;
$this->withfromreadonly=1;
$this->withreplytoreadonly=1;
$this->withtoreadonly=0;
$this->withtoccreadonly=0;
$this->withtopicreadonly=0;
$this->withbodyreadonly=0;
$this->withdeliveryreceiptreadonly=0;
return 1;
}
/* /**
* \brief Effectue les substitutions des mots clés par les données en fonction du tableau $this->substit \brief Constructeur
* \param chaine chaine dans laquelle faire les substitutions \param DB handler d'accès base de donnée
* \return string chaine avec les substitutions effectuées */
*/ function FormMail($DB)
function make_substitutions($chaine) {
$this->db = $DB;
$this->withfrom=1;
$this->withto=1;
$this->withtocc=1;
$this->withtopic=1;
$this->withfile=0;
$this->withbody=1;
$this->withfromreadonly=1;
$this->withreplytoreadonly=1;
$this->withtoreadonly=0;
$this->withtoccreadonly=0;
$this->withtopicreadonly=0;
$this->withbodyreadonly=0;
$this->withdeliveryreceiptreadonly=0;
return 1;
}
/*
* \brief Effectue les substitutions des mots clés par les données en fonction du tableau $this->substit
* \param chaine chaine dans laquelle faire les substitutions
* \return string chaine avec les substitutions effectuées
*/
function make_substitutions($chaine)
{ {
foreach ($this->substit as $key=>$value) { foreach ($this->substit as $key=>$value) {
$chaine=ereg_replace($key,$value,$chaine); $chaine=ereg_replace($key,$value,$chaine);
@ -106,161 +108,181 @@ class FormMail
} }
/* /*
* \brief Affiche la partie de formulaire pour saisie d'un mail en fonction des propriétés * \brief Affiche la partie de formulaire pour saisie d'un mail en fonction des propriétés
*/ */
function show_form() { function show_form()
global $conf, $langs, $user; {
global $conf, $langs, $user;
$langs->load("other"); $langs->load("other");
$langs->load("mails"); $langs->load("mails");
$form=new Form($DB); $form=new Form($DB);
print "\n<!-- Debut form mail -->\n"; print "\n<!-- Debut form mail -->\n";
print "<form method=\"post\" ENCTYPE=\"multipart/form-data\" action=\"".$this->param["returnurl"]."\">\n"; print "<form method=\"post\" ENCTYPE=\"multipart/form-data\" action=\"".$this->param["returnurl"]."\">\n";
foreach ($this->param as $key=>$value) { foreach ($this->param as $key=>$value)
print "<input type=\"hidden\" name=\"$key\" value=\"$value\">\n"; {
} print "<input type=\"hidden\" name=\"$key\" value=\"$value\">\n";
print "<table class=\"border\" width=\"100%\">\n"; }
print "<table class=\"border\" width=\"100%\">\n";
// From // From
if ($this->withfrom) if ($this->withfrom)
{ {
if ($this->withfromreadonly) { if ($this->withfromreadonly)
print '<input type="hidden" name="fromname" value="'.$this->fromname.'">'; {
print '<input type="hidden" name="frommail" value="'.$this->frommail.'">'; print '<input type="hidden" name="fromname" value="'.$this->fromname.'">';
print "<tr><td width=\"180\">".$langs->trans("MailFrom")."</td><td>".$this->fromname.($this->frommail?(" &lt;".$this->frommail."&gt;"):"")."</td></tr>\n"; print '<input type="hidden" name="frommail" value="'.$this->frommail.'">';
print "</td></tr>\n"; print "<tr><td width=\"180\">".$langs->trans("MailFrom")."</td><td>".$this->fromname.($this->frommail?(" &lt;".$this->frommail."&gt;"):"")."</td></tr>\n";
} print "</td></tr>\n";
} }
}
// Replyto // Replyto
if ($this->withreplyto) if ($this->withreplyto)
{ {
if ($this->withreplytoreadonly) { if ($this->withreplytoreadonly)
print '<input type="hidden" name="replyname" value="'.$this->replytoname.'">'; {
print '<input type="hidden" name="replymail" value="'.$this->replytomail.'">'; print '<input type="hidden" name="replyname" value="'.$this->replytoname.'">';
print "<tr><td>".$langs->trans("MailReply")."</td><td>".$this->replytoname.($this->replytomail?(" &lt;".$this->replytomail."&gt;"):""); print '<input type="hidden" name="replymail" value="'.$this->replytomail.'">';
print "</td></tr>\n"; print "<tr><td>".$langs->trans("MailReply")."</td><td>".$this->replytoname.($this->replytomail?(" &lt;".$this->replytomail."&gt;"):"");
} print "</td></tr>\n";
} }
}
// To // To
if ($this->withto || is_array($this->withto)) { if ($this->withto || is_array($this->withto))
print '<tr><td width="180">'.$langs->trans("MailTo").'</td><td>'; {
if ($this->withtoreadonly) { print '<tr><td width="180">'.$langs->trans("MailTo").'</td><td>';
print (! is_array($this->withto) && ! is_numeric($this->withto))?$this->withto:""; if ($this->withtoreadonly)
} else { {
print "<input size=\"30\" name=\"sendto\" value=\"".(! is_array($this->withto) && ! is_numeric($this->withto)?$this->withto:"")."\">"; print (! is_array($this->withto) && ! is_numeric($this->withto))?$this->withto:"";
if (is_array($this->withto)) }
{ else
print " ".$langs->trans("or")." "; {
$form->select_array("receiver",$this->withto); print "<input size=\"30\" name=\"sendto\" value=\"".(! is_array($this->withto) && ! is_numeric($this->withto)?$this->withto:"")."\">";
} if (is_array($this->withto))
} {
print "</td></tr>\n"; print " ".$langs->trans("or")." ";
} $form->select_array("receiver",$this->withto);
}
}
print "</td></tr>\n";
}
// CC // CC
if ($this->withcc) if ($this->withcc)
{ {
print '<tr><td width="180">'.$langs->trans("MailCC").'</td><td>'; print '<tr><td width="180">'.$langs->trans("MailCC").'</td><td>';
if ($this->withtoccreadonly) { if ($this->withtoccreadonly)
print (! is_array($this->withtocc) && ! is_numeric($this->withtocc))?$this->withtocc:""; {
} else { print (! is_array($this->withtocc) && ! is_numeric($this->withtocc))?$this->withtocc:"";
print "<input size=\"30\" name=\"sendtocc\" value=\"".((! is_array($this->withtocc) && ! is_numeric($this->withtocc))?$this->withtocc:"")."\">"; }
if (is_array($this->withtocc)) else
{ {
print " ".$langs->trans("or")." "; print "<input size=\"30\" name=\"sendtocc\" value=\"".((! is_array($this->withtocc) && ! is_numeric($this->withtocc))?$this->withtocc:"")."\">";
$form->select_array("receivercc",$this->withtocc); if (is_array($this->withtocc))
} {
} print " ".$langs->trans("or")." ";
print "</td></tr>\n"; $form->select_array("receivercc",$this->withtocc);
} }
}
print "</td></tr>\n";
}
// Accusé réception // Accusé réception
if ($this->withdeliveryreceipt) if ($this->withdeliveryreceipt)
{ {
print '<tr><td width="180">'.$langs->trans("DeliveryReceipt").'</td><td>'; print '<tr><td width="180">'.$langs->trans("DeliveryReceipt").'</td><td>';
if ($this->withdeliveryreceiptreadonly) { if ($this->withdeliveryreceiptreadonly)
print yn($this->withdeliveryreceipt); {
} print yn($this->withdeliveryreceipt);
else }
{ else
print $form->select_YesNo(0,'deliveryreceipt'); {
} print $form->select_YesNo(0,'deliveryreceipt');
}
print "</td></tr>\n"; print "</td></tr>\n";
} }
// Topic // Topic
if ($this->withtopic) if ($this->withtopic)
{ {
$this->withtopic=$this->make_substitutions($this->withtopic); $this->withtopic=$this->make_substitutions($this->withtopic);
print "<tr>"; print "<tr>";
print "<td width=\"180\">".$langs->trans("MailTopic")."</td>"; print "<td width=\"180\">".$langs->trans("MailTopic")."</td>";
print "<td>"; print "<td>";
if ($this->withtopicreadonly) { if ($this->withtopicreadonly)
print $this->withtopic; {
print "<input type=\"hidden\" size=\"60\" name=\"subject\" value=\"".$this->withtopic."\">"; print $this->withtopic;
} print "<input type=\"hidden\" size=\"60\" name=\"subject\" value=\"".$this->withtopic."\">";
else }
{ else
print "<input type=\"text\" size=\"60\" name=\"subject\" value=\"".$this->withtopic."\">"; {
} print "<input type=\"text\" size=\"60\" name=\"subject\" value=\"".$this->withtopic."\">";
print "</td></tr>\n"; }
} print "</td></tr>\n";
}
// Si fichier joint // Si fichier joint
if ($this->withfile) if ($this->withfile)
{ {
print "<tr>"; print "<tr>";
print "<td width=\"180\">".$langs->trans("MailFile")."</td>"; print "<td width=\"180\">".$langs->trans("MailFile")."</td>";
print "<td>"; print "<td>";
print "<input type=\"file\" class=\"flat\" name=\"addedfile\" value=\"".$langs->trans("Upload")."\"/>"; print "<input type=\"file\" class=\"flat\" name=\"addedfile\" value=\"".$langs->trans("Upload")."\"/>";
print "</td></tr>\n"; print "</td></tr>\n";
} }
// Message // Message
if ($this->withbody) if ($this->withbody)
{ {
$defaultmessage=""; $defaultmessage="";
// \todo A partir du type, proposer liste de messages dans table llx_models // \todo A partir du type, proposer liste de messages dans table llx_models
if ($this->param["models"]=='body') { $defaultmessage=$this->withbody; } if ($this->param["models"]=='body') { $defaultmessage=$this->withbody; }
if ($this->param["models"]=='facture_send') { $defaultmessage="Veuillez trouver ci-joint la facture __FACREF__\n\nCordialement\n\n"; } if ($this->param["models"]=='facture_send') { $defaultmessage="Veuillez trouver ci-joint la facture __FACREF__\n\nCordialement\n\n"; }
if ($this->param["models"]=='facture_relance') { $defaultmessage="Nous apportons à votre connaissance que la facture __FACREF__ ne semble pas avoir été réglée. La voici donc, pour rappel, en pièce jointe.\n\nCordialement\n\n"; } if ($this->param["models"]=='facture_relance') { $defaultmessage="Nous apportons à votre connaissance que la facture __FACREF__ ne semble pas avoir été réglée. La voici donc, pour rappel, en pièce jointe.\n\nCordialement\n\n"; }
if ($this->param["models"]=='propal_send') { $defaultmessage="Veuillez trouver ci-joint la proposition commerciale __PROPREF__\n\nCordialement\n\n"; } if ($this->param["models"]=='propal_send') { $defaultmessage="Veuillez trouver ci-joint la proposition commerciale __PROPREF__\n\nCordialement\n\n"; }
if ($this->param["models"]=='order_send') { $defaultmessage="Veuillez trouver ci-joint la commande __ORDERREF__\n\nCordialement\n\n"; } if ($this->param["models"]=='order_send') { $defaultmessage="Veuillez trouver ci-joint la commande __ORDERREF__\n\nCordialement\n\n"; }
$defaultmessage=$this->make_substitutions($defaultmessage); $defaultmessage=$this->make_substitutions($defaultmessage);
print "<tr>"; print "<tr>";
print "<td width=\"180\" valign=\"top\">".$langs->trans("MailText")."</td>"; print "<td width=\"180\" valign=\"top\">".$langs->trans("MailText")."</td>";
print "<td>"; print "<td>";
if ($this->withbodyreadonly) if ($this->withbodyreadonly)
{ {
print nl2br($defaultmessage); print nl2br($defaultmessage);
print '<input type="hidden" name="message" value="'.$defaultmessage.'">'; print '<input type="hidden" name="message" value="'.$defaultmessage.'">';
} }
else else
{ {
print '<textarea cols="72" rows="8" name="message">'; print '<textarea cols="72" rows="8" name="message">';
print $defaultmessage; print $defaultmessage;
print '</textarea>'; print '</textarea>';
} }
print "</td></tr>\n"; print "</td></tr>\n";
} }
print "<tr><td align=center colspan=2><center><input class=\"button\" type=\"submit\" value=\"".$langs->trans("SendMail")."\"></center></td></tr>\n"; print "<tr><td align=center colspan=2><center>";
print "</table>\n"; print "<input class=\"button\" type=\"submit\" name=\"sendmail\" value=\"".$langs->trans("SendMail")."\">";
if ($this->withcancel)
{
print " &nbsp; &nbsp; ";
print "<input class=\"button\" type=\"submit\" name=\"cancel\" value=\"".$langs->trans("Cancel")."\">";
}
print "</center></td></tr>\n";
print "</table>\n";
print "</form>\n"; print "</form>\n";
print "<!-- Fin form mail -->\n"; print "<!-- Fin form mail -->\n";
} }
/* /*