]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Emails/DetailView.php
Release 6.1.4
[Github/sugarcrm.git] / modules / Emails / DetailView.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 ///////////////////////////////////////////////////////////////////////////////
47 ////    CANCEL HANDLING
48 if(!isset($_REQUEST['record']) || empty($_REQUEST['record'])) {
49         header("Location: index.php?module=Emails&action=index");
50 }
51 ////    CANCEL HANDLING
52 ///////////////////////////////////////////////////////////////////////////////
53
54
55 require_once('include/DetailView/DetailView.php');
56 global $gridline;
57 global $app_strings;
58
59 // SETTING DEFAULTS
60 $focus          = new Email();
61 $detailView     = new DetailView();
62 $offset         = 0;
63 $email_type     = 'archived';
64
65 ///////////////////////////////////////////////////////////////////////////////
66 ////    TO HANDLE 'NEXT FREE'
67 if(!empty($_REQUEST['next_free']) && $_REQUEST['next_free'] == true) {
68         $_REQUEST['record'] = $focus->getNextFree();
69 }
70 ////    END 'NEXT FREE'
71 ///////////////////////////////////////////////////////////////////////////////
72
73 if (isset($_REQUEST['offset']) or isset($_REQUEST['record'])) {
74         $result = $detailView->processSugarBean("EMAIL", $focus, $offset);
75         if($result == null) {
76             sugar_die($app_strings['ERROR_NO_RECORD']);
77         }
78         $focus=$result;
79 } else {
80         header("Location: index.php?module=Emails&action=index");
81         die();
82 }
83
84 /* if the Email status is draft, say as a saved draft to a Lead/Case/etc.,
85  * don't show detail view. go directly to EditView */
86 if($focus->status == 'draft') {
87         //header('Location: index.php?module=Emails&action=EditView&record='.$_REQUEST['record']);
88         //die();
89 }
90
91
92 //needed when creating a new email with default values passed in
93 if (isset($_REQUEST['contact_name']) && is_null($focus->contact_name)) {
94         $focus->contact_name = $_REQUEST['contact_name'];
95 }
96 if (isset($_REQUEST['contact_id']) && is_null($focus->contact_id)) {
97         $focus->contact_id = $_REQUEST['contact_id'];
98 }
99 if (isset($_REQUEST['opportunity_name']) && is_null($focus->parent_name)) {
100         $focus->parent_name = $_REQUEST['opportunity_name'];
101 }
102 if (isset($_REQUEST['opportunity_id']) && is_null($focus->parent_id)) {
103         $focus->parent_id = $_REQUEST['opportunity_id'];
104 }
105 if (isset($_REQUEST['account_name']) && is_null($focus->parent_name)) {
106         $focus->parent_name = $_REQUEST['account_name'];
107 }
108 if (isset($_REQUEST['account_id']) && is_null($focus->parent_id)) {
109         $focus->parent_id = $_REQUEST['account_id'];
110 }
111
112 // un/READ flags
113 if (!empty($focus->status)) {
114         // "Read" flag for InboundEmail
115         if($focus->status == 'unread') {
116                 // creating a new instance here to avoid data corruption below
117                 $e = new Email();
118                 $e->retrieve($focus->id);
119                 $e->status = 'read';
120                 $e->save();
121                 $email_type = $e->status;
122         } else {
123                 $email_type = $focus->status;
124         }
125
126 } elseif (!empty($_REQUEST['type'])) {
127         $email_type = $_REQUEST['type'];
128 }
129
130 ///////////////////////////////////////////////////////////////////////////////
131 ////    OUTPUT
132 ///////////////////////////////////////////////////////////////////////////////
133 echo "\n<p>\n";
134 $GLOBALS['log']->info("Email detail view");
135 if ($email_type == 'archived') {
136         echo get_module_title('Emails', $mod_strings['LBL_ARCHIVED_EMAIL'].": ".$focus->name, true);
137         $xtpl=new XTemplate ('modules/Emails/DetailView.html');
138 } else {
139         $xtpl=new XTemplate ('modules/Emails/DetailViewSent.html');
140         if($focus->type == 'out') {
141                 echo get_module_title('Emails', $mod_strings['LBL_SENT_MODULE_NAME'].": ".$focus->name, true);
142                 //$xtpl->assign('DISABLE_REPLY_BUTTON', 'NONE');
143         } elseif ($focus->type == 'draft') {
144                 $xtpl->assign('DISABLE_FORWARD_BUTTON', 'NONE');
145                 echo get_module_title('Emails', $mod_strings['LBL_LIST_FORM_DRAFTS_TITLE'].": ".$focus->name, true);
146         } elseif($focus->type == 'inbound') {
147                 echo get_module_title('Emails', $mod_strings['LBL_INBOUND_TITLE'].": ".$focus->name, true);
148         }
149 }
150 echo "\n</p>\n";
151
152
153
154 ///////////////////////////////////////////////////////////////////////////////
155 ////    RETURN NAVIGATION
156 $uri = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : 'index.php';
157 $start = $focus->getStartPage($uri);
158 if (isset($_REQUEST['return_id'])) { // coming from a subpanel, return_module|action is not set
159         $xtpl->assign('RETURN_ID', $_REQUEST['return_id']);
160         if (isset($_REQUEST['return_module']))  $xtpl->assign('RETURN_MODULE', $_REQUEST['return_module']);
161         else $xtpl->assign('RETURN_MODULE', 'Emails');
162         if (isset($_REQUEST['return_action']))  $xtpl->assign('RETURN_ACTION', $_REQUEST['return_action']);
163         else $xtpl->assign('RETURN_ACTION', 'DetailView');
164 }
165
166 if(isset($start['action']) && !empty($start['action'])) {
167         $xtpl->assign('DELETE_RETURN_ACTION', $start['action']);
168 }
169 if(isset($start['module']) && !empty($start['module'])) {
170         $xtpl->assign('DELETE_RETURN_MODULE', $start['module']);
171 }
172 if(isset($start['record']) && !empty($start['record'])) {
173         $xtpl->assign('DELETE_RETURN_ID', $start['record']);
174 }
175 // this is to support returning to My Inbox
176 if(isset($start['type']) && !empty($start['type'])) {
177         $xtpl->assign('DELETE_RETURN_TYPE', $start['type']);
178 }
179 if(isset($start['assigned_user_id']) && !empty($start['assigned_user_id'])) {
180         $xtpl->assign('DELETE_RETURN_ASSIGNED_USER_ID', $start['assigned_user_id']);
181 }
182
183
184
185 ////    END RETURN NAVIGATION
186 ///////////////////////////////////////////////////////////////////////////////
187
188
189 // DEFAULT TO TEXT IF NO HTML CONTENT:
190 $html = trim(from_html($focus->description_html));
191 if(empty($html)) {
192         $xtpl->assign('SHOW_PLAINTEXT', 'true');
193         $description = nl2br($focus->description);
194 } else {
195         $xtpl->assign('SHOW_PLAINTEXT', 'false');
196         $description = from_html($focus->description_html);
197 }
198 $show_subpanels=true;
199 //if the email is of type campaign, process the macros...using the values stored in the relationship table.
200 //this is is part of the feature that adds support for one email per campaign.
201 if ($focus->type=='campaign' and !empty($_REQUEST['parent_id']) and !empty($_REQUEST['parent_module'])) {
202     $show_subpanels=false;
203     $parent_id=$_REQUEST['parent_id'];
204
205         // cn: bug 14300 - emails_beans schema refactor - fixing query
206         $query="SELECT * FROM emails_beans WHERE email_id='{$focus->id}' AND bean_id='{$parent_id}' AND bean_module = '{$_REQUEST['parent_module']}' " ;
207
208     $res=$focus->db->query($query);
209     $row=$focus->db->fetchByAssoc($res);
210     if (!empty($row)) {
211         $campaign_data=$row['campaign_data'];
212         $macro_values=array();
213         if (!empty($campaign_data)) {
214             $macro_values=unserialize(from_html($campaign_data));
215         }
216
217         if (count($macro_values) > 0) {
218             $m_keys=array_keys($macro_values);
219             $m_values=array_values($macro_values);
220
221             $focus->name = str_replace($m_keys,$m_values,$focus->name);
222             $focus->description = str_replace($m_keys,$m_values,$focus->description);
223             $focus->description_html = str_replace($m_keys,$m_values,$focus->description_html);
224             if (!empty($macro_values['sugar_to_email_address'])) {
225                 $focus->to_addrs=$macro_values['sugar_to_email_address'];
226             }
227         }
228     }
229 }
230 //if not empty or set to test (from test campaigns)
231 if (!empty($focus->parent_type) && $focus->parent_type !='test') {
232         $xtpl->assign('PARENT_MODULE', $focus->parent_type);
233         $xtpl->assign('PARENT_TYPE_UNTRANSLATE', $focus->parent_type);
234     $xtpl->assign('PARENT_TYPE', $app_list_strings['record_type_display'][$focus->parent_type] . ':');
235 }
236
237 $to_addr = !empty($focus->to_addrs_names) ? htmlentities($focus->to_addrs_names) : nl2br($focus->to_addrs);
238 $from_addr = !empty($focus->from_addr_name) ? htmlentities($focus->from_addr_name) : nl2br($focus->from_addr);
239 $cc_addr = !empty($focus->cc_addrs_names) ? htmlentities($focus->cc_addrs_names) : nl2br($focus->cc_addrs);
240 $bcc_addr = !empty($focus->bcc_addrs_names) ? htmlentities($focus->bcc_addrs_names) : nl2br($focus->bcc_addrs);
241
242 $xtpl->assign('MOD', $mod_strings);
243 $xtpl->assign('APP', $app_strings);
244 $xtpl->assign('GRIDLINE', $gridline);
245 $xtpl->assign('PRINT_URL', 'index.php?'.$GLOBALS['request_string']);
246 $xtpl->assign('ID', $focus->id);
247 $xtpl->assign('TYPE', $email_type);
248 $xtpl->assign('PARENT_NAME', $focus->parent_name);
249 $xtpl->assign('PARENT_ID', $focus->parent_id);
250 $xtpl->assign('NAME', $focus->name);
251 $xtpl->assign('ASSIGNED_TO', $focus->assigned_user_name);
252 $xtpl->assign('DATE_MODIFIED', $focus->date_modified);
253 $xtpl->assign('DATE_ENTERED', $focus->date_entered);
254 $xtpl->assign('DATE_START', $focus->date_start);
255 $xtpl->assign('TIME_START', $focus->time_start);
256 $xtpl->assign('FROM', $from_addr);
257 $xtpl->assign('TO', $to_addr);
258 $xtpl->assign('CC', $cc_addr);
259 $xtpl->assign('BCC', $bcc_addr);
260 $xtpl->assign('CREATED_BY', $focus->created_by_name);
261 $xtpl->assign('MODIFIED_BY', $focus->modified_by_name);
262 $xtpl->assign('DESCRIPTION', nl2br($focus->description));
263 $xtpl->assign('DESCRIPTION_HTML', from_html($focus->description_html));
264 $xtpl->assign('DATE_SENT', $focus->date_entered);
265 $xtpl->assign('EMAIL_NAME', 'RE: '.$focus->name);
266 $xtpl->assign("TAG", $focus->listviewACLHelper());
267 if(!empty($focus->raw_source)) {
268         $xtpl->assign("RAW_METADATA", $focus->id);
269 } else {
270         $xtpl->assign("DISABLE_RAW_BUTTON", 'none');
271 }
272
273 if(!empty($focus->reply_to_email)) {
274         $replyTo = "
275                 <tr>
276         <td class=\"tabDetailViewDL\"><slot>".$mod_strings['LBL_REPLY_TO_NAME']."</slot></td>
277         <td colspan=3 class=\"tabDetailViewDF\"><slot>".$focus->reply_to_email."</slot></td>
278         </tr>";
279         $xtpl->assign("REPLY_TO", $replyTo);
280 }
281
282 ///////////////////////////////////////////////////////////////////////////////
283 ////    JAVASCRIPT VARS
284 $jsVars  = '';
285 $jsVars .= "var showRaw = '{$mod_strings['LBL_BUTTON_RAW_LABEL']}';";
286 $jsVars .= "var hideRaw = '{$mod_strings['LBL_BUTTON_RAW_LABEL_HIDE']}';";
287 $xtpl->assign("JS_VARS", $jsVars);
288
289
290 // ADMIN EDIT
291 if(is_admin($GLOBALS['current_user']) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){
292         $xtpl->assign("ADMIN_EDIT","<a href='index.php?action=index&module=DynamicLayout&from_action=".$_REQUEST['action'] ."&from_module=".$_REQUEST['module'] ."&record=".$_REQUEST['record']. "'>".SugarThemeRegistry::current()->getImage("EditLayout","border='0' alt='Edit Layout' align='bottom'")."</a>");
293 }
294
295 if(isset($_REQUEST['offset']) && !empty($_REQUEST['offset'])) { $offset = $_REQUEST['offset']; }
296 else $offset = 1;
297 $detailView->processListNavigation($xtpl, "EMAIL", $offset, false);
298
299
300
301 // adding custom fields:
302 require_once('modules/DynamicFields/templates/Files/DetailView.php');
303 $do_open = true;
304 if ($do_open) {
305         $xtpl->parse("main.open_source");
306 }
307
308 ///////////////////////////////////////////////////////////////////////////////
309 ////    NOTES (attachements, etc.)
310 ///////////////////////////////////////////////////////////////////////////////
311
312 $note = new Note();
313 $where = "notes.parent_id='{$focus->id}'";
314 //take in account if this is from campaign and the template id is stored in the macros.
315
316 if(isset($macro_values) && isset($macro_values['email_template_id'])){
317     $where = "notes.parent_id='{$macro_values['email_template_id']}'";
318 }
319 $notes_list = $note->get_full_list("notes.name", $where, true);
320
321 if(! isset($notes_list)) {
322         $notes_list = array();
323 }
324
325 $attachments = '';
326 for($i=0; $i<count($notes_list); $i++) {
327         $the_note = $notes_list[$i];
328         if(!empty($the_note->filename))
329         $attachments .= "<a href=\"index.php?entryPoint=download&id=".$the_note->id."&type=Notes\">".$the_note->name."</a><br />";
330 }
331
332 $xtpl->assign("ATTACHMENTS", $attachments);
333 $xtpl->parse("main");
334 $xtpl->out("main");
335
336 $sub_xtpl = $xtpl;
337 $old_contents = ob_get_contents();
338 ob_end_clean();
339 ob_start();
340 echo $old_contents;
341
342 ///////////////////////////////////////////////////////////////////////////////
343 ////    SUBPANELS
344 ///////////////////////////////////////////////////////////////////////////////
345 if ($show_subpanels) {
346     require_once('include/SubPanel/SubPanelTiles.php');
347     $subpanel = new SubPanelTiles($focus, 'Emails');
348     echo $subpanel->display();
349 }
350 ?>