]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/file/vardefs.php
Release 6.5.0
[Github/sugarcrm.git] / include / SugarObjects / templates / file / vardefs.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
40  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
41  * All Rights Reserved.
42  * Contributor(s): ______________________________________..
43  ********************************************************************************/
44  
45  $vardefs=array(
46   'fields' => array (
47
48   'document_name' =>
49   array (
50     'name' => 'document_name',
51     'vname' => 'LBL_NAME',
52     'type' => 'name',
53         'link' => true, // bug 39288 
54         'dbType' => 'varchar',
55     'len' => '255',
56     'required'=>true,
57     'unified_search' => true,
58     'full_text_search' => array('boost' => 3),
59   ),
60
61 'name'=>
62   array(
63         'name'=>'name',
64         'source'=>'non-db',
65         'type'=>'varchar'
66         ),
67
68 'filename' =>
69   array (
70     'name' => 'filename',
71     'vname' => 'LBL_FILENAME',
72     'type' => 'varchar',
73     'required'=>true,
74         'importable' => 'required',
75     'len' => '255',
76     'studio' => 'false',
77   ),
78   'file_ext' =>
79   array (
80     'name' => 'file_ext',
81     'vname' => 'LBL_FILE_EXTENSION',
82     'type' => 'varchar',
83     'len' => 100,
84   ),
85   'file_mime_type' =>
86   array (
87     'name' => 'file_mime_type',
88     'vname' => 'LBL_MIME',
89     'type' => 'varchar',
90     'len' => '100',
91   ),
92
93
94 'uploadfile' =>
95   array (
96      'name'=>'uploadfile',
97      'vname' => 'LBL_FILE_UPLOAD',
98      'type' => 'file',
99      'source' => 'non-db',
100     //'noChange' => true,
101     // jwhitcraft BUG44657 - Take this out as it was causing the remove button not to show up on custom modules
102   ),
103
104 'active_date' =>
105   array (
106     'name' => 'active_date',
107     'vname' => 'LBL_DOC_ACTIVE_DATE',
108     'type' => 'date',
109         'required'=>true,
110     'importable' => 'required',
111     'display_default' => 'now',
112   ),
113
114 'exp_date' =>
115   array (
116     'name' => 'exp_date',
117     'vname' => 'LBL_DOC_EXP_DATE',
118     'type' => 'date',
119   ),
120
121   'category_id' =>
122   array (
123     'name' => 'category_id',
124     'vname' => 'LBL_SF_CATEGORY',
125     'type' => 'enum',
126     'len' => 100,
127     'options' => 'document_category_dom',
128     'reportable'=>false,
129   ),
130
131   'subcategory_id' =>
132   array (
133     'name' => 'subcategory_id',
134     'vname' => 'LBL_SF_SUBCATEGORY',
135     'type' => 'enum',
136     'len' => 100,
137     'options' => 'document_subcategory_dom',
138     'reportable'=>false,
139   ),
140
141   'status_id' =>
142   array (
143     'name' => 'status_id',
144     'vname' => 'LBL_DOC_STATUS',
145     'type' => 'enum',
146     'len' => 100,
147     'options' => 'document_status_dom',
148     'reportable'=>false,
149   ),
150
151   'status' =>
152   array (
153     'name' => 'status',
154     'vname' => 'LBL_DOC_STATUS',
155     'type' => 'varchar',
156     'source' => 'non-db',
157     'Comment' => 'Document status for Meta-Data framework',
158   ),
159  )
160 );
161
162 ?>