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