]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Notes/controller.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Notes / controller.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 /*
38  * Created on Mar 23, 2007
39  *
40  * To change the template for this generated file go to
41  * Window - Preferences - PHPeclipse - PHP - Code Templates
42  */
43  require_once('include/MVC/Controller/SugarController.php');
44   
45   
46  class NotesController extends SugarController
47 {
48         function action_save(){
49                 require_once('include/upload_file.php');
50                 
51                 // CCL - Bugs 41103 and 43751.  41103 address the issue where the parent_id is set, but
52                 // the relate_id field overrides the relationship.  43751 fixes the problem where the relate_id and
53                 // parent_id are the same value (in which case it should just use relate_id) by adding the != check
54                 if ((!empty($_REQUEST['relate_id']) && !empty($_REQUEST['parent_id'])) && ($_REQUEST['relate_id'] != $_REQUEST['parent_id']))
55                 {
56                         $_REQUEST['relate_id'] = false;
57                 }
58                 
59                 $GLOBALS['log']->debug('PERFORMING NOTES SAVE');
60                 $upload_file = new UploadFile('uploadfile');
61                 $do_final_move = 0;
62                 if (isset($_FILES['uploadfile']) && $upload_file->confirm_upload())
63                 {
64                 if (!empty($this->bean->id) && !empty($_REQUEST['old_filename']) )
65                 {
66                  $upload_file->unlink_file($this->bean->id,$_REQUEST['old_filename']);
67                 }
68
69                 $this->bean->filename = $upload_file->get_stored_file_name();
70                 $this->bean->file_mime_type = $upload_file->mime_type;
71
72          $do_final_move = 1;
73                 }
74                 else if ( isset( $_REQUEST['old_filename']))
75                 {
76                  $this->bean->filename = $_REQUEST['old_filename'];
77                 }
78                 
79                 $check_notify = false;
80                 if(!empty($_POST['assigned_user_id']) &&
81                     (empty($this->bean->fetched_row) || $this->bean->fetched_row['assigned_user_id'] != $_POST['assigned_user_id']) &&
82                     ($_POST['assigned_user_id'] != $GLOBALS['current_user']->id)){
83                         $check_notify = true;
84                 }
85             $this->bean->save($check_notify);
86             
87                 if ($do_final_move)
88                 {
89                  $upload_file->final_move($this->bean->id);
90                 }
91                 else if ( ! empty($_REQUEST['old_id']))
92                 {
93                 $upload_file->duplicate_file($_REQUEST['old_id'], $this->bean->id, $this->bean->filename);
94                 }
95         }
96         
97     function action_editview(){
98                 $this->view = 'edit';
99                 $GLOBALS['view'] = $this->view;
100                 if(!empty($_REQUEST['deleteAttachment'])){
101                         ob_clean();
102                         echo $this->bean->deleteAttachment($_REQUEST['isDuplicate']) ? 'true' : 'false';
103                         sugar_cleanup(true);
104                 }
105
106         }
107         
108 }
109 ?>