895 lines
33 KiB
PHP
895 lines
33 KiB
PHP
<?php
|
|
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
|
/**
|
|
* EditView for Email
|
|
*
|
|
* SugarCRM is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004 - 2007 SugarCRM Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA.
|
|
*
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
|
|
* technical reasons, the Appropriate Legal Notices must display the words
|
|
* "Powered by SugarCRM".
|
|
*/
|
|
|
|
$toTemplate = '';
|
|
if(isset($_REQUEST['pTypeTo']) && $_REQUEST['pTypeTo']!='' && isset($_REQUEST['pIdTo']) && $_REQUEST['pIdTo']!='') {
|
|
if($_REQUEST['pTypeTo'] == "Accounts") {
|
|
require_once('modules/Accounts/Account.php');
|
|
$acc = new Account();
|
|
$acc->retrieve($_REQUEST['pIdTo']);
|
|
if(isset($acc->id) && $acc->id!='') {
|
|
$_REQUEST['to_addrs'] = $acc->name.' <'.$acc->email1.'>; ';
|
|
}
|
|
}
|
|
if($_REQUEST['pTypeTo'] == "Contacts") {
|
|
require_once('modules/Contacts/Contact.php');
|
|
$con = new Contact();
|
|
$con->retrieve($_REQUEST['pIdTo']);
|
|
if(isset($con->id) && $con->id!='') {
|
|
$_REQUEST['to_addrs'] = $con->name.' <'.$con->email1.'>; ';
|
|
}
|
|
}
|
|
}
|
|
|
|
if(isset($_REQUEST['pTypeTo']) && $_REQUEST['pTypeTo']!='')
|
|
if($_REQUEST['pTypeTo'] == "Accounts") $toTemplate = 'InvoiceTemplateAccount';
|
|
else
|
|
if($_REQUEST['pTypeTo'] == "Contacts") $toTemplate = 'InvoiceTemplateContact';
|
|
|
|
|
|
if(isset($_REQUEST['pTypeFrom']) && $_REQUEST['pTypeFrom']!='' && isset($_REQUEST['pIdFrom']) && $_REQUEST['pIdFrom']!='') {
|
|
if($_REQUEST['pTypeFrom'] == "Users") {
|
|
require_once('modules/Users/User.php');
|
|
$us = new User();
|
|
global $current_user;
|
|
$us->retrieve($current_user->id);//$_REQUEST['pIdFrom']);
|
|
if(isset($us->id) && $us->id!='') {
|
|
$_REQUEST['from_addr'] = $us->name.' <'.$us->email1.'>; ';
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
echo '<script type="text/javascript">var asynchronous_key = "'.$_SESSION['asynchronous_key'].'";</script>';
|
|
|
|
$GLOBALS['log']->info("Email edit view");
|
|
|
|
require_once('include/SugarTinyMCE.php');
|
|
require_once('modules/Emails/Email.php');
|
|
require_once('modules/EmailTemplates/EmailTemplate.php');
|
|
require_once('XTemplate/xtpl.php');
|
|
|
|
global $theme;
|
|
$theme_path="themes/".$theme."/";
|
|
$image_path=$theme_path."images/";
|
|
require_once($theme_path.'layout_utils.php');
|
|
|
|
global $app_strings;
|
|
global $app_list_strings;
|
|
global $current_user;
|
|
global $sugar_version, $sugar_config;
|
|
global $timedate;
|
|
$mod_strings = return_module_language($current_language, 'Emails');
|
|
|
|
$OPT = array();
|
|
if(isset($_REQUEST['invoiceout_id']) && $_REQUEST['invoiceout_id']!='') {
|
|
$OPT['invoiceout_id'] = $_REQUEST['invoiceout_id'];
|
|
} else $OPT['invoiceout_id'] = '';
|
|
|
|
if(isset($_REQUEST['sended']) && $_REQUEST['sended']!='') {
|
|
$OPT['sended'] = $_REQUEST['sended'];
|
|
} else $OPT['sended'] = '0';
|
|
|
|
|
|
$json = getJSONobj();
|
|
echo '<script language="javascript">
|
|
|
|
var OPT = '.$json->encode($OPT).';
|
|
function invoiceoutAlert(method) {
|
|
if(OPT[\'invoiceout_id\']==\'\') {
|
|
alert(\'Invoice not saved!\');
|
|
return false;
|
|
}
|
|
if(method == \'save\') {
|
|
prepSave(); document.forms.EditView.action.value=\'EmailSave\'; document.forms.EditView.send.value=\'1\'; document.forms.EditView.type.value=\'out\'; return fill_form(\'out\', \''.$mod_strings['ERR_NOT_ADDRESSED'].'\');
|
|
}
|
|
if(method == \'save_draft\') {
|
|
document.forms.EditView.action.value=\'EmailSave\'; document.forms.EditView.send.value=\'0\'; document.forms.EditView.type.value=\'draft\'; fill_form(\'draft\', \''.$mod_strings['ERR_NOT_ADDRESSED'].'\');
|
|
}
|
|
};
|
|
if(OPT[\'sended\']==\'1\') alert(\'Email was sended\');
|
|
</script>';
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// PREPROCESS BEAN DATA FOR DISPLAY
|
|
$focus = new Email();
|
|
$email_type = 'archived';
|
|
|
|
if(isset($_REQUEST['record'])) {
|
|
$focus->retrieve($_REQUEST['record']);
|
|
}
|
|
if(!empty($_REQUEST['type'])) {
|
|
$email_type = $_REQUEST['type'];
|
|
} elseif(!empty($focus->id)) {
|
|
$email_type = $focus->type;
|
|
}
|
|
|
|
$focus->type = $email_type;
|
|
|
|
//needed when creating a new email with default values passed in
|
|
if(isset($_REQUEST['contact_name']) && is_null($focus->contact_name)) {
|
|
$focus->contact_name = $_REQUEST['contact_name'];
|
|
}
|
|
|
|
if(!empty($_REQUEST['load_id']) && !empty($beanList[$_REQUEST['load_module']])) {
|
|
$class_name = $beanList[$_REQUEST['load_module']];
|
|
require_once($beanFiles[$class_name]);
|
|
$contact = new $class_name();
|
|
if($contact->retrieve($_REQUEST['load_id'])) {
|
|
$link_id = $class_name . '_id';
|
|
$focus->$link_id = $_REQUEST['load_id'];
|
|
$focus->contact_name = (isset($contact->full_name)) ? $contact->full_name : $contact->name;
|
|
$focus->to_addrs_names = $focus->contact_name;
|
|
$focus->to_addrs_ids = $_REQUEST['load_id'];
|
|
//Retrieve the email address.
|
|
//If Opportunity or Case then Oppurtinity/Case->Accounts->(email_addr_bean_rel->email_addresses)
|
|
//If Contacts, Leads etc.. then Contact->(email_addr_bean_rel->email_addresses)
|
|
$sugarEmailAddress = new SugarEmailAddress();
|
|
if($class_name == 'Opportunity' || $class_name == 'aCase'){
|
|
$account = new Account();
|
|
if($contact->account_id != null && $account->retrieve($contact->account_id)){
|
|
$sugarEmailAddress->handleLegacyRetrieve($account);
|
|
if(isset($account->email1)){
|
|
$focus->to_addrs_emails = $account->email1;
|
|
$focus->to_addrs = "$focus->contact_name <$account->email1>";
|
|
}
|
|
}
|
|
}
|
|
else{
|
|
$sugarEmailAddress->handleLegacyRetrieve($contact);
|
|
if(isset($contact->email1)){
|
|
$focus->to_addrs_emails = $contact->email1;
|
|
$focus->to_addrs = "$focus->contact_name <$contact->email1>";
|
|
}
|
|
}
|
|
if(!empty($_REQUEST['parent_type']) && empty($app_list_strings['record_type_display'][$_REQUEST['parent_type']])){
|
|
if(!empty($app_list_strings['record_type_display'][$_REQUEST['load_module']])){
|
|
$_REQUEST['parent_type'] = $_REQUEST['load_module'];
|
|
$_REQUEST['parent_id'] = $focus->contact_id;
|
|
$_REQUEST['parent_name'] = $focus->to_addrs_names;
|
|
} else {
|
|
unset($_REQUEST['parent_type']);
|
|
unset($_REQUEST['parent_id']);
|
|
unset($_REQUEST['parent_name']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(isset($_REQUEST['contact_id']) && is_null($focus->contact_id)) {
|
|
$focus->contact_id = $_REQUEST['contact_id'];
|
|
}
|
|
if(isset($_REQUEST['parent_name'])) {
|
|
$focus->parent_name = $_REQUEST['parent_name'];
|
|
}
|
|
if(isset($_REQUEST['parent_id'])) {
|
|
$focus->parent_id = $_REQUEST['parent_id'];
|
|
}
|
|
if(isset($_REQUEST['parent_type'])) {
|
|
$focus->parent_type = $_REQUEST['parent_type'];
|
|
}
|
|
elseif(is_null($focus->parent_type)) {
|
|
$focus->parent_type = $app_list_strings['record_type_default_key'];
|
|
}
|
|
if(isset($_REQUEST['to_email_addrs'])) {
|
|
$focus->to_addrs = $_REQUEST['to_email_addrs'];
|
|
}
|
|
// needed when clicking through a Contacts detail view:
|
|
if(isset($_REQUEST['to_addrs_ids'])) {
|
|
$focus->to_addrs_ids = $_REQUEST['to_addrs_ids'];
|
|
}
|
|
if(isset($_REQUEST['to_addrs_emails'])) {
|
|
$focus->to_addrs_emails = $_REQUEST['to_addrs_emails'];
|
|
}
|
|
if(isset($_REQUEST['to_addrs_names'])) {
|
|
$focus->to_addrs_names = $_REQUEST['to_addrs_names'];
|
|
}
|
|
|
|
if(isset($_REQUEST['to_addrs'])) {
|
|
$focus->to_addrs = $_REQUEST['to_addrs'];
|
|
}// user's email, go through 3 levels of precedence:
|
|
if(isset($_REQUEST['from_addr'])) {
|
|
$focus->from_addr = $_REQUEST['from_addr'];
|
|
}// user's email, go through 3 levels of precedence:
|
|
$from = $current_user->getEmailInfo();
|
|
//// END PREPROCESSING
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// XTEMPLATE ASSIGNMENT
|
|
if($email_type == 'archived') {
|
|
// echo get_module_title('Emails', $mod_strings['LBL_ARCHIVED_MODULE_NAME'].":", true);
|
|
$xtpl=new XTemplate('modules/Emails/EditViewArchive.html');
|
|
} else {
|
|
// echo get_module_title('Emails', $mod_strings['LBL_COMPOSE_MODULE_NAME'].":", true);
|
|
$xtpl=new XTemplate('modules/EcmPriceKopias/Emails.html');
|
|
}
|
|
echo "\n</p>\n";
|
|
|
|
// CHECK USER'S EMAIL SETTINGS TO ENABLE/DISABLE 'SEND' BUTTON
|
|
if(!$focus->check_email_settings() &&($email_type == 'out' || $email_type == 'draft')) {
|
|
print "<font color='red'>".$mod_strings['WARNING_SETTINGS_NOT_CONF']." <a href='index.php?module=Users&action=EditView&record=".$current_user->id."&return_module=Emails&type=out&return_action=EditView'>".$mod_strings['LBL_EDIT_MY_SETTINGS']."</a></font>";
|
|
$xtpl->assign("DISABLE_SEND", 'DISABLED');
|
|
}
|
|
|
|
// CHECK THAT SERVER HAS A PLACE TO PUT UPLOADED TEMP FILES SO THAT ATTACHMENTS WILL WORK
|
|
// cn: Bug 5995
|
|
$tmpUploadDir = ini_get('upload_tmp_dir');
|
|
if(!empty($tmpUploadDir)) {
|
|
if(!is_writable($tmpUploadDir)) {
|
|
echo "<font color='red'>{$mod_strings['WARNING_UPLOAD_DIR_NOT_WRITABLE']}</font>";
|
|
}
|
|
} else {
|
|
//echo "<font color='red'>{$mod_strings['WARNING_NO_UPLOAD_DIR']}</font>";
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// INBOUND EMAIL HANDLING
|
|
if(isset($_REQUEST['email_name'])) {
|
|
$name = str_replace('_',' ',$_REQUEST['email_name']);
|
|
}
|
|
if(isset($_REQUEST['inbound_email_id'])) {
|
|
$ieMail = new Email();
|
|
$ieMail->retrieve($_REQUEST['inbound_email_id']);
|
|
|
|
$invoiceoutd = '';
|
|
// cn: bug 9725: replies/forwards lose real content
|
|
$invoiceoutdHtml = $ieMail->invoiceoutHtmlEmail($ieMail->description_html);
|
|
|
|
// plain-text
|
|
$desc = nl2br(trim($ieMail->description));
|
|
|
|
$exDesc = explode('<br />', $desc);
|
|
foreach($exDesc as $k => $line) {
|
|
$invoiceoutd .= '> '.trim($line)."\r";
|
|
}
|
|
|
|
// prefill empties with the other's contents
|
|
if(empty($invoiceoutdHtml) && !empty($invoiceoutd)) {
|
|
$invoiceoutdHtml = nl2br($invoiceoutd);
|
|
}
|
|
if(empty($invoiceoutd) && !empty($invoiceoutdHtml)) {
|
|
$invoiceoutd = strip_tags(br2nl($invoiceoutdHtml));
|
|
}
|
|
|
|
// forwards have special text
|
|
if($_REQUEST['type'] == 'forward') {
|
|
$header = $ieMail->getForwardHeader();
|
|
// subject is handled in Subject line handling below
|
|
} else {
|
|
// we have a reply in focus
|
|
$header = $ieMail->getReplyHeader();
|
|
}
|
|
|
|
$invoiceoutd = br2nl($header.$invoiceoutd);
|
|
$invoiceoutdHtml = $header.$invoiceoutdHtml;
|
|
|
|
|
|
// if not a forward: it's a reply
|
|
if($_REQUEST['type'] != 'forward') {
|
|
$ieMailName = 'RE: '.$ieMail->name;
|
|
} else {
|
|
$ieMailName = $ieMail->name;
|
|
}
|
|
|
|
$focus->id = null; // nulling this to prevent overwriting a replied email(we're basically doing a "Duplicate" function)
|
|
$focus->to_addrs = $ieMail->from_addr;
|
|
$focus->description = $invoiceoutd; // don't know what i was thinking: ''; // this will be filled on save/send
|
|
$focus->description_html = $invoiceoutdHtml; // cn: bug 7357 - htmlentities() breaks FCKEditor
|
|
$focus->parent_type = $ieMail->parent_type;
|
|
$focus->parent_id = $ieMail->parent_id;
|
|
$focus->parent_name = $ieMail->parent_name;
|
|
$focus->name = $ieMailName;
|
|
$xtpl->assign('INBOUND_EMAIL_ID',$_REQUEST['inbound_email_id']);
|
|
// un/READ flags
|
|
if(!empty($ieMail->status)) {
|
|
// "Read" flag for InboundEmail
|
|
if($ieMail->status == 'unread') {
|
|
// creating a new instance here to avoid data corruption below
|
|
$e = new Email();
|
|
$e->retrieve($ieMail->id);
|
|
$e->status = 'read';
|
|
$e->save();
|
|
$email_type = $e->status;
|
|
}
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
//// PRIMARY PARENT LINKING
|
|
if(empty($focus->parent_type) && empty($focus->parent_id)) {
|
|
$focus->fillPrimaryParentFields();
|
|
}
|
|
//// END PRIMARY PARENT LINKING
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// setup for my/mailbox email switcher
|
|
$mbox = $ieMail->getMailboxDefaultEmail();
|
|
$user = $current_user->getPreferredEmail();
|
|
$useGroup = ' <input id="use_mbox" name="use_mbox" type="checkbox" CHECKED onClick="switchEmail()" >
|
|
<script type="text/javascript">
|
|
function switchEmail() {
|
|
var mboxName = "'.$mbox['name'].'";
|
|
var mboxAddr = "'.$mbox['email'].'";
|
|
var userName = "'.$user['name'].'";
|
|
var userAddr = "'.$user['email'].'";
|
|
|
|
if(document.getElementById("use_mbox").checked) {
|
|
document.getElementById("from_addr_field").value = mboxName + " <" + mboxAddr + ">";
|
|
document.getElementById("from_addr_name").value = mboxName;
|
|
document.getElementById("from_addr_email").value = mboxAddr;
|
|
} else {
|
|
document.getElementById("from_addr_field").value = userName + " <" + userAddr + ">";
|
|
document.getElementById("from_addr_name").value = userName;
|
|
document.getElementById("from_addr_email").value = userAddr;
|
|
}
|
|
|
|
}
|
|
|
|
</script>';
|
|
$useGroup .= $mod_strings['LBL_USE_MAILBOX_INFO'];
|
|
|
|
$xtpl->assign('FROM_ADDR_GROUP', $useGroup);
|
|
}
|
|
//// END INBOUND EMAIL HANDLING
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// SUBJECT FIELD MANIPULATION
|
|
$name = '';
|
|
if(!empty($_REQUEST['parent_id']) && !empty($_REQUEST['parent_type'])) {
|
|
$focus->parent_id = $_REQUEST['parent_id'];
|
|
$focus->parent_type = $_REQUEST['parent_type'];
|
|
}
|
|
if(!empty($focus->parent_id) && !empty($focus->parent_type)) {
|
|
if($focus->parent_type == 'Cases') {
|
|
require_once('modules/Cases/Case.php');
|
|
$myCase = new aCase();
|
|
$myCase->retrieve($focus->parent_id);
|
|
$myCaseMacro = $myCase->getEmailSubjectMacro();
|
|
if(isset($ieMail->name) && !empty($ieMail->name)) { // if replying directly to an InboundEmail
|
|
$oldEmailSubj = $ieMail->name;
|
|
} elseif(isset($_REQUEST['parent_name']) && !empty($_REQUEST['parent_name'])) {
|
|
$oldEmailSubj = $_REQUEST['parent_name'];
|
|
} else {
|
|
$oldEmailSubj = $focus->name; // replying to an email using old subject
|
|
}
|
|
|
|
if(!preg_match('/^re:/i', $oldEmailSubj)) {
|
|
$oldEmailSubj = 'RE: '.$oldEmailSubj;
|
|
}
|
|
$focus->name = $oldEmailSubj;
|
|
|
|
if(strpos($focus->name, str_replace('%1',$myCase->case_number,$myCaseMacro))) {
|
|
$name = $focus->name;
|
|
} else {
|
|
$name = $focus->name.' '.str_replace('%1',$myCase->case_number,$myCaseMacro);
|
|
}
|
|
} else {
|
|
$name = $focus->name;
|
|
}
|
|
} else {
|
|
if(empty($focus->name)) {
|
|
$name = '';
|
|
} else {
|
|
$name = $focus->name;
|
|
}
|
|
}
|
|
if($email_type == 'forward') {
|
|
$name = 'FW: '.$name;
|
|
}
|
|
//// END SUBJECT FIELD MANIPULATION
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// GENERAL TEMPLATE ASSIGNMENTS
|
|
$xtpl->assign('MOD', return_module_language($current_language, 'Emails'));
|
|
$xtpl->assign('APP', $app_strings);
|
|
|
|
if(!isset($focus->id)) $xtpl->assign('USER_ID', $current_user->id);
|
|
if(!isset($focus->id) && isset($_REQUEST['contact_id'])) $xtpl->assign('CONTACT_ID', $_REQUEST['contact_id']);
|
|
|
|
$xtpl->assign("INVOICEOUT_ID",$_REQUEST['invoiceout_id']);
|
|
if(isset($_REQUEST['return_module']) && !empty($_REQUEST['return_module'])) {
|
|
$xtpl->assign('RETURN_MODULE', $_REQUEST['return_module']);
|
|
} else {
|
|
$xtpl->assign('RETURN_MODULE', 'Emails');
|
|
}
|
|
if(isset($_REQUEST['return_action']) && !empty($_REQUEST['return_action']) && ($_REQUEST['return_action'] != 'SubPanelViewer')) {
|
|
$xtpl->assign('RETURN_ACTION', $_REQUEST['return_action']);
|
|
} else {
|
|
$xtpl->assign('RETURN_ACTION', 'DetailView');
|
|
}
|
|
if(isset($_REQUEST['return_id']) && !empty($_REQUEST['return_id'])) {
|
|
$xtpl->assign('RETURN_ID', $_REQUEST['return_id']);
|
|
}
|
|
// handle Create $module then Cancel
|
|
if(empty($_REQUEST['return_id']) && !isset($_REQUEST['type'])) {
|
|
$xtpl->assign('RETURN_ACTION', 'index');
|
|
}
|
|
|
|
$xtpl->assign('THEME', $theme);
|
|
$xtpl->assign('IMAGE_PATH', $image_path);$xtpl->assign('PRINT_URL', 'index.php?'.$GLOBALS['request_string']);
|
|
|
|
if(isset($_REQUEST['bodyclass']) && $_REQUEST['bodyclass'] != '') $xtpl->assign('BODYCLASS',$_REQUEST['bodyclass']);
|
|
|
|
|
|
require_once('modules/EcmPriceKopias/EcmPriceKopia.php');
|
|
$m = new EcmPriceKopia();
|
|
//$mfp = $m->loadParserArray('email');
|
|
$xtpl->assign("MFP",$mfp);
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// QUICKSEARCH CODE
|
|
require_once('include/QuickSearchDefaults.php');
|
|
$qsd = new QuickSearchDefaults();
|
|
$sqs_objects = array('parent_name' => $qsd->getQSParent(),
|
|
'assigned_user_name' => $qsd->getQSUser(),
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
$json = getJSONobj();
|
|
|
|
$quicksearch_js = $qsd->getQSScripts();
|
|
$sqs_objects_encoded = $json->encode($sqs_objects);
|
|
$quicksearch_js .= <<<EOQ
|
|
<script type="text/javascript" language="javascript">sqs_objects = $sqs_objects_encoded;
|
|
function changeQS() {
|
|
//new_module = document.getElementById('parent_type').value;
|
|
new_module = document.EditView.parent_type.value;
|
|
if(new_module == 'Contacts' || new_module == 'Leads' || typeof(disabledModules[new_module]) != 'undefined') {
|
|
sqs_objects['parent_name']['disable'] = true;
|
|
document.getElementById('parent_name').readOnly = true;
|
|
}
|
|
else {
|
|
sqs_objects['parent_name']['disable'] = false;
|
|
document.getElementById('parent_name').readOnly = false;
|
|
}
|
|
|
|
sqs_objects['parent_name']['module'] = new_module;
|
|
}
|
|
changeQS();
|
|
</script>
|
|
EOQ;
|
|
$xtpl->assign('JAVASCRIPT', get_set_focus_js().$quicksearch_js);
|
|
//// END QUICKSEARCH CODE
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cn: bug 14191 - duping archive emails overwrites the original
|
|
if(!isset($_REQUEST['isDuplicate']) || $_REQUEST['isDuplicate'] != 'true') {
|
|
$xtpl->assign('ID', $focus->id);
|
|
}
|
|
|
|
if(isset($_REQUEST['parent_type']) && !empty($_REQUEST['parent_type']) && isset($_REQUEST['parent_id']) && !empty($_REQUEST['parent_id'])) {
|
|
$xtpl->assign('OBJECT_ID', $_REQUEST['parent_id']);
|
|
$xtpl->assign('OBJECT_TYPE', $_REQUEST['parent_type']);
|
|
}
|
|
|
|
$xtpl->assign('FROM_ADDR', $focus->from_addr);
|
|
$xtpl->assign('FROM_ADDR', $current_user->first_name." ".$current_user->last_name." <". $current_user->getPreference('mail_fromaddress').">");
|
|
//// prevent TO: prefill when type is 'forward'
|
|
if($email_type != 'forward') {
|
|
$xtpl->assign('TO_ADDRS', $focus->to_addrs);
|
|
$xtpl->assign('FROM_ADDRS', $focus->from_addrs);
|
|
$xtpl->assign('TO_ADDRS_IDS', $focus->to_addrs_ids);
|
|
$xtpl->assign('TO_ADDRS_NAMES', $focus->to_addrs_names);
|
|
$xtpl->assign('TO_ADDRS_EMAILS', $focus->to_addrs_emails);
|
|
$xtpl->assign('CC_ADDRS', $focus->cc_addrs);
|
|
$xtpl->assign('CC_ADDRS_IDS', $focus->cc_addrs_ids);
|
|
$xtpl->assign('CC_ADDRS_NAMES', $focus->cc_addrs_names);
|
|
$xtpl->assign('CC_ADDRS_EMAILS', $focus->cc_addrs_emails);
|
|
$xtpl->assign('BCC_ADDRS', $focus->bcc_addrs);
|
|
$xtpl->assign('BCC_ADDRS_IDS', $focus->bcc_addrs_ids);
|
|
$xtpl->assign('BCC_ADDRS_NAMES', $focus->bcc_addrs_names);
|
|
$xtpl->assign('BCC_ADDRS_EMAILS', $focus->bcc_addrs_emails);
|
|
}
|
|
|
|
//$xtpl->assign('FROM_ADDR', $from['name'].' <'.$from['email'].'>');
|
|
$xtpl->assign('FROM_ADDR_NAME', $from['name']);
|
|
$xtpl->assign('FROM_ADDR_EMAIL', $from['email']);
|
|
|
|
$xtpl->assign('NAME', from_html($name));
|
|
//$xtpl->assign('DESCRIPTION_HTML', from_html($focus->description_html));
|
|
$xtpl->assign('DESCRIPTION', $focus->description);
|
|
$xtpl->assign('TYPE',$email_type);
|
|
|
|
// Unimplemented until jscalendar language files are fixed
|
|
// $xtpl->assign('CALENDAR_LANG',((empty($cal_codes[$current_language])) ? $cal_codes[$default_language] : $cal_codes[$current_language]));
|
|
$xtpl->assign('CALENDAR_LANG', 'en');
|
|
$xtpl->assign('CALENDAR_DATEFORMAT', $timedate->get_cal_date_format());
|
|
$xtpl->assign('DATE_START', $focus->date_start);
|
|
$xtpl->assign('TIME_FORMAT', '('. $timedate->get_user_time_format().')');
|
|
$xtpl->assign('TIME_START', substr($focus->time_start,0,5));
|
|
$xtpl->assign('TIME_MERIDIEM', $timedate->AMPMMenu('',$focus->time_start));
|
|
|
|
$parent_types = $app_list_strings['record_type_display'];
|
|
$disabled_parent_types = ACLController::disabledModuleList($parent_types,false, 'list');
|
|
|
|
foreach($disabled_parent_types as $disabled_parent_type){
|
|
if($disabled_parent_type != $focus->parent_type){
|
|
unset($parent_types[$disabled_parent_type]);
|
|
}
|
|
}
|
|
|
|
$xtpl->assign('TYPE_OPTIONS', get_select_options_with_id($parent_types, $focus->parent_type));
|
|
$xtpl->assign('USER_DATEFORMAT', '('. $timedate->get_user_date_format().')');
|
|
$xtpl->assign('PARENT_NAME', $focus->parent_name);
|
|
$xtpl->assign('PARENT_ID', $focus->parent_id);
|
|
if(empty($focus->parent_type)) {
|
|
$xtpl->assign('PARENT_RECORD_TYPE', '');
|
|
} else {
|
|
$xtpl->assign('PARENT_RECORD_TYPE', $focus->parent_type);
|
|
}
|
|
|
|
if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){
|
|
$record = '';
|
|
if(!empty($_REQUEST['record'])){
|
|
$record = $_REQUEST['record'];
|
|
}
|
|
$xtpl->assign('ADMIN_EDIT',"<a href='index.php?action=index&module=DynamicLayout&from_action=".$_REQUEST['action'] ."&from_module=".$_REQUEST['module'] ."&record=".$record. "'>".get_image($image_path."EditLayout","border='0' alt='Edit Layout' align='bottom'")."</a>");
|
|
}
|
|
|
|
//// END GENERAL TEMPLATE ASSIGNMENTS
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
///////////////////////////////////////
|
|
///
|
|
/// SETUP PARENT POPUP
|
|
|
|
$popup_request_data = array(
|
|
'call_back_function' => 'set_return',
|
|
'form_name' => 'EditView',
|
|
'field_to_name_array' => array(
|
|
'id' => 'parent_id',
|
|
'name' => 'parent_name',
|
|
),
|
|
);
|
|
|
|
$encoded_popup_request_data = $json->encode($popup_request_data);
|
|
|
|
/// Users Popup
|
|
$popup_request_data = array(
|
|
'call_back_function' => 'set_return',
|
|
'form_name' => 'EditView',
|
|
'field_to_name_array' => array(
|
|
'id' => 'assigned_user_id',
|
|
'user_name' => 'assigned_user_name',
|
|
),
|
|
);
|
|
$xtpl->assign('encoded_users_popup_request_data', $json->encode($popup_request_data));
|
|
|
|
|
|
|
|
$xtpl->assign('PRICEBOOK_ID', $_REQUEST['pricebook_id']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
///////////////////////////////////////
|
|
|
|
$change_parent_button = '<input type="button" name="button" tabindex="2" class="button" '
|
|
. 'title="' . $app_strings['LBL_SELECT_BUTTON_TITLE'] . '" '
|
|
. 'accesskey="' . $app_strings['LBL_SELECT_BUTTON_KEY'] . '" '
|
|
. 'value="' . $app_strings['LBL_SELECT_BUTTON_LABEL'] . '" '
|
|
. "onclick='open_popup(document.EditView.parent_type.value,600,400,\"&tree=ProductsProd\",true,false,$encoded_popup_request_data);' />\n";
|
|
$xtpl->assign("CHANGE_PARENT_BUTTON", $change_parent_button);
|
|
|
|
$button_attr = '';
|
|
if(!ACLController::checkAccess('Contacts', 'list', true)){
|
|
$button_attr = 'disabled="disabled"';
|
|
}
|
|
|
|
$change_to_addrs_button = '<input type="button" name="to_button" tabindex="3" class="button" '
|
|
. 'title="' . $app_strings['LBL_SELECT_BUTTON_TITLE'] . '" '
|
|
. 'accesskey="' . $app_strings['LBL_SELECT_BUTTON_KEY'] . '" '
|
|
. 'value="' . $mod_strings['LBL_EMAIL_SELECTOR'] . '" '
|
|
. "onclick='button_change_onclick(this);' $button_attr />\n";
|
|
$xtpl->assign("CHANGE_TO_ADDRS_BUTTON", $change_to_addrs_button);
|
|
|
|
$change_cc_addrs_button = '<input type="button" name="cc_button" tabindex="3" class="button" '
|
|
. 'title="' . $app_strings['LBL_SELECT_BUTTON_TITLE'] . '" '
|
|
. 'accesskey="' . $app_strings['LBL_SELECT_BUTTON_KEY'] . '" '
|
|
. 'value="' . $mod_strings['LBL_EMAIL_SELECTOR'] . '" '
|
|
. "onclick='button_change_onclick(this);' $button_attr />\n";
|
|
$xtpl->assign("CHANGE_CC_ADDRS_BUTTON", $change_cc_addrs_button);
|
|
|
|
$change_bcc_addrs_button = '<input type="button" name="bcc_button" tabindex="3" class="button" '
|
|
. 'title="' . $app_strings['LBL_SELECT_BUTTON_TITLE'] . '" '
|
|
. 'accesskey="' . $app_strings['LBL_SELECT_BUTTON_KEY'] . '" '
|
|
. 'value="' . $mod_strings['LBL_EMAIL_SELECTOR'] . '" '
|
|
. "onclick='button_change_onclick(this);' $button_attr />\n";
|
|
$xtpl->assign("CHANGE_BCC_ADDRS_BUTTON", $change_bcc_addrs_button);
|
|
|
|
|
|
///////////////////////////////////////
|
|
//// USER ASSIGNMENT
|
|
global $current_user;
|
|
if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])) {
|
|
$record = '';
|
|
if(!empty($_REQUEST['record'])) {
|
|
$record = $_REQUEST['record'];
|
|
}
|
|
$xtpl->assign('ADMIN_EDIT',"<a href='index.php?action=index&module=DynamicLayout&from_action=".$_REQUEST['action'] ."&from_module=".$_REQUEST['module'] ."&record=".$record. "'>".get_image($image_path."EditLayout","border='0' alt='Edit Layout' align='bottom'")."</a>");
|
|
}
|
|
|
|
if(empty($focus->assigned_user_id) && empty($focus->id))
|
|
$focus->assigned_user_id = $current_user->id;
|
|
if(empty($focus->assigned_name) && empty($focus->id))
|
|
$focus->assigned_user_name = $current_user->user_name;
|
|
$xtpl->assign('ASSIGNED_USER_OPTIONS', get_select_options_with_id(get_user_array(TRUE, 'Active', $focus->assigned_user_id), $focus->assigned_user_id));
|
|
$xtpl->assign('ASSIGNED_USER_NAME', $focus->assigned_user_name);
|
|
$xtpl->assign('ASSIGNED_USER_ID', $focus->assigned_user_id);
|
|
$xtpl->assign('DURATION_HOURS', $focus->duration_hours);
|
|
$xtpl->assign('TYPE_OPTIONS', get_select_options_with_id($parent_types, $focus->parent_type));
|
|
$xtpl->assign("PIDFROM",$_REQUEST['pIdFrom']);
|
|
$xtpl->assign("PTYPEFROM",$_REQUEST['pTypeFrom']);
|
|
$xtpl->assign("PIDTO",$_REQUEST['pIdTo']);
|
|
$xtpl->assign("PTYPETO",$_REQUEST['pTypeTo']);
|
|
if(isset($focus->duration_minutes)) {
|
|
$xtpl->assign('DURATION_MINUTES_OPTIONS', get_select_options_with_id($focus->minutes_values,$focus->duration_minutes));
|
|
}
|
|
//// END USER ASSIGNMENT
|
|
///////////////////////////////////////
|
|
|
|
|
|
|
|
//Add Custom Fields
|
|
require_once('modules/DynamicFields/templates/Files/EditView.php');
|
|
require_once("modules/Notes/Note.php");
|
|
|
|
///////////////////////////////////////
|
|
//// ATTACHMENTS
|
|
$attachments = '';
|
|
if(!empty($focus->id) || (!empty($_REQUEST['record']) && $_REQUEST['type'] == 'forward')) {
|
|
|
|
$attachments = "<input type='hidden' name='removeAttachment' id='removeAttachment' value=''>\n";
|
|
$ids = '';
|
|
|
|
$focusId = empty($focus->id) ? $_REQUEST['record'] : $focus->id;
|
|
$note = new Note();
|
|
$where = "notes.parent_id='{$focusId}' AND notes.filename IS NOT NULL";
|
|
$notes_list = $note->get_full_list("", $where,true);
|
|
|
|
if(!isset($notes_list)) {
|
|
$notes_list = array();
|
|
}
|
|
for($i = 0;$i < count($notes_list);$i++) {
|
|
$the_note = $notes_list[$i];
|
|
if(empty($the_note->filename)) {
|
|
continue;
|
|
}
|
|
|
|
// cn: bug 8034 - attachments from forwards/replies lost when saving drafts
|
|
if(!empty($ids)) {
|
|
$ids .= ",";
|
|
}
|
|
$ids .= $the_note->id;
|
|
|
|
$attachments .= "
|
|
<div id='noteDiv{$the_note->id}'>
|
|
<img onclick='deletePriorAttachment(\"{$the_note->id}\");' src='themes/{$theme}/images/delete_inline.gif' value='{$the_note->id}'> ";
|
|
$attachments .= '<a href="'.UploadFile::get_url($the_note->filename,$the_note->id).'" target="_blank">'. $the_note->filename .'</a></div>';
|
|
|
|
}
|
|
// cn: bug 8034 - attachments from forwards/replies lost when saving drafts
|
|
$attachments .= "<input type='hidden' name='prior_attachments' value='{$ids}'>";
|
|
|
|
// workaround $mod_strings being overriden by Note object instantiation above.
|
|
global $current_language, $mod_strings;
|
|
$mod_strings = return_module_language($current_language, 'Emails');
|
|
}
|
|
|
|
$attJs = '<script type="text/javascript">';
|
|
$attJs .= 'var file_path = "'.$sugar_config['site_url'].'/'.$sugar_config['upload_dir'].'";';
|
|
$attJs .= 'var lnk_remove = "'.$app_strings['LNK_REMOVE'].'";';
|
|
$attJs .= '</script>';
|
|
$xtpl->assign('ATTACHMENTS', $attachments);
|
|
$xtpl->assign('ATTACHMENTS_JAVASCRIPT', $attJs);
|
|
//// END ATTACHMENTS
|
|
///////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// DOCUMENTS
|
|
$popup_request_data = array(
|
|
'call_back_function' => 'document_set_return',
|
|
'form_name' => 'EditView',
|
|
'field_to_name_array' => array(
|
|
'id' => 'related_doc_id',
|
|
'document_name' => 'related_document_name',
|
|
),
|
|
);
|
|
$json = getJSONobj();
|
|
$xtpl->assign('encoded_document_popup_request_data', $json->encode($popup_request_data));
|
|
//// END DOCUMENTS
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
$parse_open = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($parse_open) {
|
|
$xtpl->parse('main.open_source_1');
|
|
}
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//// EMAIL TEMPLATES
|
|
if(ACLController::checkAccess('EmailTemplates', 'list', true) && ACLController::checkAccess('EmailTemplates', 'view', true)) {
|
|
$et = new EmailTemplate();
|
|
$etResult = $focus->db->query($et->create_list_query('','',''));
|
|
$email_templates_arr[] = '';
|
|
$toTemplateId = '';
|
|
while($etA = $focus->db->fetchByAssoc($etResult)) {
|
|
if($toTemplate == $etA['name']) { $toTemplateId = $etA['id']; }
|
|
$email_templates_arr[$etA['id']] = $etA['name'];
|
|
}
|
|
} else {
|
|
$email_templates_arr = array('' => $app_strings['LBL_NONE']);
|
|
}
|
|
|
|
$xtpl->assign('EMAIL_TEMPLATE_OPTIONS', get_select_options_with_id($email_templates_arr, $toTemplateId));
|
|
//// END EMAIL TEMPLATES
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////
|
|
//// TEXT EDITOR
|
|
// cascade from User to Sys Default
|
|
$editor = $focus->getUserEditorPreference();
|
|
|
|
if($editor != 'plain') {
|
|
// this box is checked by Javascript on-load.
|
|
$xtpl->assign('EMAIL_EDITOR_OPTION', 'CHECKED');
|
|
}
|
|
$description_html = from_html($focus->description_html);
|
|
$description = $focus->description;
|
|
|
|
/////////////////////////////////////////////////
|
|
// signatures
|
|
if($sig = $current_user->getDefaultSignature()) {
|
|
if(!$focus->hasSignatureInBody($sig) && $focus->type != 'draft') {
|
|
if($current_user->getPreference('signature_prepend')) {
|
|
$description_html = '<br />'.from_html($sig['signature_html']).'<br /><br />'.$description_html;
|
|
$description = "\n".$sig['signature']."\n\n".$description;
|
|
} else {
|
|
$description_html .= '<br /><br />'.from_html($sig['signature_html']);
|
|
$description = $description."\n\n".$sig['signature'];
|
|
}
|
|
}
|
|
}
|
|
$xtpl->assign('DESCRIPTION', $description);
|
|
// sigs
|
|
/////////////////////////////////////////////////
|
|
$tiny = new SugarTinyMCE();
|
|
$ed = $tiny->getInstance("description_html");
|
|
$xtpl->assign("TINY", $ed);
|
|
$xtpl->assign("DESCRIPTION_HTML", $description_html);
|
|
|
|
if((!isset($_REQUEST['record']) || $_REQUEST['record'] == '') && isset($toTemplateId) && $toTemplateId != "") {
|
|
require_once('modules/EmailTemplates/EmailTemplate.php');
|
|
$et = new EmailTemplate();
|
|
$et->retrieve($toTemplateId);
|
|
if(isset($et->id) && $et->id != '') {
|
|
$xtpl->assign("NAME",$et->subject);
|
|
$xtpl->assign("DESCRIPTION",$et->body);
|
|
$xtpl->assign("DESCRIPTION_HTML",$et->body_html);
|
|
}
|
|
}
|
|
|
|
$xtpl->parse('main.htmlarea');
|
|
//// END TEXT EDITOR
|
|
///////////////////////////////////////
|
|
|
|
///////////////////////////////////////
|
|
//// SPECIAL INBOUND LANDING SCREEN ASSIGNS
|
|
if(!empty($_REQUEST['inbound_email_id'])) {
|
|
if(!empty($_REQUEST['start'])) {
|
|
$parts = $focus->getStartPage(base64_decode($_REQUEST['start']));
|
|
$xtpl->assign('RETURN_ACTION', $parts['action']);
|
|
$xtpl->assign('RETURN_MODULE', $parts['module']);
|
|
$xtpl->assign('GROUP', $parts['group']);
|
|
}
|
|
$xtpl->assign('ASSIGNED_USER_ID', $current_user->id);
|
|
$xtpl->assign('MYINBOX', 'this.form.type.value=\'inbound\';');
|
|
}
|
|
//// END SPECIAL INBOUND LANDING SCREEN ASSIGNS
|
|
///////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
echo '<script>var disabledModules='. $json->encode($disabled_parent_types) . ';</script>';
|
|
$jsVars = 'var lbl_send_anyways = "'.$mod_strings['LBL_SEND_ANYWAYS'].'";';
|
|
$xtpl->assign('JS_VARS', $jsVars);
|
|
$xtpl->parse("main");
|
|
$xtpl->out("main");
|
|
echo '<script>checkParentType(document.EditView.parent_type.value, document.EditView.change_parent);</script>';
|
|
//// END XTEMPLATE ASSIGNMENT
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
require_once('include/javascript/javascript.php');
|
|
$javascript = new javascript();
|
|
$javascript->setFormName('email_EditView');
|
|
$javascript->setSugarBean($focus);
|
|
$skip_fields = array();
|
|
if($email_type == 'out') {
|
|
$skip_fields['name'] = 1;
|
|
$skip_fields['date_start'] = 1;
|
|
}
|
|
$javascript->addAllFields('',$skip_fields);
|
|
$javascript->addToValidateBinaryDependency('parent_name', 'alpha', $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $mod_strings['LBL_MEMBER_OF'], 'false', '', 'parent_id');
|
|
$javascript->addToValidateBinaryDependency('parent_type', 'alpha', $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $mod_strings['LBL_MEMBER_OF'], 'false', '', 'parent_id');
|
|
|
|
|
|
|
|
|
|
$javascript->addToValidateBinaryDependency('user_name', 'alpha', $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $app_strings['LBL_ASSIGNED_TO'], 'false', '', 'assigned_user_id');
|
|
if($email_type == 'archived') {
|
|
$javascript->addFieldIsValidDate('date_start', 'date', $mod_strings['LBL_DATE'], $mod_strings['ERR_DATE_START'], true);
|
|
$javascript->addFieldIsValidTime('time_start', 'time', $mod_strings['LBL_TIME'], $mod_strings['ERR_TIME_START'], true);
|
|
}
|
|
echo $javascript->getScript();
|