]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/file/File.php
Release 6.1.4
[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 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  require_once('include/SugarObjects/templates/basic/Basic.php');
40  require_once('include/upload_file.php');
41   require_once('include/formbase.php');
42 class File extends Basic{
43         function File(){
44                 parent::Basic();
45         }
46
47         //Must overwrite the save operation for uploaded file.
48         var $file_url;
49         var $file_url_noimage;
50         function save($check_notify=false){
51                 if (!empty($this->uploadfile))
52                         $this->filename = $this->uploadfile;
53                 return parent::save($check_notify);
54                 
55         }
56
57
58
59         function fill_in_additional_detail_fields(){
60
61                 global $theme;
62                 global $current_language;
63                 global $timedate;
64                 global $app_list_strings;
65                 $this->uploadfile = $this->filename;
66                 $mod_strings = return_module_language($current_language, $this->object_name);
67                 global $img_name;
68                 global $img_name_bare;
69                 if (!$this->file_ext) {
70                         $img_name = SugarThemeRegistry::current()->getImageURL(strtolower($this->file_ext)."_image_inline.gif");
71                         $img_name_bare = strtolower($this->file_ext)."_image_inline";
72                 }
73                 //set default file name.
74                 if (!empty ($img_name) && file_exists($img_name)) {
75                         $img_name = $img_name_bare;
76                 } else {
77                         $img_name = "def_image_inline"; //todo change the default image.
78                 }
79                 $this->file_url_noimage = basename(UploadFile :: get_url($this->filename, $this->id));
80                 if(!empty($this->status_id)) {
81                $this->status = $app_list_strings['document_status_dom'][$this->status_id];
82             }
83
84         }
85         
86         // need to override to have a name field created for this class
87         function retrieve($id = -1, $encode=true) {
88                 $ret_val = parent::retrieve($id, $encode);
89                 $this->_create_proper_name_field();
90                 return $ret_val;
91         }
92         
93
94         function _create_proper_name_field() {
95                 global $locale;
96                 $this->name = $this->document_name;
97         }
98 }
99 ?>