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