mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
269 lines
10 KiB
PHP
Executable File
269 lines
10 KiB
PHP
Executable File
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero 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 Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero 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 Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
require_once('modules/EmailMarketing/Forms.php');
|
|
|
|
global $timedate;
|
|
global $app_strings;
|
|
global $app_list_strings;
|
|
global $mod_strings;
|
|
global $current_user;
|
|
|
|
// Unimplemented until jscalendar language files are fixed
|
|
// global $current_language;
|
|
// global $default_language;
|
|
// global $cal_codes;
|
|
|
|
$focus = BeanFactory::newBean('EmailMarketing');
|
|
if (isset($_REQUEST['record']) && $_REQUEST['record'] && isset($_REQUEST['parent_id']) && $_REQUEST['parent_id']) {
|
|
SugarApplication::redirect('index.php?action=WizardMarketing&module=Campaigns&return_module=Campaigns&return_action=WizardHome&return_id=' . $_REQUEST['parent_id'] . '&campaign_id=' . $_REQUEST['parent_id'] . '&marketing_id=' . $_REQUEST['record'] . '&func=editEmailMarketing');
|
|
return;
|
|
} else {
|
|
if (isset($_REQUEST['record']) && $_REQUEST['record']) {
|
|
$focus->retrieve($_REQUEST['record']);
|
|
}
|
|
}
|
|
|
|
if (isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
|
|
$focus->id = "";
|
|
}
|
|
global $theme;
|
|
|
|
|
|
|
|
$GLOBALS['log']->info("EmailMarketing Edit View");
|
|
$xtpl=new XTemplate('modules/EmailMarketing/EditView.html');
|
|
if (!ACLController::checkAccess('EmailTemplates', 'edit', true)) {
|
|
unset($mod_strings['LBL_CREATE_EMAIL_TEMPLATE']);
|
|
unset($mod_strings['LBL_EDIT_EMAIL_TEMPLATE']);
|
|
}
|
|
$xtpl->assign("MOD", $mod_strings);
|
|
$xtpl->assign("APP", $app_strings);
|
|
$xtpl->assign("THEME", (string)SugarThemeRegistry::current());
|
|
// 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("USER_DATEFORMAT", '('. $timedate->get_user_date_format().')');
|
|
$xtpl->assign("CALENDAR_DATEFORMAT", $timedate->get_cal_date_format());
|
|
$time_ampm = $timedate->AMPMMenu('', $focus->time_start);
|
|
$xtpl->assign("TIME_MERIDIEM", $time_ampm);
|
|
|
|
if (isset($_REQUEST['return_module'])) {
|
|
$xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']);
|
|
} else {
|
|
$xtpl->assign("RETURN_MODULE", 'Campaigns');
|
|
}
|
|
if (isset($_REQUEST['return_action'])) {
|
|
$xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']);
|
|
} else {
|
|
$xtpl->assign("RETURN_ACTION", 'DetailView');
|
|
}
|
|
if (isset($_REQUEST['return_id'])) {
|
|
$xtpl->assign("RETURN_ID", $_REQUEST['return_id']);
|
|
} else {
|
|
if (!empty($focus->campaign_id)) {
|
|
$xtpl->assign("RETURN_ID", $focus->campaign_id);
|
|
}
|
|
}
|
|
|
|
if ($focus->campaign_id) {
|
|
$campaign_id=$focus->campaign_id;
|
|
} else {
|
|
$campaign_id=$_REQUEST['campaign_id'];
|
|
}
|
|
$xtpl->assign("CAMPAIGN_ID", $campaign_id);
|
|
|
|
if (empty($time_ampm) || empty($focus->time_start)) {
|
|
$time_start = $focus->time_start;
|
|
} else {
|
|
$split = $timedate->splitTime($focus->time_start, $timedate->get_time_format());
|
|
$time_start = $split['h'].$timedate->timeSeparator().$split['m'];
|
|
}
|
|
$xtpl->assign("PRINT_URL", "index.php?".$GLOBALS['request_string']);
|
|
$xtpl->assign("JAVASCRIPT", get_set_focus_js().get_validate_record_js());
|
|
$xtpl->assign("DATE_ENTERED", $focus->date_entered);
|
|
$xtpl->assign("DATE_MODIFIED", $focus->date_modified);
|
|
$xtpl->assign("ID", $focus->id);
|
|
$xtpl->assign("NAME", $focus->name);
|
|
$xtpl->assign("FROM_NAME", $focus->from_name);
|
|
$xtpl->assign("FROM_ADDR", $focus->from_addr);
|
|
isValidEmailAddress($focus->from_addr);
|
|
$xtpl->assign("REPLY_NAME", $focus->reply_to_name);
|
|
$xtpl->assign("REPLY_ADDR", $focus->reply_to_addr);
|
|
$xtpl->assign("DATE_START", $focus->date_start);
|
|
$xtpl->assign("TIME_START", $time_start);
|
|
$xtpl->assign("TIME_FORMAT", '('. $timedate->get_user_time_format().')');
|
|
|
|
$email_templates_arr = get_bean_select_array(true, 'EmailTemplate', 'name', "(type IS NULL OR type='' OR type='campaign')", 'name');
|
|
if ($focus->template_id) {
|
|
$xtpl->assign("TEMPLATE_ID", $focus->template_id);
|
|
$xtpl->assign("EMAIL_TEMPLATE_OPTIONS", get_select_options_with_id($email_templates_arr, $focus->template_id));
|
|
$xtpl->assign("EDIT_TEMPLATE", "visibility:inline");
|
|
} else {
|
|
$xtpl->assign("EMAIL_TEMPLATE_OPTIONS", get_select_options_with_id($email_templates_arr, ""));
|
|
$xtpl->assign("EDIT_TEMPLATE", "visibility:hidden");
|
|
}
|
|
|
|
//include campaign utils..
|
|
require_once('modules/Campaigns/utils.php');
|
|
if (empty($_REQUEST['campaign_name'])) {
|
|
$campaign = BeanFactory::newBean('Campaigns');
|
|
$campaign->retrieve($campaign_id);
|
|
$campaign_name=$campaign->name;
|
|
} else {
|
|
$campaign_name=$_REQUEST['campaign_name'];
|
|
}
|
|
|
|
$params = array();
|
|
$params[] = "<a href='index.php?module=Campaigns&action=index'>{$mod_strings['LNK_CAMPAIGN_LIST']}</a>";
|
|
$params[] = "<a href='index.php?module=Campaigns&action=DetailView&record={$campaign_id}'>{$campaign_name}</a>";
|
|
if (empty($focus->id)) {
|
|
$params[] = $GLOBALS['app_strings']['LBL_CREATE_BUTTON_LABEL']." ".$mod_strings['LBL_MODULE_NAME'];
|
|
} else {
|
|
$params[] = "<a href='index.php?module={$focus->module_dir}&action=DetailView&record={$focus->id}'>{$focus->name}</a>";
|
|
$params[] = $GLOBALS['app_strings']['LBL_EDIT_BUTTON_LABEL'];
|
|
}
|
|
|
|
echo getClassicModuleTitle($focus->module_dir, $params, true);
|
|
$scope_options=get_message_scope_dom($campaign_id, $campaign_name, $focus->db);
|
|
$prospectlists=array();
|
|
if (isset($focus->all_prospect_lists) && $focus->all_prospect_lists==1) {
|
|
$xtpl->assign("ALL_PROSPECT_LISTS_CHECKED", "checked");
|
|
$xtpl->assign("MESSAGE_FOR_DISABLED", "disabled");
|
|
} else {
|
|
//get select prospect list.
|
|
if (!empty($focus->id)) {
|
|
$focus->load_relationship('prospectlists');
|
|
$prospectlists=$focus->prospectlists->get();
|
|
};
|
|
}
|
|
if (empty($prospectlists)) {
|
|
$prospectlists=array();
|
|
}
|
|
if (empty($scope_options)) {
|
|
$scope_options=array();
|
|
}
|
|
$xtpl->assign("SCOPE_OPTIONS", get_select_options_with_id($scope_options, $prospectlists));
|
|
|
|
$emails=array();
|
|
$mailboxes=get_campaign_mailboxes($emails);
|
|
$mailboxes_with_from_name = get_campaign_mailboxes($emails, false);
|
|
|
|
//add empty options.
|
|
$emails['']='nobody@example.com';
|
|
$mailboxes['']='';
|
|
|
|
//inbound_email_id
|
|
$default_email_address='nobody@example.com';
|
|
$from_emails = '';
|
|
foreach ($mailboxes_with_from_name as $id=>$name) {
|
|
if (!empty($from_emails)) {
|
|
$from_emails.=',';
|
|
}
|
|
if ($id=='') {
|
|
$from_emails.="'EMPTY','$name','$emails[$id]'";
|
|
} else {
|
|
$from_emails.="'$id','$name','$emails[$id]'";
|
|
}
|
|
if ($id==$focus->inbound_email_id) {
|
|
$default_email_address=$emails[$id];
|
|
}
|
|
}
|
|
$xtpl->assign("FROM_EMAILS", $from_emails);
|
|
$xtpl->assign("DEFAULT_FROM_EMAIL", $default_email_address);
|
|
|
|
if (empty($focus->inbound_email_id)) {
|
|
$xtpl->assign("MAILBOXES", get_select_options_with_id($mailboxes, ''));
|
|
} else {
|
|
$xtpl->assign("MAILBOXES", get_select_options_with_id($mailboxes, $focus->inbound_email_id));
|
|
}
|
|
|
|
$xtpl->assign("STATUS_OPTIONS", get_select_options_with_id($app_list_strings['email_marketing_status_dom'], $focus->status));
|
|
|
|
//pass in info to populate from/reply address info
|
|
require_once('modules/Campaigns/utils.php');
|
|
$json = getJSONobj();
|
|
$IEStoredOptions = get_campaign_mailboxes_with_stored_options();
|
|
$IEStoredOptionsJSON = (!empty($IEStoredOptions)) ? $json->encode($IEStoredOptions, false) : 'new Object()';
|
|
$xtpl->assign("IEStoredOptions", $IEStoredOptionsJSON);
|
|
|
|
|
|
function getOutboundEmailAccountOptions()
|
|
{
|
|
global $mod_strings;
|
|
// $ret = array(
|
|
// 0 => $mod_strings['LBL_OUTBOUND_EMAIL_ACCOUNT_DEFAULT'],
|
|
// );
|
|
$ret = [];
|
|
$oeaList = BeanFactory::getBean('OutboundEmailAccounts')->get_full_list();
|
|
foreach ($oeaList as $oea) {
|
|
$ret[$oea->id] = $oea->name;
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
function getOutboundEmailAccountSelected(EmailMarketing $emailMarketing)
|
|
{
|
|
$ret = 0;
|
|
if ($emailMarketing->outbound_email_id) {
|
|
$ret = $emailMarketing->outbound_email_id;
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
$outboundEmailAccountOptions = getOutboundEmailAccountOptions();
|
|
$outboundEmailAccountSelected = getOutboundEmailAccountSelected($focus);
|
|
$outboundEmailAccountOptionsHTML = get_select_options_with_id($outboundEmailAccountOptions, $outboundEmailAccountSelected ? $outboundEmailAccountSelected : '');
|
|
$xtpl->assign('outboundEmailAccountOptionsHTML', $outboundEmailAccountOptionsHTML);
|
|
|
|
$xtpl->parse("main");
|
|
$xtpl->out("main");
|
|
|
|
|
|
|
|
$javascript = new javascript();
|
|
$javascript->setFormName('EditView');
|
|
$javascript->setSugarBean($focus);
|
|
$javascript->addAllFields('');
|
|
echo $javascript->getScript();
|