]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/EmailTemplates/EditView.php
Release 6.2.2
[Github/sugarcrm.git] / modules / EmailTemplates / EditView.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 //if campaign_id is passed then we assume this is being invoked from the campaign module and in a popup.
49 $has_campaign=true;
50 $inboundEmail=true;
51 if (!isset($_REQUEST['campaign_id']) || empty($_REQUEST['campaign_id'])) {
52         $has_campaign=false;
53 }
54 if (!isset($_REQUEST['inboundEmail']) || empty($_REQUEST['inboundEmail'])) {
55     $inboundEmail=false;
56 }
57 $focus = new EmailTemplate();
58
59 if(isset($_REQUEST['record'])) {
60     $focus->retrieve($_REQUEST['record']);
61 }
62
63 $old_id = '';
64 if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
65     $old_id = $focus->id; // for attachments down below
66     $focus->id = "";
67 }
68
69
70
71 //setting default flag value so due date and time not required
72 if(!isset($focus->id)) $focus->date_due_flag = 1;
73
74 //needed when creating a new case with default values passed in
75 if(isset($_REQUEST['contact_name']) && is_null($focus->contact_name)) {
76     $focus->contact_name = $_REQUEST['contact_name'];
77 }
78 if(isset($_REQUEST['contact_id']) && is_null($focus->contact_id)) {
79     $focus->contact_id = $_REQUEST['contact_id'];
80 }
81 if(isset($_REQUEST['parent_name']) && is_null($focus->parent_name)) {
82     $focus->parent_name = $_REQUEST['parent_name'];
83 }
84 if(isset($_REQUEST['parent_id']) && is_null($focus->parent_id)) {
85     $focus->parent_id = $_REQUEST['parent_id'];
86 }
87 if(isset($_REQUEST['parent_type'])) {
88     $focus->parent_type = $_REQUEST['parent_type'];
89 }
90 elseif(!isset($focus->parent_type)) {
91     $focus->parent_type = $app_list_strings['record_type_default_key'];
92 }
93 if(isset($_REQUEST['filename']) && $_REQUEST['isDuplicate'] != 'true') {
94         $focus->filename = $_REQUEST['filename'];
95 }
96
97 if($has_campaign || $inboundEmail) {
98     insert_popup_header($theme);
99 }
100
101
102 $params = array();
103
104 if(empty($focus->id)){
105         $params[] = $GLOBALS['app_strings']['LBL_CREATE_BUTTON_LABEL'];
106 }else{
107         $params[] = "<a href='index.php?module={$focus->module_dir}&action=DetailView&record={$focus->id}'>{$focus->name}</a>";
108         $params[] = $GLOBALS['app_strings']['LBL_EDIT_BUTTON_LABEL'];
109 }
110
111 echo getClassicModuleTitle($focus->module_dir, $params, true);
112
113 $GLOBALS['log']->info("EmailTemplate detail view");
114
115 if($has_campaign || $inboundEmail) {
116         $xtpl=new XTemplate ('modules/EmailTemplates/EditView.html');
117 } else {
118         $xtpl=new XTemplate ('modules/EmailTemplates/EditViewMain.html');
119 } // else
120 $xtpl->assign("MOD", $mod_strings);
121 $xtpl->assign("APP", $app_strings);
122
123 $xtpl->assign("LBL_ACCOUNT",$app_list_strings['moduleList']['Accounts']);
124 $xtpl->parse("main.variable_option");
125
126 $returnAction = 'index';
127 if(isset($_REQUEST['return_module'])) $xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']);
128 if(isset($_REQUEST['return_action'])){
129         $xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']);
130         $returnAction = $_REQUEST['return_action'];
131 }
132 if(isset($_REQUEST['return_id'])) $xtpl->assign("RETURN_ID", $_REQUEST['return_id']);
133 // handle Create $module then Cancel
134 if(empty($_REQUEST['return_id'])) {
135     $xtpl->assign("RETURN_ACTION", 'index');
136 }
137
138 if ($has_campaign || $inboundEmail ) {
139     $cancel_script="window.close();";
140 }else {
141     $cancel_script="this.form.action.value='{$returnAction}'; this.form.module.value='{$_REQUEST['return_module']}';
142     this.form.record.value=";
143     if(empty($_REQUEST['return_id'])) {
144         $cancel_script="this.form.action.value='index'; this.form.module.value='{$_REQUEST['return_module']}';this.form.name.value='';this.form.description.value=''";
145     } else {
146         $cancel_script.="'{$_REQUEST['return_id']}'";
147     }
148 }
149
150 //Setup assigned user name
151 $popup_request_data = array(
152         'call_back_function' => 'set_return',
153         'form_name' => 'EditView',
154         'field_to_name_array' => array(
155                 'id' => 'assigned_user_id',
156                 'user_name' => 'assigned_user_name',
157                 ),
158         );
159 $json = getJSONobj();
160 $xtpl->assign('encoded_assigned_users_popup_request_data', $json->encode($popup_request_data));
161 if(!empty($focus->assigned_user_name))
162     $xtpl->assign("ASSIGNED_USER_NAME", $focus->assigned_user_name);
163
164 $xtpl->assign("assign_user_select", SugarThemeRegistry::current()->getImage('id-ff-select'));
165 $xtpl->assign("assign_user_clear", SugarThemeRegistry::current()->getImage('id-ff-clear'));
166 //Assign qsd script
167 require_once('include/QuickSearchDefaults.php');
168 $qsd = new QuickSearchDefaults();
169 $sqs_objects = array( 'EditView_assigned_user_name' => $qsd->getQSUser());
170 $quicksearch_js = '<script type="text/javascript" language="javascript">sqs_objects = ' . $json->encode($sqs_objects) . '; enableQS();</script>';
171
172 $xtpl->assign("CANCEL_SCRIPT", $cancel_script);
173 $xtpl->assign("PRINT_URL", "index.php?".$GLOBALS['request_string']);
174 $xtpl->assign("JAVASCRIPT", get_set_focus_js() . $quicksearch_js);
175
176 if(!is_file($GLOBALS['sugar_config']['cache_dir'] . 'jsLanguage/' . $GLOBALS['current_language'] . '.js')) {
177     require_once('include/language/jsLanguage.php');
178     jsLanguage::createAppStringsCache($GLOBALS['current_language']);
179 }
180 $jsLang = '<script type="text/javascript" src="' . $GLOBALS['sugar_config']['cache_dir'] . 'jsLanguage/' . $GLOBALS['current_language'] . '.js?s=' . $GLOBALS['sugar_version'] . '&c=' . $GLOBALS['sugar_config']['js_custom_version'] . '&j=' . $GLOBALS['sugar_config']['js_lang_version'] . '"></script>';
181 $xtpl->assign("JSLANG", $jsLang);
182
183 $xtpl->assign("ID", $focus->id);
184 if(isset($focus->name)) $xtpl->assign("NAME", $focus->name); else $xtpl->assign("NAME", "");
185 if(isset($focus->description)) $xtpl->assign("DESCRIPTION", $focus->description); else $xtpl->assign("DESCRIPTION", "");
186 if(isset($focus->subject)) $xtpl->assign("SUBJECT", $focus->subject); else $xtpl->assign("SUBJECT", "");
187 if( $focus->published == 'on')
188 {
189 $xtpl->assign("PUBLISHED","CHECKED");
190 }
191 //if text only is set to true, then make sure input is checked and value set to 1
192 if(isset($focus->text_only) && $focus->text_only){
193     $xtpl->assign("TEXTONLY_CHECKED","CHECKED");
194     $xtpl->assign("TEXTONLY_VALUE","1");
195 }else{//set value to 0
196     $xtpl->assign("TEXTONLY_VALUE","0");
197 }
198
199
200
201 $xtpl->assign("FIELD_DEFS_JS", $focus->generateFieldDefsJS());
202 $xtpl->assign("LBL_CONTACT",$app_list_strings['moduleList']['Contacts']);
203
204 global $current_user;
205 if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])) {
206     $record = '';
207     if(!empty($_REQUEST['record'])) {
208         $record =   $_REQUEST['record'];
209     }
210     $xtpl->assign("ADMIN_EDIT","<a href='index.php?action=index&module=DynamicLayout&from_action=" . $_REQUEST['action']
211         ."&from_module=".$_REQUEST['module'] ."&record=".$record. "'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' alt='Edit Layout' align='bottom'")."</a>");
212 }
213 if(isset($focus->parent_type) && $focus->parent_type != "") {
214     $change_parent_button = "<input title='".$app_strings['LBL_SELECT_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_SELECT_BUTTON_KEY']."'
215 tabindex='3' type='button' class='button' value='".$app_strings['LBL_SELECT_BUTTON_LABEL']."' name='button' LANGUAGE=javascript onclick='return
216 window.open(\"index.php?module=\"+ document.EditView.parent_type.value +
217 \"&action=Popup&html=Popup_picker&form=TasksEditView\",\"test\",\"width=600,height=400,resizable=1,scrollbars=1\");'>";
218     $xtpl->assign("CHANGE_PARENT_BUTTON", $change_parent_button);
219 }
220 if($focus->parent_type == "Account") {
221         $xtpl->assign("DEFAULT_SEARCH","&query=true&account_id=$focus->parent_id&account_name=".urlencode($focus->parent_name));
222 }
223
224 $xtpl->assign("DESCRIPTION", $focus->description);
225 $xtpl->assign("TYPE_OPTIONS", get_select_options_with_id($app_list_strings['record_type_display'], $focus->parent_type));
226 //$xtpl->assign("DEFAULT_MODULE","Accounts");
227
228 if(isset($focus->body)) $xtpl->assign("BODY", $focus->body); else $xtpl->assign("BODY", "");
229 if(isset($focus->body_html)) $xtpl->assign("BODY_HTML", $focus->body_html); else $xtpl->assign("BODY_HTML", "");
230
231
232 if(true) {
233     if ( !isTouchScreen() ) {
234         require_once("include/SugarTinyMCE.php");
235         $tiny = new SugarTinyMCE();
236         $tiny->defaultConfig['cleanup_on_startup']=true;
237         $tiny->defaultConfig['height']=600;
238         $tinyHtml = $tiny->getInstance();
239         $xtpl->assign("tiny", $tinyHtml);
240         }
241         ///////////////////////////////////////
242         ////    MACRO VARS
243         $xtpl->assign("INSERT_VARIABLE_ONCLICK", "insert_variable(document.EditView.variable_text.value)");
244
245     // bug 37255, included without condition
246     $xtpl->parse("main.NoInbound.variable_button");
247
248         ///////////////////////////////////////
249         ////    CAMPAIGNS
250         if($has_campaign || $inboundEmail) {
251                 $xtpl->assign("INPOPUPWINDOW",'true');
252                 $xtpl->assign("INSERT_URL_ONCLICK", "insert_variable_html_link(document.EditView.tracker_url.value)");
253                 if($has_campaign){
254                   $campaign_urls=get_campaign_urls($_REQUEST['campaign_id']);
255                 }
256                 if(!empty($campaign_urls)) {
257                         $xtpl->assign("DEFAULT_URL_TEXT",key($campaign_urls));
258                 }
259             if($has_campaign){
260                   $xtpl->assign("TRACKER_KEY_OPTIONS", get_select_options_with_id($campaign_urls, null));
261                   $xtpl->parse("main.NoInbound.tracker_url");
262             }
263         }
264
265         // The insert variable drodown should be conditionally displayed.
266         // If it's campaign then hide the Account.
267         if($has_campaign) {
268             $dropdown="<option value='Contacts'>
269                                                 ".$mod_strings['LBL_CONTACT_AND_OTHERS']."
270                                </option>";
271              $xtpl->assign("DROPDOWN",$dropdown);
272              $xtpl->assign("DEFAULT_MODULE",'Contacts');
273          //$xtpl->assign("CAMPAIGN_POPUP_JS", '<script type="text/javascript" src="include/javascript/sugar_3.js"></script>');
274         } else {
275              $dropdown="<option value='Accounts'>
276                                                 ".$mod_strings['LBL_ACCOUNT']."
277                                </option>
278                                <option value='Contacts'>
279                                                 ".$mod_strings['LBL_CONTACT_AND_OTHERS']."
280                                </option>
281                                <option value='Users'>
282                                                 ".$mod_strings['LBL_USERS']."
283                                </option>";
284                 $xtpl->assign("DROPDOWN",$dropdown);
285                 $xtpl->assign("DEFAULT_MODULE",'Accounts');
286         }
287         ////    END CAMPAIGNS
288         ///////////////////////////////////////
289
290         ///////////////////////////////////////
291         ////    ATTACHMENTS
292         $attachments = '';
293         if(!empty($focus->id)) {
294             $etid = $focus->id;
295         } elseif(!empty($old_id)) {
296             $xtpl->assign('OLD_ID', $old_id);
297             $etid = $old_id;
298         }
299         if(!empty($etid)) {
300             $note = new Note();
301             $where = "notes.parent_id='{$etid}' AND notes.filename IS NOT NULL";
302             $notes_list = $note->get_full_list("", $where,true);
303
304             if(!isset($notes_list)) {
305                 $notes_list = array();
306             }
307             for($i = 0;$i < count($notes_list);$i++) {
308                 $the_note = $notes_list[$i];
309                 if( empty($the_note->filename)) {
310                     continue;
311                 }
312                 $secureLink = 'index.php?entryPoint=download&id='.$the_note->id.'&type=Notes';
313                 $attachments .= '<input type="checkbox" name="remove_attachment[]" value="'.$the_note->id.'"> '.$app_strings['LNK_REMOVE'].'&nbsp;&nbsp;';
314                 $attachments .= '<a href="'.$secureLink.'" target="_blank">'. $the_note->filename .'</a><br>';
315             }
316         }
317         $attJs  = '<script type="text/javascript">';
318         $attJs .= 'var file_path = "'.$sugar_config['site_url'].'/'.$sugar_config['upload_dir'].'";';
319         $attJs .= 'var lnk_remove = "'.$app_strings['LNK_REMOVE'].'";';
320         $attJs .= '</script>';
321         $xtpl->assign('ATTACHMENTS', $attachments);
322         $xtpl->assign('ATTACHMENTS_JAVASCRIPT', $attJs);
323
324         ////    END ATTACHMENTS
325         ///////////////////////////////////////
326
327         // done and parse
328         $xtpl->parse("main.textarea");
329 }
330
331 //Add Custom Fields
332 require_once('modules/DynamicFields/templates/Files/EditView.php');
333 $xtpl->parse("main.NoInbound");
334 if(!$inboundEmail){
335     $xtpl->parse("main.NoInbound1");
336     $xtpl->parse("main.NoInbound2");
337     $xtpl->parse("main.NoInbound3");
338 }
339 $xtpl->parse("main.NoInbound4");
340 $xtpl->parse("main.NoInbound5");
341 $xtpl->parse("main");
342
343 $xtpl->out("main");
344
345 $javascript = new javascript();
346 $javascript->setFormName('EditView');
347 $javascript->setSugarBean($focus);
348 $javascript->addAllFields('');
349 echo $javascript->getScript();
350 ?>