]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarFields/Fields/File/SugarFieldFile.php
Release 6.1.4
[Github/sugarcrm.git] / include / SugarFields / Fields / File / SugarFieldFile.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 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 require_once('include/SugarFields/Fields/Base/SugarFieldBase.php');
38
39 class SugarFieldFile extends SugarFieldBase {
40    
41         function getDetailViewSmarty($parentFieldArray, $vardef, $displayParams, $tabindex) {
42
43         global $app_strings;
44         if(!isset($displayParams['link'])) {
45            $error = $app_strings['ERR_SMARTY_MISSING_DISPLAY_PARAMS'] . 'link';
46            $GLOBALS['log']->error($error);      
47            $this->ss->trigger_error($error);
48            return;
49         }
50         
51         if(!isset($displayParams['id'])) {
52            $error = $app_strings['ERR_SMARTY_MISSING_DISPLAY_PARAMS'] . 'id';
53            $GLOBALS['log']->error($error);      
54            $this->ss->trigger_error($error);
55            return;
56         }        
57
58         $this->setup($parentFieldArray, $vardef, $displayParams, $tabindex);
59         return $this->fetch('include/SugarFields/Fields/File/DetailView.tpl');
60     }
61     
62         public function save(&$bean, $params, $field, $properties, $prefix = ''){
63                 require_once('include/upload_file.php');
64                 $upload_file = new UploadFile($prefix . $field);
65
66                 //remove file
67                 if (isset($_REQUEST['remove_file_' . $field]) && $_REQUEST['remove_file_' . $field] == 1)
68                 {
69                         $upload_file->unlink_file($bean->$field);
70                         $bean->$field="";
71                 }
72                 
73                 $move=false;
74                 if (isset($_FILES[$prefix . $field]) && $upload_file->confirm_upload())
75                 {
76                 $bean->$field = $upload_file->get_stored_file_name();
77                 $bean->file_mime_type = $upload_file->mime_type;
78                         $bean->file_ext = $upload_file->file_ext;
79                         $move=true;
80                 }
81                 
82                 if ($move) {
83                         if (empty($bean->id)) { 
84                                 $bean->id = create_guid();
85                                 $bean->new_with_id = true;
86                         }
87         
88                         $upload_file->final_move($bean->id);
89                 }
90         }
91 }
92 ?>