]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Contacts/vardefs.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Contacts / 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['Contact'] = array('table' => 'contacts', 'audited'=>true,
39
40 'unified_search' => true, 'unified_search_default_enabled' => true, 'duplicate_merge'=>true, 'fields' =>
41 array (
42
43         'email_and_name1' =>
44                 array (
45                         'name' => 'email_and_name1',
46                         'rname' => 'email_and_name1',
47                         'vname' => 'LBL_NAME',
48                         'type' => 'varchar',
49                         'source' => 'non-db',
50                         'len' => '510',
51                         'importable' => 'false',
52                 ),
53         'lead_source' =>
54                 array (
55                         'name' => 'lead_source',
56                         'vname' => 'LBL_LEAD_SOURCE',
57                         'type' => 'enum',
58                         'options' => 'lead_source_dom',
59                         'len' => '255',
60                         'comment' => 'How did the contact come about',
61                 ),
62
63         'account_name' =>
64                 array (
65                         'name' => 'account_name',
66                         'rname' => 'name',
67                         'id_name' => 'account_id',
68                         'vname' => 'LBL_ACCOUNT_NAME',
69                         'join_name'=>'accounts',
70                         'type' => 'relate',
71                         'link' => 'accounts',
72                         'table' => 'accounts',
73                         'isnull' => 'true',
74                         'module' => 'Accounts',
75                         'dbType' => 'varchar',
76                         'len' => '255',
77                         'source' => 'non-db',
78                         'unified_search' => true,
79                 ),
80         'account_id' =>
81                 array (
82                         'name' => 'account_id',
83                         'rname' => 'id',
84                         'id_name' => 'account_id',
85                         'vname' => 'LBL_ACCOUNT_ID',
86                         'type' => 'relate',
87                         'table' => 'accounts',
88                         'isnull' => 'true',
89                         'module' => 'Accounts',
90                         'dbType' => 'id',
91                         'reportable'=>false,
92                         'source' => 'non-db',
93                         'massupdate' => false,
94             'duplicate_merge'=> 'disabled',
95             'hideacl'=>true,
96
97                 ),
98         'opportunity_role_fields' =>
99                 array (
100                         'name' => 'opportunity_role_fields',
101                         'rname' => 'id',
102                         'relationship_fields'=>array('id' => 'opportunity_role_id', 'contact_role' => 'opportunity_role'),
103                         'vname' => 'LBL_ACCOUNT_NAME',
104                         'type' => 'relate',
105                         'link' => 'opportunities',
106                         'link_type' => 'relationship_info',
107                         'join_link_name' => 'opportunities_contacts',
108                         'source' => 'non-db',
109                         'importable' => 'false',
110             'duplicate_merge'=> 'disabled',
111                         'studio' => array('listview' => false),
112                 ),
113         'opportunity_role_id' =>
114                 array(
115                         'name' => 'opportunity_role_id',
116                         'type' => 'varchar',
117                         'source' => 'non-db',
118                         'vname' => 'LBL_OPPORTUNITY_ROLE_ID',
119                         'studio' => array('listview' => false),
120                 ),
121         'opportunity_role' =>
122                 array(
123                         'name' => 'opportunity_role',
124                         'type' => 'enum',
125                         'source' => 'non-db',
126                         'vname' => 'LBL_OPPORTUNITY_ROLE',
127                         'options' => 'opportunity_relationship_type_dom',
128                 ),
129         'reports_to_id'=>
130                 array(
131                         'name' => 'reports_to_id',
132                         'vname' => 'LBL_REPORTS_TO_ID',
133                         'type' => 'id',
134                         'required'=>false,
135                         'reportable'=>false,
136                         'comment' => 'The contact this contact reports to'
137                 ),
138         'report_to_name' =>
139                 array (
140                         'name' => 'report_to_name',
141                         'rname' => 'last_name',
142                         'id_name' => 'reports_to_id',
143                         'vname' => 'LBL_REPORTS_TO',
144                         'type' => 'relate',
145                         'link' => 'reports_to_link',
146                         'table' => 'contacts',
147                         'isnull' => 'true',
148                         'module' => 'Contacts',
149                         'dbType' => 'varchar',
150                         'len' => 'id',
151                         'reportable'=>false,
152                         'source' => 'non-db',
153                 ),
154         'birthdate' =>
155                 array (
156                         'name' => 'birthdate',
157                         'vname' => 'LBL_BIRTHDATE',
158                         'massupdate' => false,
159                         'type' => 'date',
160                         'comment' => 'The birthdate of the contact'
161                 ),
162         'accounts' =>
163                 array (
164                         'name' => 'accounts',
165                         'type' => 'link',
166                         'relationship' => 'accounts_contacts',
167                         'link_type' => 'one',
168                         'source' => 'non-db',
169                         'vname' => 'LBL_ACCOUNT',
170             'duplicate_merge'=> 'disabled',
171                 ),
172         'reports_to_link' =>
173                 array (
174                         'name' => 'reports_to_link',
175                         'type' => 'link',
176                         'relationship' => 'contact_direct_reports',
177                         'link_type' => 'one',
178                         'side' => 'right',
179                         'source' => 'non-db',
180                         'vname' => 'LBL_REPORTS_TO',
181                 ),
182         'opportunities' =>
183                 array (
184                         'name' => 'opportunities',
185                         'type' => 'link',
186                         'relationship' => 'opportunities_contacts',
187                         'source' => 'non-db',
188                         'module' => 'Opportunities',
189                         'bean_name' => 'Opportunity',
190                         'vname' => 'LBL_OPPORTUNITIES',
191                 ),
192         'email_addresses' =>
193         array (
194                 'name' => 'email_addresses',
195         'type' => 'link',
196                 'relationship' => 'contacts_email_addresses',
197                 'module' => 'EmailAddress',
198             'bean_name'=>'EmailAddress',
199         'source' => 'non-db',
200                 'vname' => 'LBL_EMAIL_ADDRESSES',
201                 'reportable'=>false,
202             'rel_fields' => array('primary_address' => array('type'=>'bool')),
203                 'unified_search'=>true,
204         ),
205         'email_addresses_primary' =>
206         array (
207                 'name' => 'email_addresses_primary',
208         'type' => 'link',
209                 'relationship' => 'contacts_email_addresses_primary',
210         'source' => 'non-db',
211                 'vname' => 'LBL_EMAIL_ADDRESS_PRIMARY',
212                 'duplicate_merge'=> 'disabled',
213         ),
214         'bugs' =>
215                 array (
216                         'name' => 'bugs',
217                         'type' => 'link',
218                         'relationship' => 'contacts_bugs',
219                         'source' => 'non-db',
220                         'vname' => 'LBL_BUGS',
221                 ),
222         'calls' =>
223                 array (
224                         'name' => 'calls',
225                         'type' => 'link',
226                         'relationship' => 'calls_contacts',
227                         'source' => 'non-db',
228                         'vname' => 'LBL_CALLS',
229                 ),
230         'cases' =>
231                 array (
232                         'name' => 'cases',
233                         'type' => 'link',
234                         'relationship' => 'contacts_cases',
235                         'source' => 'non-db',
236                         'vname' => 'LBL_CASES',
237                 ),
238         'direct_reports'=>
239                 array (
240                         'name' => 'direct_reports',
241                         'type' => 'link',
242                         'relationship' => 'contact_direct_reports',
243                         'source' => 'non-db',
244                         'vname' => 'LBL_DIRECT_REPORTS',
245                 ),
246         'emails'=>
247                 array (
248                         'name' => 'emails',
249                         'type' => 'link',
250                         'relationship' => 'emails_contacts_rel',
251                         'source' => 'non-db',
252                         'vname' => 'LBL_EMAILS',
253                 ),
254         'documents'=>
255                 array (
256                         'name' => 'documents',
257                         'type' => 'link',
258                         'relationship' => 'documents_contacts',
259                         'source' => 'non-db',
260                         'vname' => 'LBL_DOCUMENTS_SUBPANEL_TITLE',
261                 ),
262         'leads'=>
263                 array (
264                         'name' => 'leads',
265                         'type' => 'link',
266                         'relationship' => 'contact_leads',
267                         'source' => 'non-db',
268                         'vname' => 'LBL_LEADS',
269                 ),
270         'meetings'=>
271                 array (
272                         'name' => 'meetings',
273                         'type' => 'link',
274                         'relationship' => 'meetings_contacts',
275                         'source' => 'non-db',
276                         'vname' => 'LBL_MEETINGS',
277                 ),
278         'notes'=>
279                 array (
280                         'name' => 'notes',
281                         'type' => 'link',
282                         'relationship' => 'contact_notes',
283                         'source' => 'non-db',
284                         'vname' => 'LBL_NOTES',
285                 ),
286         'project'=>
287                 array (
288                         'name' => 'project',
289                         'type' => 'link',
290                         'relationship' => 'projects_contacts',
291                         'source' => 'non-db',
292                         'vname' => 'LBL_PROJECTS',
293                 ),
294
295         'tasks'=>
296                 array (
297                         'name' => 'tasks',
298                         'type' => 'link',
299                         'relationship' => 'contact_tasks',
300                         'source' => 'non-db',
301                         'vname' => 'LBL_TASKS',
302                 ),
303         'tasks_parent'=>
304                 array (
305                         'name' => 'tasks_parent',
306                         'type' => 'link',
307                         'relationship' => 'contact_tasks_parent',
308                         'source' => 'non-db',
309                         'vname' => 'LBL_TASKS',
310         ),
311                 'user_sync'=>
312                 array (
313                         'name' => 'users',
314                         'type' => 'link',
315                         'relationship' => 'contacts_users',
316                         'source' => 'non-db',
317                         'vname' => 'LBL_USER_SYNC',
318                 ),
319         'created_by_link' =>
320                 array (
321                         'name' => 'created_by_link',
322                         'type' => 'link',
323                         'relationship' => 'contacts_created_by',
324                         'vname' => 'LBL_CREATED_BY_USER',
325                         'link_type' => 'one',
326                         'module' => 'Users',
327                         'bean_name' => 'User',
328                         'source' => 'non-db',
329                 ),
330         'modified_user_link' =>
331                 array (
332                         'name' => 'modified_user_link',
333                         'type' => 'link',
334                         'relationship' => 'contacts_modified_user',
335                         'vname' => 'LBL_MODIFIED_BY_USER',
336                         'link_type' => 'one',
337                         'module' => 'Users',
338                         'bean_name' => 'User',
339                         'source' => 'non-db',
340                 ),
341         'assigned_user_link' =>
342                 array (
343                         'name' => 'assigned_user_link',
344                         'type' => 'link',
345                         'relationship' => 'contacts_assigned_user',
346                         'vname' => 'LBL_ASSIGNED_TO_USER',
347                         'link_type' => 'one',
348                         'module' => 'Users',
349                         'bean_name' => 'User',
350                         'source' => 'non-db',
351             'rname' => 'user_name',
352             'id_name' => 'assigned_user_id',
353             'table' => 'users',
354             'duplicate_merge'=>'enabled'
355                 ),
356        'campaign_id' =>
357           array (
358             'name' => 'campaign_id',
359             'comment' => 'Campaign that generated lead',
360             'vname'=>'LBL_CAMPAIGN_ID',
361             'rname' => 'id',
362             'id_name' => 'campaign_id',
363             'type' => 'id',
364             //'dbType' => 'char',
365             'table' => 'campaigns',
366             'isnull' => 'true',
367             'module' => 'Campaigns',
368 //            'reportable'=>false,
369             'massupdate' => false,
370                 'duplicate_merge'=> 'disabled',
371           ),
372
373                  'campaign_name' =>
374                  array (
375                             'name' => 'campaign_name',
376                                 'rname' => 'name',
377                             'vname' => 'LBL_CAMPAIGN',
378                             'type' => 'relate',
379                                 'link' => 'campaign_contacts',
380                                 'isnull' => 'true',
381                                 'reportable'=>false,
382                             'source'=>'non-db',
383                             'table' => 'campaigns',
384                                 'id_name' => 'campaign_id',
385                             'module'=>'Campaigns',
386                             'duplicate_merge'=>'disabled',
387                             'comment' => 'The first campaign name for Contact (Meta-data only)',
388                  ),
389
390                 'campaigns' =>
391                 array (
392                         'name' => 'campaigns',
393                 'type' => 'link',
394                 'relationship' => 'contact_campaign_log',
395                 'module'=>'CampaignLog',
396                 'bean_name'=>'CampaignLog',
397                 'source'=>'non-db',
398                         'vname'=>'LBL_CAMPAIGNLOG',
399                 ),
400
401                 'campaign_contacts' =>
402     array (
403       'name' => 'campaign_contacts',
404       'type' => 'link',
405       'vname' => 'LBL_CAMPAIGN_CONTACT',
406       'relationship' => 'campaign_contacts',
407       'source' => 'non-db',
408     ),
409         'c_accept_status_fields' =>
410                 array (
411                         'name' => 'c_accept_status_fields',
412                         'rname' => 'id',
413                         'relationship_fields'=>array('id' => 'accept_status_id', 'accept_status' => 'accept_status_name'),
414                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
415                         'type' => 'relate',
416                         'link' => 'calls',
417                         'link_type' => 'relationship_info',
418                         'source' => 'non-db',
419                         'importable' => 'false',
420             'duplicate_merge'=> 'disabled',
421                         'studio' => array('listview' => false),
422                 ),
423         'm_accept_status_fields' =>
424                 array (
425                         'name' => 'm_accept_status_fields',
426                         'rname' => 'id',
427                         'relationship_fields'=>array('id' => 'accept_status_id', 'accept_status' => 'accept_status_name'),
428                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
429                         'type' => 'relate',
430                         'link' => 'meetings',
431                         'link_type' => 'relationship_info',
432                         'source' => 'non-db',
433                         'importable' => 'false',
434                         'hideacl'=>true,
435             'duplicate_merge'=> 'disabled',
436                         'studio' => array('listview' => false),
437                 ),
438         'accept_status_id' =>
439                 array(
440                         'name' => 'accept_status_id',
441                         'type' => 'varchar',
442                         'source' => 'non-db',
443                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
444                         'studio' => array('listview' => false),
445                 ),
446         'accept_status_name' =>
447                 array(
448                         'massupdate' => false,
449                         'name' => 'accept_status_name',
450                         'type' => 'enum',
451             'studio' => 'false',
452                         'source' => 'non-db',
453                         'vname' => 'LBL_LIST_ACCEPT_STATUS',
454                         'options' => 'dom_meeting_accept_status',
455                         'importable' => 'false',
456                 ),
457       'prospect_lists' =>
458       array (
459         'name' => 'prospect_lists',
460         'type' => 'link',
461         'relationship' => 'prospect_list_contacts',
462         'module'=>'ProspectLists',
463         'source'=>'non-db',
464         'vname'=>'LBL_PROSPECT_LIST',
465       ),
466       'sync_contact' =>
467       array (
468         'massupdate' => false,
469         'name' => 'sync_contact',
470         'vname' => 'LBL_SYNC_CONTACT',
471         'type' => 'bool',
472         'source' => 'non-db',
473         'comment' => 'Synch to outlook?  (Meta-Data only)',
474         'studio' => 'true',
475       ),
476 ),
477 'indices' => array (
478         array(
479                 'name' => 'idx_cont_last_first',
480                 'type' => 'index',
481                 'fields' => array('last_name', 'first_name', 'deleted')
482         ),
483         array(
484                 'name' => 'idx_contacts_del_last',
485                 'type' => 'index',
486                 'fields' => array('deleted', 'last_name'),
487         ),
488         array(
489                 'name' => 'idx_cont_del_reports',
490                 'type' => 'index',
491                 'fields'=>array('deleted', 'reports_to_id', 'last_name')
492         ),
493         array(
494                 'name' => 'idx_reports_to_id',
495                 'type' => 'index',
496                 'fields'=> array('reports_to_id'),
497         ),
498         array(
499                 'name' => 'idx_del_id_user',
500                 'type' => 'index',
501                 'fields'=> array('deleted', 'id', 'assigned_user_id'),
502         ),
503         array(
504                 'name' => 'idx_cont_assigned',
505                 'type' => 'index',
506                 'fields' => array('assigned_user_id')
507         ),
508 //      array(
509 //              'name' => 'idx_cont_email1',
510 //              'type' => 'index',
511 //              'fields' => array('email1')
512 //      ),
513 //      array(
514 //              'name' => 'idx_cont_email2',
515 //              'type' => 'index',
516 //              'fields' => array('email2')
517 //      ),
518 ),
519     'relationships' => array(
520         'contact_direct_reports' => array('lhs_module' => 'Contacts',
521             'lhs_table' => 'contacts',
522             'lhs_key' => 'id',
523             'rhs_module' => 'Contacts',
524             'rhs_table' => 'contacts',
525             'rhs_key' => 'reports_to_id',
526             'relationship_type' => 'one-to-many'),
527         'contact_leads' => array('lhs_module' => 'Contacts',
528             'lhs_table' => 'contacts',
529             'lhs_key' => 'id',
530             'rhs_module' => 'Leads',
531             'rhs_table' => 'leads',
532             'rhs_key' => 'contact_id',
533             'relationship_type' => 'one-to-many'),
534         'contact_notes' => array('lhs_module' => 'Contacts',
535             'lhs_table' => 'contacts',
536             'lhs_key' => 'id',
537             'rhs_module' => 'Notes',
538             'rhs_table' => 'notes',
539             'rhs_key' => 'contact_id',
540             'relationship_type' => 'one-to-many'),
541         'contact_tasks' => array('lhs_module' => 'Contacts',
542             'lhs_table' => 'contacts',
543             'lhs_key' => 'id',
544             'rhs_module' => 'Tasks',
545             'rhs_table' => 'tasks',
546             'rhs_key' => 'contact_id',
547             'relationship_type' => 'one-to-many'),
548         'contact_tasks_parent' => array('lhs_module' => 'Contacts',
549             'lhs_table' => 'contacts',
550             'lhs_key' => 'id',
551             'rhs_module' => 'Tasks',
552             'rhs_table' => 'tasks',
553             'rhs_key' => 'parent_id',
554             'relationship_type' => 'one-to-many',
555                         'relationship_role_column'=>'parent_type',
556             'relationship_role_column_value'=>'Contacts'
557                 ),
558         'contacts_assigned_user' => array('lhs_module' => 'Users',
559             'lhs_table' => 'users',
560             'lhs_key' => 'id',
561             'rhs_module' => 'Contacts',
562             'rhs_table' => 'contacts',
563             'rhs_key' => 'assigned_user_id',
564             'relationship_type' => 'one-to-many'),
565         'contacts_modified_user' => array('lhs_module' => 'Users',
566             'lhs_table' => 'users',
567             'lhs_key' => 'id',
568             'rhs_module' => 'Contacts',
569             'rhs_table' => 'contacts',
570             'rhs_key' => 'modified_user_id',
571             'relationship_type' => 'one-to-many'),
572         'contacts_created_by' => array('lhs_module' => 'Users',
573             'lhs_table' => 'users',
574             'lhs_key' => 'id',
575             'rhs_module' => 'Contacts',
576             'rhs_table' => 'contacts',
577             'rhs_key' => 'created_by',
578             'relationship_type' => 'one-to-many'),
579                 'contact_campaign_log' => array(
580                         'lhs_module'            =>      'Contacts',
581                         'lhs_table'                     =>      'contacts',
582                         'lhs_key'                       =>      'id',
583                         'rhs_module'            =>      'CampaignLog',
584                         'rhs_table'                     =>      'campaign_log',
585                         'rhs_key'                       =>      'target_id',
586                         'relationship_type'     =>'one-to-many'
587                 ),
588 ),
589
590 //This enables optimistic locking for Saves From EditView
591 'optimistic_locking'=>true,
592 );
593
594 VardefManager::createVardef('Contacts','Contact', array('default', 'assignable',
595   'person'));
596
597 ?>