New: Another method to allow style tags into email.
Preivous one was using encoding, but this create data to not be stored correctly into database. Old method is still available by adding '_encoded' at end of toolbar name.
This commit is contained in:
parent
3ef8bf55fa
commit
b3d4811b6f
@ -23,6 +23,8 @@
|
|||||||
* \brief Fiche mailing, onglet general
|
* \brief Fiche mailing, onglet general
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
if (! defined('NOSTYLECHECK')) define('NOSTYLECHECK','1');
|
||||||
|
|
||||||
require '../../main.inc.php';
|
require '../../main.inc.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/emailing.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/emailing.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
|
||||||
@ -768,7 +770,7 @@ else
|
|||||||
|
|
||||||
$linkback = '<a href="'.DOL_URL_ROOT.'/comm/mailing/liste.php">'.$langs->trans("BackToList").'</a>';
|
$linkback = '<a href="'.DOL_URL_ROOT.'/comm/mailing/liste.php">'.$langs->trans("BackToList").'</a>';
|
||||||
|
|
||||||
print '<tr><td width="15%">'.$langs->trans("Ref").'</td>';
|
print '<tr><td width="25%">'.$langs->trans("Ref").'</td>';
|
||||||
print '<td colspan="3">';
|
print '<td colspan="3">';
|
||||||
print $form->showrefnav($object,'id', $linkback);
|
print $form->showrefnav($object,'id', $linkback);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
@ -789,10 +791,10 @@ else
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Status
|
// Status
|
||||||
print '<tr><td width="15%">'.$langs->trans("Status").'</td><td colspan="3">'.$object->getLibStatut(4).'</td></tr>';
|
print '<tr><td>'.$langs->trans("Status").'</td><td colspan="3">'.$object->getLibStatut(4).'</td></tr>';
|
||||||
|
|
||||||
// Nb of distinct emails
|
// Nb of distinct emails
|
||||||
print '<tr><td width="15%">';
|
print '<tr><td>';
|
||||||
print $langs->trans("TotalNbOfDistinctRecipients");
|
print $langs->trans("TotalNbOfDistinctRecipients");
|
||||||
print '</td><td colspan="3">';
|
print '</td><td colspan="3">';
|
||||||
$nbemail = ($object->nbemail?$object->nbemail:img_warning('').' <font class="warning">'.$langs->trans("NoTargetYet").'</font>');
|
$nbemail = ($object->nbemail?$object->nbemail:img_warning('').' <font class="warning">'.$langs->trans("NoTargetYet").'</font>');
|
||||||
@ -979,7 +981,7 @@ else
|
|||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
// Subject
|
// Subject
|
||||||
print '<tr><td width="15%">'.$langs->trans("MailTopic").'</td><td colspan="3">'.$object->sujet.'</td></tr>';
|
print '<tr><td width="25%">'.$langs->trans("MailTopic").'</td><td colspan="3">'.$object->sujet.'</td></tr>';
|
||||||
|
|
||||||
// Joined files
|
// Joined files
|
||||||
print '<tr><td>'.$langs->trans("MailFile").'</td><td colspan="3">';
|
print '<tr><td>'.$langs->trans("MailFile").'</td><td colspan="3">';
|
||||||
@ -1007,7 +1009,14 @@ else
|
|||||||
// Message
|
// Message
|
||||||
print '<tr><td valign="top">'.$langs->trans("MailMessage").'</td>';
|
print '<tr><td valign="top">'.$langs->trans("MailMessage").'</td>';
|
||||||
print '<td colspan="3" bgcolor="'.($object->bgcolor?(preg_match('/^#/',$object->bgcolor)?'':'#').$object->bgcolor:'white').'">';
|
print '<td colspan="3" bgcolor="'.($object->bgcolor?(preg_match('/^#/',$object->bgcolor)?'':'#').$object->bgcolor:'white').'">';
|
||||||
print dol_htmlentitiesbr($object->body);
|
if (empty($object->bgcolor) || strtolower($object->bgcolor) == 'ffffff')
|
||||||
|
{
|
||||||
|
// Editeur wysiwyg
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
||||||
|
$doleditor=new DolEditor('body',$object->body,'',320,'dolibarr_readonly','',false,true,empty($conf->global->FCKEDITOR_ENABLE_MAILING)?0:1,20,70);
|
||||||
|
$doleditor->Create();
|
||||||
|
}
|
||||||
|
else print dol_htmlentitiesbr($object->body);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
@ -1040,7 +1049,7 @@ else
|
|||||||
print '<tr><td width="25%">';
|
print '<tr><td width="25%">';
|
||||||
print $langs->trans("TotalNbOfDistinctRecipients");
|
print $langs->trans("TotalNbOfDistinctRecipients");
|
||||||
print '</td><td colspan="3">';
|
print '</td><td colspan="3">';
|
||||||
$nbemail = ($object->nbemail?$object->nbemail:'<font class="error">'.$langs->trans("NoTargetYet").'</font>');
|
$nbemail = ($object->nbemail?$object->nbemail:img_warning('').' <font class="warning">'.$langs->trans("NoTargetYet").'</font>');
|
||||||
if (!empty($conf->global->MAILING_LIMIT_SENDBYWEB) && is_numeric($nbemail) && $conf->global->MAILING_LIMIT_SENDBYWEB < $nbemail)
|
if (!empty($conf->global->MAILING_LIMIT_SENDBYWEB) && is_numeric($nbemail) && $conf->global->MAILING_LIMIT_SENDBYWEB < $nbemail)
|
||||||
{
|
{
|
||||||
$text=$langs->trans('LimitSendingEmailing',$conf->global->MAILING_LIMIT_SENDBYWEB);
|
$text=$langs->trans('LimitSendingEmailing',$conf->global->MAILING_LIMIT_SENDBYWEB);
|
||||||
@ -1142,13 +1151,13 @@ else
|
|||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
print '<tr><td colspan="4" align="center">';
|
print '</table>';
|
||||||
|
|
||||||
|
print '<br><center>';
|
||||||
print '<input type="submit" class="button" value="'.$langs->trans("Save").'" name="save">';
|
print '<input type="submit" class="button" value="'.$langs->trans("Save").'" name="save">';
|
||||||
print ' ';
|
print ' ';
|
||||||
print '<input type="submit" class="button" value="'.$langs->trans("Cancel").'" name="cancel">';
|
print '<input type="submit" class="button" value="'.$langs->trans("Cancel").'" name="cancel">';
|
||||||
print '</td></tr>';
|
print '</center>';
|
||||||
|
|
||||||
print '</table>';
|
|
||||||
|
|
||||||
print '</form>';
|
print '</form>';
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|||||||
@ -51,7 +51,7 @@ class DolEditor
|
|||||||
* @param string $content Content of WYSIWIG field
|
* @param string $content Content of WYSIWIG field
|
||||||
* @param int $width Width in pixel of edit area (auto by default)
|
* @param int $width Width in pixel of edit area (auto by default)
|
||||||
* @param int $height Height in pixel of edit area (200px by default)
|
* @param int $height Height in pixel of edit area (200px by default)
|
||||||
* @param string $toolbarname Name of bar set to use ('Full', 'dolibarr_notes', 'dolibarr_details', 'dolibarr_mailings')
|
* @param string $toolbarname Name of bar set to use ('Full', 'dolibarr_notes[_encoded]', 'dolibarr_details[_encoded]', 'dolibarr_mailings[_encoded]', ')
|
||||||
* @param string $toolbarlocation Where bar is stored :
|
* @param string $toolbarlocation Where bar is stored :
|
||||||
* 'In' each window has its own toolbar
|
* 'In' each window has its own toolbar
|
||||||
* 'Out:name' share toolbar into the div called 'name'
|
* 'Out:name' share toolbar into the div called 'name'
|
||||||
@ -69,6 +69,7 @@ class DolEditor
|
|||||||
|
|
||||||
if (! $rows) $rows=round($height/20);
|
if (! $rows) $rows=round($height/20);
|
||||||
if (! $cols) $cols=($width?round($width/6):80);
|
if (! $cols) $cols=($width?round($width/6):80);
|
||||||
|
$shorttoolbarname=preg_replace('/_encoded$/','',$toolbarname);
|
||||||
|
|
||||||
// Name of extended editor to use (FCKEDITOR_EDITORNAME can be 'ckeditor' or 'fckeditor')
|
// Name of extended editor to use (FCKEDITOR_EDITORNAME can be 'ckeditor' or 'fckeditor')
|
||||||
$defaulteditor='ckeditor';
|
$defaulteditor='ckeditor';
|
||||||
@ -97,7 +98,7 @@ class DolEditor
|
|||||||
$this->editor->Value = $content;
|
$this->editor->Value = $content;
|
||||||
$this->editor->Height = $height;
|
$this->editor->Height = $height;
|
||||||
if (! empty($width)) $this->editor->Width = $width;
|
if (! empty($width)) $this->editor->Width = $width;
|
||||||
$this->editor->ToolbarSet = $toolbarname;
|
$this->editor->ToolbarSet = $shorttoolbarname;
|
||||||
$this->editor->Config['AutoDetectLanguage'] = 'true';
|
$this->editor->Config['AutoDetectLanguage'] = 'true';
|
||||||
$this->editor->Config['ToolbarLocation'] = $toolbarlocation ? $toolbarlocation : 'In';
|
$this->editor->Config['ToolbarLocation'] = $toolbarlocation ? $toolbarlocation : 'In';
|
||||||
$this->editor->Config['ToolbarStartExpanded'] = $toolbarstartexpanded;
|
$this->editor->Config['ToolbarStartExpanded'] = $toolbarstartexpanded;
|
||||||
@ -124,7 +125,7 @@ class DolEditor
|
|||||||
{
|
{
|
||||||
$this->content = $content;
|
$this->content = $content;
|
||||||
$this->htmlname = $htmlname;
|
$this->htmlname = $htmlname;
|
||||||
$this->toolbarname = $toolbarname;
|
$this->toolbarname = $shorttoolbarname;
|
||||||
$this->toolbarstartexpanded = $toolbarstartexpanded;
|
$this->toolbarstartexpanded = $toolbarstartexpanded;
|
||||||
$this->rows = max(ROWS_3,$rows);
|
$this->rows = max(ROWS_3,$rows);
|
||||||
$this->cols = max(40,$cols);
|
$this->cols = max(40,$cols);
|
||||||
@ -170,8 +171,7 @@ class DolEditor
|
|||||||
//$skin='v2';
|
//$skin='v2';
|
||||||
$skin='kama';
|
$skin='kama';
|
||||||
|
|
||||||
if ($this->toolbarname=='dolibarr_mailings') {$htmlencode_force='true';}
|
$htmlencode_force=preg_match('/_encoded$/',$this->toolbarname)?'true':'false';
|
||||||
else {$htmlencode_force='false';}
|
|
||||||
|
|
||||||
$out.= '<script type="text/javascript">
|
$out.= '<script type="text/javascript">
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|||||||
@ -93,7 +93,7 @@ function test_sql_and_script_inject($val, $type)
|
|||||||
// When it found '<script', 'javascript:', '<style', 'onload\s=' on body tag, '="&' on a tag size with old browsers
|
// When it found '<script', 'javascript:', '<style', 'onload\s=' on body tag, '="&' on a tag size with old browsers
|
||||||
// All examples on page: http://ha.ckers.org/xss.html#XSScalc
|
// All examples on page: http://ha.ckers.org/xss.html#XSScalc
|
||||||
$sql_inj += preg_match('/<script/i', $val);
|
$sql_inj += preg_match('/<script/i', $val);
|
||||||
$sql_inj += preg_match('/<style/i', $val);
|
if (! defined('NOSTYLECHECK')) $sql_inj += preg_match('/<style/i', $val);
|
||||||
$sql_inj += preg_match('/base[\s]+href/i', $val);
|
$sql_inj += preg_match('/base[\s]+href/i', $val);
|
||||||
if ($type == 1)
|
if ($type == 1)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -82,4 +82,11 @@ CKEDITOR.editorConfig = function( config )
|
|||||||
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
|
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
|
||||||
['Link','Unlink','SpecialChar']
|
['Link','Unlink','SpecialChar']
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// Used for mailing fields
|
||||||
|
config.toolbar_dolibarr_readonly =
|
||||||
|
[
|
||||||
|
['Source','Maximize'],
|
||||||
|
['Find']
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
@ -60,7 +60,7 @@ if (! empty($conf->global->MAIN_USE_ADVANCED_PERMS))
|
|||||||
// Define value to know what current user can do on properties of edited user
|
// Define value to know what current user can do on properties of edited user
|
||||||
if ($id)
|
if ($id)
|
||||||
{
|
{
|
||||||
// $user est le user qui edite, $_GET["id"] est l'id de l'utilisateur edite
|
// $user est le user qui edite, $id est l'id de l'utilisateur edite
|
||||||
$caneditfield=((($user->id == $id) && $user->rights->user->self->creer)
|
$caneditfield=((($user->id == $id) && $user->rights->user->self->creer)
|
||||||
|| (($user->id != $id) && $user->rights->user->user->creer));
|
|| (($user->id != $id) && $user->rights->user->user->creer));
|
||||||
$caneditpassword=((($user->id == $id) && $user->rights->user->self->password)
|
$caneditpassword=((($user->id == $id) && $user->rights->user->self->password)
|
||||||
@ -174,18 +174,18 @@ if ($action == 'add' && $canadduser)
|
|||||||
|
|
||||||
if (! $message)
|
if (! $message)
|
||||||
{
|
{
|
||||||
$object->lastname = $_POST["lastname"];
|
$object->lastname = GETPOST("lastname");
|
||||||
$object->firstname = $_POST["firstname"];
|
$object->firstname = GETPOST("firstname");
|
||||||
$object->login = $_POST["login"];
|
$object->login = GETPOST("login");
|
||||||
$object->admin = $_POST["admin"];
|
$object->admin = GETPOST("admin");
|
||||||
$object->office_phone = $_POST["office_phone"];
|
$object->office_phone = GETPOST("office_phone");
|
||||||
$object->office_fax = $_POST["office_fax"];
|
$object->office_fax = GETPOST("office_fax");
|
||||||
$object->user_mobile = $_POST["user_mobile"];
|
$object->user_mobile = GETPOST("user_mobile");
|
||||||
$object->email = $_POST["email"];
|
$object->email = GETPOST("email");
|
||||||
$object->job = $_POST["job"];
|
$object->job = GETPOST("job");
|
||||||
$object->signature = $_POST["signature"];
|
$object->signature = GETPOST("signature");
|
||||||
$object->note = $_POST["note"];
|
$object->note = GETPOST("note");
|
||||||
$object->ldap_sid = $_POST["ldap_sid"];
|
$object->ldap_sid = GETPOST("ldap_sid");
|
||||||
|
|
||||||
// Get extra fields
|
// Get extra fields
|
||||||
foreach($_POST as $key => $value)
|
foreach($_POST as $key => $value)
|
||||||
@ -887,15 +887,7 @@ if (($action == 'create') || ($action == 'adduserldap'))
|
|||||||
print '<tr><td valign="top">'.$langs->trans("Signature").'</td>';
|
print '<tr><td valign="top">'.$langs->trans("Signature").'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
||||||
if (!empty($conf->global->FCKEDITOR_ENABLE_USERSIGN)) {
|
$doleditor=new DolEditor('signature',GETPOST('signature'),'',280,'dolibarr_mailings','In',true,true,empty($conf->global->FCKEDITOR_ENABLE_USERSIGN)?0:1,8,72);
|
||||||
$withfckeditor=1;
|
|
||||||
//Mailing is mandatory to have dolHTMLencode done by ckeditor
|
|
||||||
$ckeditortoolbar='dolibarr_mailings';
|
|
||||||
} else {
|
|
||||||
$withfckeditor=0;
|
|
||||||
$ckeditortoolbar='';
|
|
||||||
}
|
|
||||||
$doleditor=new DolEditor('signature',GETPOST('signature'),'',280,$ckeditortoolbar,'In',true,true,$withfckeditor,8,72);
|
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
@ -1205,11 +1197,7 @@ else
|
|||||||
|
|
||||||
// Signature
|
// Signature
|
||||||
print '<tr><td valign="top">'.$langs->trans('Signature').'</td><td>';
|
print '<tr><td valign="top">'.$langs->trans('Signature').'</td><td>';
|
||||||
if (!empty($conf->global->FCKEDITOR_ENABLE_USERSIGN) && dol_textishtml(dol_html_entity_decode($object->signature, ENT_COMPAT | ENT_HTML401))) {
|
print dol_htmlentitiesbr($object->signature);
|
||||||
print dol_html_entity_decode($object->signature, ENT_COMPAT | ENT_HTML401);
|
|
||||||
}else {
|
|
||||||
print dol_textishtml($object->signature)?$object->signature:dol_nl2br($object->signature,1,false);
|
|
||||||
}
|
|
||||||
print "</td></tr>\n";
|
print "</td></tr>\n";
|
||||||
|
|
||||||
// Hierarchy
|
// Hierarchy
|
||||||
@ -1546,8 +1534,7 @@ else
|
|||||||
/*
|
/*
|
||||||
* Fiche en mode edition
|
* Fiche en mode edition
|
||||||
*/
|
*/
|
||||||
|
if ($action == 'edit' && ($canedituser || $caneditfield || $caneditpassword || ($user->id == $object->id)))
|
||||||
if ($action == 'edit' && ($canedituser || ($user->id == $object->id)))
|
|
||||||
{
|
{
|
||||||
$rowspan=14;
|
$rowspan=14;
|
||||||
|
|
||||||
@ -1613,7 +1600,15 @@ else
|
|||||||
// Position/Job
|
// Position/Job
|
||||||
print '<tr><td valign="top">'.$langs->trans("PostOrFunction").'</td>';
|
print '<tr><td valign="top">'.$langs->trans("PostOrFunction").'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
if ($caneditfield)
|
||||||
|
{
|
||||||
print '<input size="30" type="text" name="job" value="'.$object->job.'">';
|
print '<input size="30" type="text" name="job" value="'.$object->job.'">';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print '<input type="hidden" name="job" value="'.$object->job.'">';
|
||||||
|
print $object->job;
|
||||||
|
}
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Login
|
// Login
|
||||||
@ -1808,17 +1803,16 @@ else
|
|||||||
// Signature
|
// Signature
|
||||||
print "<tr>".'<td valign="top">'.$langs->trans("Signature").'</td>';
|
print "<tr>".'<td valign="top">'.$langs->trans("Signature").'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
if ($caneditfield)
|
||||||
|
{
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
|
||||||
if (!empty($conf->global->FCKEDITOR_ENABLE_USERSIGN)) {
|
$doleditor=new DolEditor('signature',$object->signature,'',280,'dolibarr_mailings','In',true,true,empty($conf->global->FCKEDITOR_ENABLE_USERSIGN)?0:1,8,72);
|
||||||
$withfckeditor=1;
|
|
||||||
//Mailing is mandatory to have dolHTMLencode done by ckeditor
|
|
||||||
$ckeditortoolbar='dolibarr_mailings';
|
|
||||||
} else {
|
|
||||||
$withfckeditor=0;
|
|
||||||
$ckeditortoolbar='';
|
|
||||||
}
|
|
||||||
$doleditor=new DolEditor('signature',$object->signature,'',280,$ckeditortoolbar,'In',true,true,$withfckeditor,8,72);
|
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print dol_htmlentitiesbr($object->signature);
|
||||||
|
}
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// openid
|
// openid
|
||||||
@ -1841,7 +1835,17 @@ else
|
|||||||
// Hierarchy
|
// Hierarchy
|
||||||
print '<tr><td valign="top">'.$langs->trans("HierarchicalResponsible").'</td>';
|
print '<tr><td valign="top">'.$langs->trans("HierarchicalResponsible").'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
if ($caneditfield)
|
||||||
|
{
|
||||||
print $form->select_dolusers($object->fk_user,'fk_user',1,array($object->id),0,'',0,$object->entity);
|
print $form->select_dolusers($object->fk_user,'fk_user',1,array($object->id),0,'',0,$object->entity);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print '<input type="hidden" name="fk_user" value="'.$object->fk_user.'">';
|
||||||
|
$huser=new User($db);
|
||||||
|
$huser->fetch($object->fk_user);
|
||||||
|
print $huser->getNomUrl(1);
|
||||||
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
|
|
||||||
@ -1851,21 +1855,6 @@ else
|
|||||||
print $object->getLibStatut(4);
|
print $object->getLibStatut(4);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Multicompany
|
|
||||||
if (! empty($conf->multicompany->enabled))
|
|
||||||
{
|
|
||||||
if (empty($conf->multicompany->transverse_mode) && $conf->entity == 1 && $user->admin && ! $user->entity)
|
|
||||||
{
|
|
||||||
print "<tr>".'<td valign="top">'.$langs->trans("Entity").'</td>';
|
|
||||||
print "<td>".$mc->select_entities($object->entity);
|
|
||||||
print "</td></tr>\n";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print '<input type="hidden" name="entity" value="'.$conf->entity.'" />';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Company / Contact
|
// Company / Contact
|
||||||
if (! empty($conf->societe->enabled))
|
if (! empty($conf->societe->enabled))
|
||||||
{
|
{
|
||||||
@ -1912,6 +1901,21 @@ else
|
|||||||
print "</tr>\n";
|
print "</tr>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Multicompany
|
||||||
|
if (! empty($conf->multicompany->enabled))
|
||||||
|
{
|
||||||
|
if (empty($conf->multicompany->transverse_mode) && $conf->entity == 1 && $user->admin && ! $user->entity)
|
||||||
|
{
|
||||||
|
print "<tr>".'<td valign="top">'.$langs->trans("Entity").'</td>';
|
||||||
|
print "<td>".$mc->select_entities($object->entity);
|
||||||
|
print "</td></tr>\n";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print '<input type="hidden" name="entity" value="'.$conf->entity.'" />';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Other attributes
|
// Other attributes
|
||||||
$parameters=array('colspan' => ' colspan="2"');
|
$parameters=array('colspan' => ' colspan="2"');
|
||||||
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
|
$reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user