Files
crm.twinpol.com/modules/Campaigns/WizardMarketingSave.php
2025-05-12 15:44:39 +00:00

188 lines
6.7 KiB
PHP
Executable File

<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
*
* 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. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
/*********************************************************************************
* Description: TODO: To be written.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
* All Rights Reserved.
* Contributor(s): ______________________________________..
********************************************************************************/
global $timedate;
global $current_user;
$master = 'save';
if (isset($_REQUEST['wiz_home_next_step']) && !empty($_REQUEST['wiz_home_next_step'])) {
if($_REQUEST['wiz_home_next_step']==3){
//user has chosen to save and schedule this campaign for email
$master = 'send';
}elseif($_REQUEST['wiz_home_next_step']==2){
//user has chosen to save and send this campaign in test mode
$master = 'test';
}else{
//user has chosen to simply save
$master = 'save';
}
}else{
//default to just saving and exiting wizard
$master = 'save';
}
$prefix = 'wiz_step3_';
$marketing = new EmailMarketing();
if (isset($_REQUEST['record']) && !empty($_REQUEST['record'])) {
$marketing->retrieve($_REQUEST['record']);
}
if(!$marketing->ACLAccess('Save')){
ACLController::displayNoAccess(true);
sugar_cleanup(true);
}
if (!empty($_REQUEST['assigned_user_id']) && ($marketing->assigned_user_id != $_REQUEST['assigned_user_id']) && ($_POST['assigned_user_id'] != $current_user->id)) {
$check_notify = TRUE;
}
else {
$check_notify = FALSE;
}
foreach ($_REQUEST as $key => $val) {
if((strstr($key, $prefix )) && (strpos($key, $prefix )== 0)){
$newkey =substr($key, strlen($prefix)) ;
$_REQUEST[$newkey] = $val;
}
}
foreach ($_REQUEST as $key => $val) {
if((strstr($key, $prefix )) && (strpos($key, $prefix )== 0)){
$newkey =substr($key, strlen($prefix)) ;
$_REQUEST[$newkey] = $val;
}
}
if(!empty($_REQUEST['meridiem'])){
$_REQUEST['time_start'] = $timedate->merge_time_meridiem($_REQUEST['time_start'],$timedate->get_time_format(true), $_REQUEST['meridiem']);
}
if(empty($_REQUEST['time_start'])) {
$_REQUEST['date_start'] = $_REQUEST['date_start'] . ' 00:00';
} else {
$_REQUEST['date_start'] = $_REQUEST['date_start'] . ' ' . $_REQUEST['time_start'];
}
foreach($marketing->column_fields as $field)
{
if ($field == 'all_prospect_lists') {
if(isset($_REQUEST[$field]) && $_REQUEST[$field]='on' )
{
$marketing->$field = 1;
} else {
$marketing->$field = 0;
}
}else {
if(isset($_REQUEST[$field]))
{
$value = $_REQUEST[$field];
$marketing->$field = trim($value);
}
}
}
foreach($marketing->additional_column_fields as $field)
{
if(isset($_REQUEST[$field]))
{
$value = $_REQUEST[$field];
$marketing->$field = $value;
}
}
$marketing->campaign_id = $_REQUEST['campaign_id'];
$marketing->save($check_notify);
//add prospect lists to campaign.
$marketing->load_relationship('prospectlists');
$prospectlists=$marketing->prospectlists->get();
if ($marketing->all_prospect_lists==1) {
//remove all related prospect lists.
if (!empty($prospectlists)) {
$marketing->prospectlists->delete($marketing->id);
}
} else {
if (isset($_REQUEST['message_for']) && is_array($_REQUEST['message_for'])) {
foreach ($_REQUEST['message_for'] as $prospect_list_id) {
$key=array_search($prospect_list_id,$prospectlists);
if ($key === null or $key === false) {
$marketing->prospectlists->add($prospect_list_id);
} else {
unset($prospectlists[$key]);
}
}
if (count($prospectlists) != 0) {
foreach ($prospectlists as $key=>$list_id) {
$marketing->prospectlists->delete($marketing->id,$list_id);
}
}
}
}
//populate an array with marketing email id to use
$mass[] = $marketing->id;
//if sending an email was chosen, set all the needed variables for queuing campaign
if($master !='save'){
$_REQUEST['mass']= $mass;
$_POST['mass']=$mass;
$_REQUEST['record'] =$marketing->campaign_id;
$_POST['record']=$marketing->campaign_id;
$_REQUEST['mode'] = $master;
$_POST['mode'] = $master;
$_REQUEST['from_wiz']= 'true';
require_once('modules/Campaigns/QueueCampaign.php');
}
$header_URL = "Location: index.php?action=WizardHome&module=Campaigns&record=".$marketing->campaign_id;
$GLOBALS['log']->debug("about to post header URL of: $header_URL");
header($header_URL);
?>