Suite utilisation du doleditor: selon config. globale

This commit is contained in:
Chl 2022-07-23 19:48:22 +02:00
parent 59f543e196
commit 60b4a1fd99
1 changed files with 13 additions and 7 deletions

View File

@ -300,15 +300,21 @@ do {
$output .= '<tr><td class="minwidth200" valign="top">';
$output .= $form->textwithpicto($langs->trans("MailText"), $helpforsubstitution, 1, 'help', '', 0, 2, 'substittooltipfrombody');
$output .= "</td>\n<td>";
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
$doleditor = new DolEditor('body', (GETPOST('body', 'alpha') ? GETPOST('body', 'alpha') : $mailObject->body), '', 280,'dolibarr_notes');
$doleditor = new DolEditor(
'body',
(GETPOST('body', 'alpha') ? GETPOST('body', 'alpha') : $mailObject->body),
'',
280,
'dolibarr_mailings', // toolbar name
'In', // toolbar location
false, // toolbar start expanded
true, // use local browser
!empty($conf->global->FCKEDITOR_ENABLE_MAIL) // follow global conf about using ckeditor for mails.
);
$output .= $doleditor->Create(1);
// $output .= '<textarea id="body" name="body" rows="14" cols="80" class="flat">';
// $output .= htmlentities(GETPOST('body', 'alpha') ? GETPOST('body', 'alpha') : $mailObject->body);
// $output .= "</textarea>\n";
$output .= "</td></tr>\n";
// body_ishtml
@ -336,4 +342,4 @@ do {
// Print everything
llxHeader('', $langs->trans('RepeatableInvoice') . ' - ' . $langs->trans('SendingByMail'), '');
print $output;
llxFooter();
llxFooter();