]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - metadata/queues_queueMetaData.php
Release 6.5.0
[Github/sugarcrm.git] / metadata / queues_queueMetaData.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 $dictionary['queues_queue'] = array ('table' => 'queues_queue',
39         'fields' => array (
40                 'id' => array (
41                         'name' => 'id',
42                         'vname' => 'LBL_QUEUES_QUEUE_ID',
43                         'type' => 'id',
44                         'required' => true,
45                         'reportable' => false,
46                 ),
47                 'deleted' => array (
48                         'name' => 'deleted',
49                         'vname' => 'LBL_DELETED',
50                         'type' => 'bool',
51                         'required' => true,
52                         'default' => '0',
53                         'reportable'=>false,
54                 ),
55                 'date_entered' => array (
56                         'name' => 'date_entered',
57                         'vname' => 'LBL_DATE_ENTERED',
58                         'type' => 'datetime',
59                         'required' => true,
60                 ),
61                 'date_modified' => array (
62                         'name' => 'date_modified',
63                         'vname' => 'LBL_DATE_MODIFIED',
64                         'type' => 'datetime',
65                         'required' => true,
66                 ),
67                 'queue_id' => array (
68                         'name' => 'queue_id',
69                         'vname' => 'LBL_QUEUE_ID',
70                         'type' => 'id',
71                         'required' => true,
72                         'reportable'=>false,
73                 ),
74                 'parent_id' => array (
75                         'name' => 'parent_id',
76                         'vname' => 'LBL_PARENT_ID',
77                         'type' => 'id',
78                         'required' => true,
79                         'reportable'=>false,
80                 ),
81         ),
82         'indices' => array (
83                 array(
84                         'name' => 'queues_queuepk',
85                         'type' =>'primary',
86                         'fields' => array(
87                                 'id'
88                         )
89                 ),
90                 array(
91                 'name' =>'idx_queue_id',
92                 'type'=>'index',
93                 'fields' => array(
94                         'queue_id'
95                         )
96                 ),
97                 array(
98                 'name' =>'idx_parent_id',
99                 'type'=>'index',
100                 'fields' => array(
101                         'parent_id'
102                         )
103                 ),
104                 array(
105                 'name' => 'compidx_queue_id_parent_id',
106                 'type' => 'alternate_key',
107                 'fields' => array (
108                         'queue_id',
109                         'parent_id'
110                         ),
111                 ),
112         ), /* end indices */
113         'relationships' => array (
114                 'child_queues_rel'      => array(
115                         'lhs_module'            => 'Queues',
116                         'lhs_table'                     => 'queues',
117                         'lhs_key'                       => 'id',
118                         'rhs_module'            => 'Queues',
119                         'rhs_table'                     => 'queues',
120                         'rhs_key'                       => 'id',
121                         'relationship_type' => 'many-to-many',
122                         'join_table'            => 'queues_queue', 
123                         'join_key_lhs'          => 'queue_id', 
124                         'join_key_rhs'          => 'parent_id'
125                 ),
126                 'parent_queues_rel' => array(
127                         'lhs_module'            => 'Queues',
128                         'lhs_table'                     => 'queues',
129                         'lhs_key'                       => 'id',
130                         'rhs_module'            => 'Queues',
131                         'rhs_table'                     => 'queues',
132                         'rhs_key'                       => 'id',
133                         'relationship_type' => 'many-to-many',
134                         'join_table'            => 'queues_queue', 
135                         'join_key_rhs'          => 'queue_id', 
136                         'join_key_lhs'          => 'parent_id'                  
137                 ),
138         ), /* end relationships */
139 );
140
141 ?>