]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Meetings/vardefs.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Meetings / 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-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 $dictionary['Meeting'] = array('table' => 'meetings',
39         'unified_search' => true, 'unified_search_default_enabled' => true,
40         'comment' => 'Meeting activities'
41                                ,'fields' => array (
42   'name' =>
43   array (
44     'name' => 'name',
45     'vname' => 'LBL_SUBJECT',
46     'required' => true,
47     'type' => 'name',
48     'dbType' => 'varchar',
49         'unified_search' => true,
50     'len' => '50',
51     'comment' => 'Meeting name',
52     'importable' => 'required',
53   ),
54   'accept_status' => array (
55     'name' => 'accept_status',
56     'vname' => 'LBL_ACCEPT_STATUS',
57     'type' => 'varchar',
58     'dbType' => 'varchar',
59     'len' => '20',
60     'source'=>'non-db',
61   ),
62   //bug 39559 
63   'set_accept_links' => array (
64     'name' => 'accept_status',
65     'vname' => 'LBL_ACCEPT_LINK',
66     'type' => 'varchar',
67     'dbType' => 'varchar',
68     'len' => '20',
69     'source'=>'non-db',
70   ),
71   'location' =>
72   array (
73     'name' => 'location',
74     'vname' => 'LBL_LOCATION',
75     'type' => 'varchar',
76     'len' => '50',
77     'comment' => 'Meeting location'
78   ),
79   'password' =>
80   array (
81     'name' => 'password',
82     'vname' => 'LBL_PASSWORD',
83     'type' => 'varchar',
84     'len' => '50',
85     'comment' => 'Meeting password',
86     'studio' => 'false',
87   ),
88   'join_url' =>
89   array (
90     'name' => 'join_url',
91     'vname' => 'LBL_URL',
92     'type' => 'varchar',
93     'len' => '200',
94     'comment' => 'Join URL',
95     'studio' => 'false',
96     'reportable' => false,
97   ),
98   'host_url' =>
99   array (
100     'name' => 'host_url',
101     'vname' => 'LBL_HOST_URL',
102     'type' => 'varchar',
103     'len' => '400',
104     'comment' => 'Host URL',
105     'studio' => 'false',
106     'reportable' => false,
107   ),
108   'displayed_url' =>
109   array (
110     'name' => 'displayed_url',
111     'vname' => 'LBL_DISPLAYED_URL',
112     'type' => 'url',
113     'len' => '400',
114     'comment' => 'Meeting URL',
115     'studio' => 'false',
116   ),
117   'creator' =>
118   array (
119     'name' => 'creator',
120     'vname' => 'LBL_CREATOR',
121     'type' => 'varchar',
122     'len' => '50',
123     'comment' => 'Meeting creator',
124     'studio' => 'false',
125   ),
126   'external_id' =>
127   array (
128     'name' => 'external_id',
129     'vname' => 'LBL_EXTERNALID',
130     'type' => 'varchar',
131     'len' => '50',
132     'comment' => 'Meeting ID for external app API',
133     'studio' => 'false',
134    ),
135   'duration_hours' =>
136   array (
137     'name' => 'duration_hours',
138     'vname' => 'LBL_DURATION_HOURS',
139     'type' => 'int',
140     'len' => '2',
141     'comment' => 'Duration (hours)',
142     'importable' => 'required',
143     'required' => true,
144     'validation' => array (
145         'type' => 'callback',
146         'callback' => 'isValidDuration'
147     )
148   ),
149   'duration_minutes' =>
150   array (
151     'name' => 'duration_minutes',
152     'vname' => 'LBL_DURATION_MINUTES',
153     'type' => 'int',
154     'group'=>'duration_hours',
155     'function' => array('name'=>'getDurationMinutesOptions', 'returns'=>'html', 'include'=>'modules/Calls/CallHelper.php'),
156     'len' => '2',
157     'comment' => 'Duration (minutes)'
158   ),
159   'date_start' =>
160   array (
161     'name' => 'date_start',
162     'vname' => 'LBL_DATE',
163     'type' => 'datetimecombo',
164     'dbType' => 'datetime',
165     'comment' => 'Date of start of meeting',
166     'importable' => 'required',
167     'required' => true,
168     'enable_range_search' => true,
169     'options' => 'date_range_search_dom',
170   ),
171
172   'date_end' =>
173   array (
174     'name' => 'date_end',
175     'vname' => 'LBL_DATE_END',
176     'type' => 'datetime',
177     'massupdate'=>false,
178     'comment' => 'Date meeting ends',
179     'enable_range_search' => true,
180     'options' => 'date_range_search_dom',
181   ),
182   'parent_type' =>
183   array (
184     'name' => 'parent_type',
185     'vname'=>'LBL_PARENT_TYPE',
186     'type' =>'parent_type',
187     'dbType' => 'varchar',
188     'group'=>'parent_name',
189     'len' => 100,
190     'comment' => 'Module meeting is associated with',
191     'studio' => array('searchview'=>false),
192   ),
193   'status' =>
194   array (
195     'name' => 'status',
196     'vname' => 'LBL_STATUS',
197     'type' => 'enum',
198     'len' => 100,
199     'options' => 'meeting_status_dom',
200     'comment' => 'Meeting status (ex: Planned, Held, Not held)',
201     'default' => 'Planned',
202   ),
203   'type' =>
204    array (
205      'name' => 'type',
206      'vname' => 'LBL_TYPE',
207      'type' => 'enum',
208      'len' => 255,
209      'function' => 'getMeetingsExternalApiDropDown',
210      'comment' => 'Meeting type (ex: WebEx, Other)',
211      'options' => 'eapm_list',
212      'default'  => 'Sugar',
213      'massupdate' => false,
214          'studio' => 'false',
215    ),
216   // Bug 24170 - Added only to allow the sidequickcreate form to work correctly
217   'direction' =>
218   array (
219     'name' => 'direction',
220     'vname' => 'LBL_DIRECTION',
221     'type' => 'enum',
222     'len' => 100,
223     'options' => 'call_direction_dom',
224     'comment' => 'Indicates whether call is inbound or outbound',
225     'source' => 'non-db',
226     'importable' => 'false',
227     'massupdate'=>false,
228     'reportable'=>false,
229         'studio' => 'false',
230   ),
231   'parent_id' =>
232   array (
233     'name' => 'parent_id',
234     'vname'=>'LBL_PARENT_ID',
235     'type' => 'id',
236     'group'=>'parent_name',
237     'reportable'=>false,
238     'comment' => 'ID of item indicated by parent_type',
239     'studio' => array('searchview'=>false),
240   ),
241   'reminder_checked'=>array(
242     'name' => 'reminder_checked',
243     'vname' => 'LBL_REMINDER',
244     'type' => 'bool',
245     'source' => 'non-db',
246     'comment' => 'checkbox indicating whether or not the reminder value is set (Meta-data only)',
247     'massupdate'=>false,
248    ),
249
250   'reminder_time' =>
251   array (
252     'name' => 'reminder_time',
253     'vname' => 'LBL_REMINDER_TIME',
254     'type' => 'int',
255     'function' => array('name'=>'getReminderTime', 'returns'=>'html', 'include'=>'modules/Calls/CallHelper.php', 'onListView'=>true ),
256     'reportable' => false,
257     'default'=>-1,
258     'comment' => 'Specifies when a reminder alert should be issued; -1 means no alert; otherwise the number of seconds prior to the start'
259   ),
260    'outlook_id' =>
261   array (
262     'name' => 'outlook_id',
263     'vname' => 'LBL_OUTLOOK_ID',
264     'type' => 'varchar',
265     'len' => '255',
266     'reportable' => false,
267     'comment' => 'When the Sugar Plug-in for Microsoft Outlook syncs an Outlook appointment, this is the Outlook appointment item ID'
268   ),
269    'sequence' =>
270   array (
271     'name' => 'sequence',
272     'vname' => 'LBL_SEQUENCE',
273     'type' => 'int',
274     'len' => '11',
275     'reportable' => false,
276     'default'=>0,
277     'comment' => 'Meeting update sequence for meetings as per iCalendar standards'
278   ),
279
280   'contact_name' =>
281   array (
282     'name' => 'contact_name',
283     'rname' => 'last_name',
284     'db_concat_fields'=> array(0=>'first_name', 1=>'last_name'),
285     'id_name' => 'contact_id',
286     'massupdate' => false,
287     'vname' => 'LBL_CONTACT_NAME',
288     'type' => 'relate',
289     'link'=>'contacts',
290     'table' => 'contacts',
291     'isnull' => 'true',
292     'module' => 'Contacts',
293     'join_name' => 'contacts',
294     'dbType' => 'varchar',
295     'source'=>'non-db',
296     'len' => 36,
297         'studio' => 'false',
298         ),
299
300   'contacts' =>
301   array (
302         'name' => 'contacts',
303     'type' => 'link',
304     'relationship' => 'meetings_contacts',
305     'source'=>'non-db',
306                 'vname'=>'LBL_CONTACTS',
307   ),
308    'parent_name'=>
309         array(
310                 'name'=> 'parent_name',
311                 'parent_type'=>'record_type_display' ,
312                 'type_name'=>'parent_type',
313                 'id_name'=>'parent_id',
314                 'vname'=>'LBL_LIST_RELATED_TO',
315                 'type'=>'parent',
316                 'group'=>'parent_name',
317                 'source'=>'non-db',
318                 'options'=> 'parent_type_display',
319                 ),
320   'users' =>
321   array (
322         'name' => 'users',
323     'type' => 'link',
324     'relationship' => 'meetings_users',
325     'source'=>'non-db',
326                 'vname'=>'LBL_USERS',
327   ),
328   'accounts' =>
329   array (
330         'name' => 'accounts',
331     'type' => 'link',
332     'relationship' => 'account_meetings',
333     'source'=>'non-db',
334                 'vname'=>'LBL_ACCOUNT',
335   ),
336   'leads' =>
337   array (
338     'name' => 'leads',
339     'type' => 'link',
340     'relationship' => 'meetings_leads',
341     'source'=>'non-db',
342         'vname'=>'LBL_LEADS',
343   ),
344   'opportunity' =>
345   array (
346         'name' => 'opportunity',
347     'type' => 'link',
348     'relationship' => 'opportunity_meetings',
349     'source'=>'non-db',
350                 'vname'=>'LBL_OPPORTUNITY',
351   ),
352   'case' =>
353   array (
354         'name' => 'case',
355     'type' => 'link',
356     'relationship' => 'case_meetings',
357     'source'=>'non-db',
358                 'vname'=>'LBL_CASE',
359   ),
360     'notes' =>
361   array (
362         'name' => 'notes',
363     'type' => 'link',
364     'relationship' => 'meetings_notes',
365     'module'=>'Notes',
366     'bean_name'=>'Note',
367     'source'=>'non-db',
368                 'vname'=>'LBL_NOTES',
369   ),
370         'contact_id' => array(
371                 'name' => 'contact_id',
372                 'type' => 'id',
373                 'source' => 'non-db',
374         ),
375 ),
376  'relationships' => array (
377           'meetings_assigned_user' =>
378    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
379    'rhs_module'=> 'Meetings', 'rhs_table'=> 'meetings', 'rhs_key' => 'assigned_user_id',
380    'relationship_type'=>'one-to-many')
381
382    ,'meetings_modified_user' =>
383    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
384    'rhs_module'=> 'Meetings', 'rhs_table'=> 'meetings', 'rhs_key' => 'modified_user_id',
385    'relationship_type'=>'one-to-many')
386
387    ,'meetings_created_by' =>
388    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
389    'rhs_module'=> 'Meetings', 'rhs_table'=> 'meetings', 'rhs_key' => 'created_by',
390    'relationship_type'=>'one-to-many')
391
392         ,'meetings_notes' => array('lhs_module'=> 'Meetings', 'lhs_table'=> 'meetings', 'lhs_key' => 'id',
393                                                           'rhs_module'=> 'Notes', 'rhs_table'=> 'notes', 'rhs_key' => 'parent_id',
394                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
395                                                           'relationship_role_column_value'=>'Meetings')
396         )
397
398                                                       , 'indices' => array (
399        array('name' =>'idx_mtg_name', 'type'=>'index', 'fields'=>array('name')),
400        array('name' =>'idx_meet_par_del', 'type'=>'index', 'fields'=>array('parent_id','parent_type','deleted')),
401        array('name' => 'idx_meet_stat_del', 'type' => 'index', 'fields'=> array('assigned_user_id', 'status', 'deleted')),
402        array('name' => 'idx_meet_date_start', 'type' => 'index', 'fields'=> array('date_start')),
403
404                                                    )
405 //This enables optimistic locking for Saves From EditView
406         ,'optimistic_locking'=>true,
407                             );
408
409 VardefManager::createVardef('Meetings','Meeting', array('default', 'assignable',
410 ));
411 ?>