]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Campaigns/WizardMarketingSave.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Campaigns / WizardMarketingSave.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:  TODO: To be written.
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
42  * All Rights Reserved.
43  * Contributor(s): ______________________________________..
44  ********************************************************************************/
45
46
47 global $timedate;
48 global $current_user;
49
50 $master = 'save';
51 if (isset($_REQUEST['wiz_home_next_step']) && !empty($_REQUEST['wiz_home_next_step'])) {
52     
53     if($_REQUEST['wiz_home_next_step']==3){
54         //user has chosen to save and schedule this campaign for email
55         $master = 'send';
56     }elseif($_REQUEST['wiz_home_next_step']==2){
57         //user has chosen to save and send this campaign in test mode
58         $master = 'test';
59     }else{
60         //user has chosen to simply save
61         $master  = 'save';        
62     }
63         
64 }else{
65      //default to just saving and exiting wizard
66      $master = 'save';   
67 }
68
69
70
71
72 $prefix = 'wiz_step3_';
73 $marketing = new EmailMarketing();
74 if (isset($_REQUEST['record']) && !empty($_REQUEST['record'])) {
75     $marketing->retrieve($_REQUEST['record']);
76 }
77 if(!$marketing->ACLAccess('Save')){
78         ACLController::displayNoAccess(true);
79         sugar_cleanup(true);
80 }
81
82 if (!empty($_REQUEST['assigned_user_id']) && ($marketing->assigned_user_id != $_REQUEST['assigned_user_id']) && ($_POST['assigned_user_id'] != $current_user->id)) {
83     $check_notify = TRUE;
84 }
85 else {
86     $check_notify = FALSE;
87 }
88
89     foreach ($_REQUEST as $key => $val) {
90               if((strstr($key, $prefix )) && (strpos($key, $prefix )== 0)){
91               $newkey  =substr($key, strlen($prefix)) ;
92               $_REQUEST[$newkey] = $val;
93          }               
94     }
95
96     foreach ($_REQUEST as $key => $val) {
97               if((strstr($key, $prefix )) && (strpos($key, $prefix )== 0)){
98               $newkey  =substr($key, strlen($prefix)) ;
99               $_REQUEST[$newkey] = $val;
100          }               
101     }
102
103 if(!empty($_REQUEST['meridiem'])){
104     $_REQUEST['time_start'] = $timedate->merge_time_meridiem($_REQUEST['time_start'],$timedate->get_time_format(), $_REQUEST['meridiem']);
105 }
106
107 if(empty($_REQUEST['time_start'])) {
108   $_REQUEST['date_start'] = $_REQUEST['date_start'] . ' 00:00'; 
109 } else {
110   $_REQUEST['date_start'] = $_REQUEST['date_start'] . ' ' . $_REQUEST['time_start'];
111 }
112
113 foreach($marketing->column_fields as $field)
114 {
115     if ($field == 'all_prospect_lists') {
116         if(isset($_REQUEST[$field]) && $_REQUEST[$field]='on' )
117         {
118             $marketing->$field = 1;
119         } else {
120             $marketing->$field = 0;         
121         }
122     }else {
123         if(isset($_REQUEST[$field]))
124         {
125             $value = $_REQUEST[$field];
126             $marketing->$field = trim($value);
127         }
128     }
129 }
130
131 foreach($marketing->additional_column_fields as $field)
132 {
133     if(isset($_REQUEST[$field]))
134     {
135         $value = $_REQUEST[$field];
136         $marketing->$field = $value;
137     }
138 }
139
140 $marketing->campaign_id = $_REQUEST['campaign_id'];
141 $marketing->save($check_notify);
142
143 //add prospect lists to campaign.
144 $marketing->load_relationship('prospectlists');
145 $prospectlists=$marketing->prospectlists->get();
146 if ($marketing->all_prospect_lists==1) {
147     //remove all related prospect lists.
148     if (!empty($prospectlists)) {
149         $marketing->prospectlists->delete($marketing->id);
150     }
151 } else {
152     if (isset($_REQUEST['message_for']) && is_array($_REQUEST['message_for'])) {
153         foreach ($_REQUEST['message_for'] as $prospect_list_id) {
154             
155             $key=array_search($prospect_list_id,$prospectlists);
156             if ($key === null or $key === false) {
157                 $marketing->prospectlists->add($prospect_list_id);          
158             } else {
159                 unset($prospectlists[$key]);
160             }
161         }
162         if (count($prospectlists) != 0) {
163             foreach ($prospectlists as $key=>$list_id) {
164                 $marketing->prospectlists->delete($marketing->id,$list_id);             
165             }   
166         }
167     }
168 }
169
170 //populate an array with marketing email id to use
171 $mass[] = $marketing->id; 
172 //if sending an email was chosen, set all the needed variables for queuing campaign
173
174 if($master !='save'){
175     $_REQUEST['mass']= $mass;
176     $_POST['mass']=$mass;
177     $_REQUEST['record'] =$marketing->campaign_id;
178     $_POST['record']=$marketing->campaign_id;
179     $_REQUEST['mode'] = $master;
180      $_POST['mode'] = $master; 
181      $_REQUEST['from_wiz']= 'true';
182     require_once('modules/Campaigns/QueueCampaign.php');
183 }
184
185 $header_URL = "Location: index.php?action=WizardHome&module=Campaigns&record=".$marketing->campaign_id;
186 $GLOBALS['log']->debug("about to post header URL of: $header_URL");
187 header($header_URL);
188
189 ?>