]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/file/File.php
Release 6.5.0
[Github/sugarcrm.git] / include / SugarObjects / templates / file / File.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-2012 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 require_once('include/SugarObjects/templates/basic/Basic.php');
40 require_once('include/upload_file.php');
41 require_once('include/formbase.php');
42
43 class File extends Basic
44 {
45         public $file_url;
46         public $file_url_noimage;
47
48     function File(){
49                 parent::Basic();
50         }
51
52         /**
53          * @see SugarBean::save()
54          */
55         public function save($check_notify=false)
56         {
57                 if (!empty($this->uploadfile)) {
58                         $this->filename = $this->uploadfile;
59                 }
60
61                 return parent::save($check_notify);
62         }
63
64         /**
65          * @see SugarBean::fill_in_additional_detail_fields()
66          */
67         public function fill_in_additional_detail_fields()
68         {
69                 global $app_list_strings;
70                 global $img_name;
71                 global $img_name_bare;
72
73                 $this->uploadfile = $this->filename;
74
75                 // Bug 41453 - Make sure we call the parent method as well
76                 parent::fill_in_additional_detail_fields();
77
78                 if (!$this->file_ext) {
79                         $img_name = SugarThemeRegistry::current()->getImageURL(strtolower($this->file_ext)."_image_inline.gif");
80                         $img_name_bare = strtolower($this->file_ext)."_image_inline";
81                 }
82
83                 //set default file name.
84                 if (!empty ($img_name) && file_exists($img_name)) {
85                         $img_name = $img_name_bare;
86                 }
87                 else {
88                         $img_name = "def_image_inline"; //todo change the default image.
89                 }
90                 $this->file_url_noimage = $this->id;
91
92                 if(!empty($this->status_id)) {
93                $this->status = $app_list_strings['document_status_dom'][$this->status_id];
94             }
95         }
96
97         /**
98          * @see SugarBean::retrieve()
99          */
100         public function retrieve($id = -1, $encode=true, $deleted=true)
101         {
102                 $ret_val = parent::retrieve($id, $encode, $deleted);
103
104                 $this->name = $this->document_name;
105
106                 return $ret_val;
107         }
108
109     /**
110      * Method to delete an attachment
111      *
112      * @param string $isduplicate
113      * @return bool
114      */
115     public function deleteAttachment($isduplicate = "false")
116     {
117         if ($this->ACLAccess('edit')) {
118             if ($isduplicate == "true") {
119                 return true;
120             }
121             $removeFile = "upload://{$this->id}";
122         }
123         if (file_exists($removeFile)) {
124             if (!unlink($removeFile)) {
125                 $GLOBALS['log']->error("*** Could not unlink() file: [ {$removeFile} ]");
126             } else {
127                 $this->uploadfile = '';$this->uploadfile = '';
128                 $this->filename = '';
129                 $this->file_mime_type = '';
130                 $this->file_ext = '';
131                 $this->save();
132                 return true;
133             }
134         } else {
135             $this->uploadfile = '';
136             $this->filename = '';
137             $this->file_mime_type = '';
138             $this->file_ext = '';
139             $this->save();
140             return true;
141         }
142         return false;
143     }
144 }