]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Campaigns/Subscriptions.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Campaigns / Subscriptions.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-2011 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 require_once('modules/Campaigns/utils.php');
47
48 global $mod_strings, $app_list_strings, $app_strings, $current_user, $import_bean_map;
49 global $import_file_name, $theme;
50
51 $focus = 0;
52 if(isset($_REQUEST['return_module'])){
53     if($_REQUEST['return_module'] == 'Contacts'){
54         
55         $focus = new Contact();
56     }
57     if($_REQUEST['return_module'] == 'Leads'){
58         
59         $focus = new Lead();
60     }
61     if($_REQUEST['return_module'] == 'Prospects'){
62         
63         $focus = new Prospect();
64     }        
65 }
66
67 if(isset($_REQUEST['record'])) {
68     $GLOBALS['log']->debug("In Subscriptions, about to retrieve record: ".$_REQUEST['record']);
69     $result = $focus->retrieve($_REQUEST['record']);
70     if($result == null)
71     {
72         sugar_die($app_strings['ERROR_NO_RECORD']);
73     }
74 }
75
76
77 $this->ss->assign("MOD", $mod_strings);
78 $this->ss->assign("APP", $app_strings);
79
80 if(isset($_REQUEST['return_module'])){$this->ss->assign("RETURN_MODULE", $_REQUEST['return_module']);}
81 if(isset($_REQUEST['return_id'])){$this->ss->assign("RETURN_ID", $_REQUEST['return_id']);}
82 if(isset($_REQUEST['return_action'])){$this->ss->assign("RETURN_ACTION", $_REQUEST['return_action']);}
83 if(isset($_REQUEST['record'])){$this->ss->assign("RECORD", $_REQUEST['record']);}
84
85 //if subsaction has been set, then process subscriptions
86 if(isset($_REQUEST['subs_action'])){manageSubscriptions($focus);}
87
88 //$title = $GLOBALS['app_strings']['LBL_MANAGE_SUBSCRIPTIONS_FOR'].$focus->name;
89 $params = array();
90 $params[]  = "<a href='index.php?module={$focus->module_dir}&action=index'>{$focus->module_dir}</a>";
91 $params[] = "<a href='index.php?module={$focus->module_dir}&action=DetailView&record={$focus->id}'>{$focus->name}</a>";
92 $params[] = $mod_strings['LBL_MANAGE_SUBSCRIPTIONS_TITLE'];
93 $title = getClassicModuleTitle($focus->module_dir, $params, true);
94 $orig_vals_str = printOriginalValues($focus);    
95 $orig_vals_array = constructDDSubscriptionList($focus);
96
97 $this->ss->assign('APP', $GLOBALS['app_strings']);
98 $this->ss->assign('MOD', $GLOBALS['mod_strings']);
99 $this->ss->assign('title',  $title);
100
101 $this->ss->assign('enabled_subs', $orig_vals_array[0]);
102 $this->ss->assign('disabled_subs', $orig_vals_array[1]);
103 $this->ss->assign('enabled_subs_string', $orig_vals_str[0]);
104 $this->ss->assign('disabled_subs_string', $orig_vals_str[1]);
105
106 echo $this->ss->fetch('modules/Campaigns/Subscriptions.tpl');
107
108
109
110
111 /*
112  *This function constructs Drag and Drop multiselect box of subscriptions for display in manage subscription form  
113 */
114 function constructDDSubscriptionList($focus,$classname=''){
115 require_once("include/templates/TemplateDragDropChooser.php");    
116 global $mod_strings;
117 $unsubs_arr = ''; 
118 $subs_arr =  '';
119
120 // Lets start by creating the subscription and unsubscription arrays 
121     $subscription_arrays = get_subscription_lists($focus);
122     $unsubs_arr = $subscription_arrays['unsubscribed']; 
123     $subs_arr =  $subscription_arrays['subscribed'];
124
125     $comb_array = array();
126         $comb_array [0] = array();
127         $comb_array [1] = array();
128
129     foreach ($subs_arr as $key=>$val){
130         $comb_array [0][$val] = $key;
131     }    
132
133         
134         foreach ($unsubs_arr as $key=>$val){
135         $comb_array [1][$val] = $key;
136     }
137
138     return $comb_array ;  
139        
140 }
141
142
143
144 /*
145  *This function constructs multiselect box of subscriptions for display in manage subscription form  
146 */
147 function printOriginalValues($focus){
148     global $app_strings;
149     $unsubs_arr = ''; 
150     $subs_arr =  '';
151     $return_arr =  '';
152         
153      // Lets start by creating the subscription and unsubscription arrays 
154         $subscription_arrays = get_subscription_lists($focus);
155         $unsubs_arr = $subscription_arrays['unsubscribed']; 
156         $subs_arr =  $subscription_arrays['subscribed'];
157     
158 //    ORIG_UNSUBS_VALUES
159         $unsubs_vals = ' ';
160         $subs_vals = ' ';
161         foreach($subs_arr as $name => $id){
162             $subs_vals .= ", $id";
163         }
164         $return_arr[]=$subs_vals;
165
166         foreach($unsubs_arr as $name => $id){
167             $unsubs_vals .= ", $id";
168         }
169
170         $return_arr[]=$unsubs_vals;
171
172         return $return_arr;        
173     }
174     
175
176 /*
177  * Perform Subscription management work.  This function processes selected subscriptions and calls the
178  * right methods to subscribe or unsubscribe the user
179  * */
180
181 function manageSubscriptions($focus){
182
183
184     //Process Subscription Lists first
185     //compare current list of subscriptions to original list and see if there are any additions
186     $orig_subscription_arr = array();
187     $curr_subscription_arr = array();
188     //build array of original subscriptions
189     if(isset($_REQUEST['orig_enabled_values'])  && ! empty($_REQUEST['orig_enabled_values'])){
190      $orig_subscription_arr = explode(",", $_REQUEST['orig_enabled_values']);
191      $orig_subscription_arr = process_subscriptions($orig_subscription_arr);   
192     }        
193
194     //build array of current subscriptions
195     if(isset($_REQUEST['enabled_subs'])  && ! empty($_REQUEST['enabled_subs'])){
196      $curr_subscription_arr = explode(",", $_REQUEST['enabled_subs']);
197      $curr_subscription_arr = process_subscriptions($curr_subscription_arr);   
198     }        
199
200     //compare both arrays and find differences
201     $i=0;
202     while($i<(count($curr_subscription_arr)/2)){    
203         //if current subscription existed in original subscription list, do nothing
204         if(in_array($curr_subscription_arr['campaign'.$i], $orig_subscription_arr)){
205             //nothing to process
206         }else{
207          //current subscription is new, so subscribe
208             subscribe($curr_subscription_arr['campaign'.$i], $curr_subscription_arr['prospect_list'.$i], $focus);
209         }
210         $i = $i +1;   
211     }        
212
213     //Now process UnSubscription Lists first
214     //compare current list of subscriptions to original list and see if there are any additions
215     $orig_unsubscription_arr = array();
216     $curr_unsubscription_arr = array();
217
218     //build array of original subscriptions
219     if(isset($_REQUEST['orig_disabled_values'])  && ! empty($_REQUEST['orig_disabled_values'])){
220      $orig_unsubscription_arr = explode(",", $_REQUEST['orig_disabled_values']);
221      $orig_unsubscription_arr = process_subscriptions($orig_unsubscription_arr);   
222     }        
223
224     //build array of current subscriptions
225     if(isset($_REQUEST['disabled_subs'])  && ! empty($_REQUEST['disabled_subs'])){
226      $curr_unsubscription_arr = explode(",", $_REQUEST['disabled_subs']);
227      $curr_unsubscription_arr = process_subscriptions($curr_unsubscription_arr);   
228     }        
229     //compare both arrays and find differences
230     $i=0;
231     while($i<(count($curr_unsubscription_arr)/2)){    
232         //if current subscription existed in original subscription list, do nothing
233         if(in_array($curr_unsubscription_arr['campaign'.$i], $orig_unsubscription_arr)){
234             //nothing to process
235         }else{
236          //current subscription is new, so subscribe
237             unsubscribe($curr_unsubscription_arr['campaign'.$i], $focus);
238         }
239         $i = $i +1;   
240     }
241     
242 }
243
244 ?>