]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/file/vardefs.php
Release 6.5.1
[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         'db_concat_fields'=> array(0=>'document_name'),
67         ),
68
69 'filename' =>
70   array (
71     'name' => 'filename',
72     'vname' => 'LBL_FILENAME',
73     'type' => 'varchar',
74     'required'=>true,
75         'importable' => 'required',
76     'len' => '255',
77     'studio' => 'false',
78   ),
79   'file_ext' =>
80   array (
81     'name' => 'file_ext',
82     'vname' => 'LBL_FILE_EXTENSION',
83     'type' => 'varchar',
84     'len' => 100,
85   ),
86   'file_mime_type' =>
87   array (
88     'name' => 'file_mime_type',
89     'vname' => 'LBL_MIME',
90     'type' => 'varchar',
91     'len' => '100',
92   ),
93
94
95 'uploadfile' =>
96   array (
97      'name'=>'uploadfile',
98      'vname' => 'LBL_FILE_UPLOAD',
99      'type' => 'file',
100      'source' => 'non-db',
101     //'noChange' => true,
102     // jwhitcraft BUG44657 - Take this out as it was causing the remove button not to show up on custom modules
103   ),
104
105 'active_date' =>
106   array (
107     'name' => 'active_date',
108     'vname' => 'LBL_DOC_ACTIVE_DATE',
109     'type' => 'date',
110         'required'=>true,
111     'importable' => 'required',
112     'display_default' => 'now',
113   ),
114
115 'exp_date' =>
116   array (
117     'name' => 'exp_date',
118     'vname' => 'LBL_DOC_EXP_DATE',
119     'type' => 'date',
120   ),
121
122   'category_id' =>
123   array (
124     'name' => 'category_id',
125     'vname' => 'LBL_SF_CATEGORY',
126     'type' => 'enum',
127     'len' => 100,
128     'options' => 'document_category_dom',
129     'reportable'=>false,
130   ),
131
132   'subcategory_id' =>
133   array (
134     'name' => 'subcategory_id',
135     'vname' => 'LBL_SF_SUBCATEGORY',
136     'type' => 'enum',
137     'len' => 100,
138     'options' => 'document_subcategory_dom',
139     'reportable'=>false,
140   ),
141
142   'status_id' =>
143   array (
144     'name' => 'status_id',
145     'vname' => 'LBL_DOC_STATUS',
146     'type' => 'enum',
147     'len' => 100,
148     'options' => 'document_status_dom',
149     'reportable'=>false,
150   ),
151
152   'status' =>
153   array (
154     'name' => 'status',
155     'vname' => 'LBL_DOC_STATUS',
156     'type' => 'varchar',
157     'source' => 'non-db',
158     'Comment' => 'Document status for Meta-Data framework',
159   ),
160  )
161 );
162
163 ?>