]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/DocumentRevisions/vardefs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / DocumentRevisions / 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 $dictionary['DocumentRevision'] = array('table' => 'document_revisions'
40                                ,'fields' => array (
41   'id' =>
42   array (
43     'name' => 'id',
44     'vname' => 'LBL_REVISION_NAME',
45     'type' => 'varchar',
46     'len' => '36',
47     'required'=>true,
48     'reportable'=>false,
49   ),
50
51  'change_log' =>
52   array (
53     'name' => 'change_log',
54     'vname' => 'LBL_CHANGE_LOG',
55     'type' => 'varchar',
56     'len' => '255',
57   ),
58
59   'document_id' =>
60   array (
61     'name' => 'document_id',
62     'vname' => 'LBL_DOCUMENT',
63     'type' => 'varchar',
64     'len' => '36',
65     'required'=>false,
66     'reportable'=>false,
67   ),
68 'doc_id' =>
69   array (
70         'name' => 'doc_id',
71         'vname' => 'LBL_DOC_ID',
72         'type' => 'varchar',
73         'len' => '100',
74         'comment' => 'Document ID from documents web server provider',
75         'importable' => false,
76         'studio' => 'false',
77   ),
78   'doc_type' =>
79   array (
80         'name' => 'doc_type',
81         'vname' => 'LBL_DOC_TYPE',
82         'type' => 'enum',
83     'function' => 'getDocumentsExternalApiDropDown',
84         'len' => '100',
85         'comment' => 'Document type (ex: Google, box.net, LotusLive)',
86         'studio' => 'false',
87   ),
88 'doc_url' =>
89   array (
90         'name' => 'doc_url',
91         'vname' => 'LBL_DOC_URL',
92         'type' => 'varchar',
93         'len' => '255',
94         'comment' => 'Document URL from documents web server provider',
95         'importable' => false,
96         'studio' => 'false',
97   ),
98    'date_entered' =>
99   array (
100     'name' => 'date_entered',
101     'vname' => 'LBL_DATE_ENTERED',
102     'type' => 'datetime',
103   ),
104   'created_by' =>
105   array (
106     'name' => 'created_by',
107     'rname' => 'user_name',
108     'id_name' => 'modified_user_id',
109     'vname' => 'LBL_CREATED',
110     'type' => 'assigned_user_name',
111     'table' => 'users',
112     'isnull' => 'false',
113     'dbType' => 'id',
114     'source'=>'db',
115   ),
116   'filename' =>
117   array (
118     'name' => 'filename',
119     'vname' => 'LBL_FILENAME',
120     'type' => 'file',
121         'dbType' => 'varchar',
122     'required'=>true,
123     'len' => '255',
124     'allowEapm' => true,
125     'linkModuleOverride' => 'Documents',
126   ),
127   'file_ext' =>
128   array (
129     'name' => 'file_ext',
130     'vname' => 'LBL_FILE_EXTENSION',
131     'type' => 'varchar',
132     'len' => 100,
133   ),
134   'file_mime_type' =>
135   array (
136     'name' => 'file_mime_type',
137     'vname' => 'LBL_MIME',
138     'type' => 'varchar',
139     'len' => '100',
140   ),
141
142   'revision'=>
143   array (
144     'name' => 'revision',
145     'vname' => 'LBL_REVISION',
146     'type' => 'varchar',
147     'len' => 100,
148     'importable' => 'required',
149   ),
150
151   'deleted' =>
152   array (
153     'name' => 'deleted',
154     'vname' => 'LBL_DELETED',
155     'type' => 'bool',
156     'default' => 0,
157     'reportable'=>false,
158   ),
159   'date_modified' =>
160   array (
161     'name' => 'date_modified',
162     'vname' => 'LBL_DATE_MODIFIED',
163     'type' => 'datetime',
164   ),
165   'documents' =>
166   array (
167         'name' => 'documents',
168     'type' => 'link',
169     'relationship' => 'document_revisions',
170     'source'=>'non-db',
171                 'vname'=>'LBL_REVISIONS',
172   ),
173
174 'created_by_link' =>
175   array (
176     'name' => 'created_by_link',
177     'type' => 'link',
178     'relationship' => 'revisions_created_by',
179     'vname' => 'LBL_CREATED_BY_USER',
180     'link_type' => 'one',
181     'module'=>'Users',
182     'bean_name'=>'User',
183     'source'=>'non-db',
184   ),
185
186 'created_by_name' =>
187   array (
188     'name' => 'created_by_name',
189     'rname' => 'user_name',
190     'db_concat_fields'=> array(0=>'first_name', 1=>'last_name'),
191     'id_name' => 'created_by',
192     'vname' => 'LBL_CREATED_BY_NAME',
193     'type' => 'relate',
194     'table' => 'users',
195     'isnull' => 'true',
196     'module' => 'Users',
197     'dbType' => 'varchar',
198     'link'=>'created_by_link',
199     'len' => '255',
200          'source'=>'non-db',
201   ),
202   'latest_revision_id'=>
203   array (
204     'name' => 'latest_revision_id',
205     'vname' => 'LBL_REVISION',
206     'type' => 'varchar',
207     'len' => '36',
208     'source'=>'non-db',
209   ),
210   'document_name' =>
211   array (
212       'name' => 'document_name',
213       'vname' => 'LBL_DOC_NAME',
214       'type' => 'varchar',
215       'len' => '255',
216       'source' => 'non-db',
217   ),
218   'latest_revision' =>
219   array (
220       'name' => 'latest_revision',
221       'vname' => 'LBL_CURRENT_DOC_VERSION',
222       'type' => 'varchar',
223       'len' => '255',
224       'source' => 'non-db',
225   ),
226   
227 ),
228 'relationships'=>array(
229    'revisions_created_by' => array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
230                         'rhs_module'=> 'DocumentRevisions', 'rhs_table'=> 'document_revisions', 'rhs_key' => 'created_by',
231                         'relationship_type'=>'one-to-many'),
232 ),
233
234 'indices' => array (
235        array('name' =>'documentrevisionspk', 'type' =>'primary', 'fields'=>array('id')),
236        array('name' =>'documentrevision_mimetype', 'type' =>'index', 'fields'=>array('file_mime_type')),
237        )
238 );
239 ?>