]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/EmailTemplates/EditView.php
Release 6.1.4
[Github/sugarcrm.git] / modules / EmailTemplates / EditView.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM 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[] = "<span class='pointer'>&raquo;</span>".$GLOBALS['app_strings']['LBL_CREATE_BUTTON_LABEL'];
106 }else{
107         $params[] = "<span class='pointer'>&raquo;</span><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         if(!$inboundEmail){
245                 $xtpl->parse("main.NoInbound.variable_button");
246         }
247         ///////////////////////////////////////
248         ////    CAMPAIGNS
249         if($has_campaign || $inboundEmail) {
250                 $xtpl->assign("INPOPUPWINDOW",'true');  
251                 $xtpl->assign("INSERT_URL_ONCLICK", "insert_variable_html_link(document.EditView.tracker_url.value)");
252                 if($has_campaign){
253                   $campaign_urls=get_campaign_urls($_REQUEST['campaign_id']);
254                 }
255                 if(!empty($campaign_urls)) {
256                         $xtpl->assign("DEFAULT_URL_TEXT",key($campaign_urls)); 
257                 }
258             if($has_campaign){
259                   $xtpl->assign("TRACKER_KEY_OPTIONS", get_select_options_with_id($campaign_urls, null));
260                   $xtpl->parse("main.NoInbound.tracker_url");
261             }
262         }
263         
264         // The insert variable drodown should be conditionally displayed.
265         // If it's campaign then hide the Account. 
266         if($has_campaign) {
267             $dropdown="<option value='Contacts'>
268                                                 ".$mod_strings['LBL_CONTACT_AND_OTHERS']."
269                                </option>";
270              $xtpl->assign("DROPDOWN",$dropdown);
271              $xtpl->assign("DEFAULT_MODULE",'Contacts');
272          //$xtpl->assign("CAMPAIGN_POPUP_JS", '<script type="text/javascript" src="include/javascript/sugar_3.js"></script>');                           
273         } else {
274              $dropdown="<option value='Accounts'>
275                                                 ".$mod_strings['LBL_ACCOUNT']."
276                                </option>
277                                <option value='Contacts'>
278                                                 ".$mod_strings['LBL_CONTACT_AND_OTHERS']."
279                                </option>
280                                <option value='Users'>
281                                                 ".$mod_strings['LBL_USERS']."
282                                </option>";
283                 $xtpl->assign("DROPDOWN",$dropdown);      
284                 $xtpl->assign("DEFAULT_MODULE",'Accounts');
285         }
286         ////    END CAMPAIGNS
287         ///////////////////////////////////////
288
289         ///////////////////////////////////////
290         ////    ATTACHMENTS
291         $attachments = '';
292         if(!empty($focus->id)) {
293             $etid = $focus->id;
294         } elseif(!empty($old_id)) {
295             $xtpl->assign('OLD_ID', $old_id);
296             $etid = $old_id;
297         }
298         if(!empty($etid)) {
299             $note = new Note();
300             $where = "notes.parent_id='{$etid}' AND notes.filename IS NOT NULL";
301             $notes_list = $note->get_full_list("", $where,true);
302         
303             if(!isset($notes_list)) {
304                 $notes_list = array();
305             }
306             for($i = 0;$i < count($notes_list);$i++) {
307                 $the_note = $notes_list[$i];
308                 if( empty($the_note->filename)) {
309                     continue;
310                 }
311                 $secureLink = 'index.php?entryPoint=download&id='.$the_note->id.'&type=Notes';
312                 $attachments .= '<input type="checkbox" name="remove_attachment[]" value="'.$the_note->id.'"> '.$app_strings['LNK_REMOVE'].'&nbsp;&nbsp;';
313                 $attachments .= '<a href="'.$secureLink.'" target="_blank">'. $the_note->filename .'</a><br>';
314             }
315         }
316         $attJs  = '<script type="text/javascript">';
317         $attJs .= 'var file_path = "'.$sugar_config['site_url'].'/'.$sugar_config['upload_dir'].'";';
318         $attJs .= 'var lnk_remove = "'.$app_strings['LNK_REMOVE'].'";';
319         $attJs .= '</script>';
320         $xtpl->assign('ATTACHMENTS', $attachments);
321         $xtpl->assign('ATTACHMENTS_JAVASCRIPT', $attJs);
322
323         ////    END ATTACHMENTS
324         ///////////////////////////////////////
325         
326         // done and parse
327         $xtpl->parse("main.textarea");
328 }
329
330 //Add Custom Fields
331 require_once('modules/DynamicFields/templates/Files/EditView.php');
332 if(!$inboundEmail){
333     $xtpl->parse("main.NoInbound");
334     $xtpl->parse("main.NoInbound1");
335     $xtpl->parse("main.NoInbound2");
336     $xtpl->parse("main.NoInbound3");
337     $xtpl->parse("main.NoInbound4");
338     $xtpl->parse("main.NoInbound5");
339 }
340 $xtpl->parse("main");
341
342 $xtpl->out("main");
343
344 $javascript = new javascript();
345 $javascript->setFormName('EditView');
346 $javascript->setSugarBean($focus);
347 $javascript->addAllFields('');
348 echo $javascript->getScript();
349 ?>