]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Project/metadata/detailviewdefs.php
Release 6.5.0beta4
[Github/sugarcrm.git] / modules / Project / metadata / detailviewdefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37
38
39
40 $viewdefs['Project']['DetailView'] = array(
41         'templateMeta' => array( 
42                 'maxColumns' => '2',
43                 'widths' => array(      
44                         array('label' => '10', 'field' => '30'),
45                         array('label' => '10', 'field' => '30')
46                 ),
47                 'includes'=> array(
48                          array('file'=>'modules/Project/Project.js'),
49                 ),
50                 'form' => array(
51                         'buttons'=> array(
52                                 array( 'customCode' =>
53                         '<input title="{$APP.LBL_EDIT_BUTTON_TITLE}" ' .
54                         'accessKey="{$APP.LBL_EDIT_BUTTON_KEY}" class="button" type="submit" ' .
55                         'name="Edit" id="edit_button" value="{$APP.LBL_EDIT_BUTTON_LABEL}"'.
56                         'onclick="'.
57                         '{if $IS_TEMPLATE}'.
58                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesDetailView\'; this.form.return_id.value=\'{$id}\'; this.form.action.value=\'ProjectTemplatesEditView\';'.
59                         '{else}'.
60                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'DetailView\'; this.form.return_id.value=\'{$id}\'; this.form.action.value=\'EditView\'; '.
61                         '{/if}"'.
62                         '/>',
63                     //Bug#51778: The custom code will be replaced with sugar_html. customCode will be deplicated.
64                     'sugar_html' => array(
65                         'type' => 'submit',
66                         'value' => ' {$APP.LBL_EDIT_BUTTON_LABEL} ',
67                         'htmlOptions' => array(
68                             'id' => 'edit_button',
69                             'class' => 'button',
70                             'accessKey' => '{$APP.LBL_EDIT_BUTTON_KEY}',
71                             'name' => 'Edit',
72                             'onclick' =>
73                                 '{if $IS_TEMPLATE}'.
74                                     'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesDetailView\'; this.form.return_id.value=\'{$id}\'; this.form.action.value=\'ProjectTemplatesEditView\';'.
75                                 '{else}'.
76                                     'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'DetailView\'; this.form.return_id.value=\'{$id}\'; this.form.action.value=\'EditView\'; '.
77                                 '{/if}',
78                         ),
79                     ),
80                                 ),
81                                 array( 'customCode' =>
82                         '<input title="{$APP.LBL_DELETE_BUTTON_TITLE}" ' .
83                         'accessKey="{$APP.LBL_DELETE_BUTTON_KEY}" class="button" type="submit" ' .
84                         'name="Delete" id="delete_button" value="{$APP.LBL_DELETE_BUTTON_LABEL}"'.
85                         'onclick="'.
86                         '{if $IS_TEMPLATE}'.
87                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesListView\'; this.form.action.value=\'Delete\'; return confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\');'.
88                         '{else}'.
89                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ListView\'; this.form.action.value=\'Delete\'; return confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\');'.
90                         '{/if}"'.
91                         '/>',
92                     //Bug#51778: The custom code will be replaced with sugar_html. customCode will be deplicated.
93                     'sugar_html' => array(
94                         'type' => 'submit',
95                         'value' => '{$APP.LBL_DELETE_BUTTON_LABEL}',
96                         'htmlOptions' => array(
97                             'title' => '{$APP.LBL_DELETE_BUTTON_TITLE}',
98                             'accessKey' => '{$APP.LBL_DELETE_BUTTON_KEY}',
99                             'class' => 'button',
100                             'onclick' =>
101                                 '{if $IS_TEMPLATE}'.
102                                     'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesListView\'; this.form.action.value=\'Delete\'; return confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\');'.
103                                 '{else}'.
104                                     'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ListView\'; this.form.action.value=\'Delete\'; return confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\');'.
105                                 '{/if}',
106                         ),
107
108                     ),
109                                 ),
110
111                                  array( 'customCode' =>
112                         '<input title="{$APP.LBL_DUPLICATE_BUTTON_TITLE}" ' .
113                         'accessKey="{$APP.LBL_DUPLICATE_BUTTON_KEY}" class="button" type="submit" ' .
114                         'name="Duplicate" id="duplicate_button" value="{$APP.LBL_DUPLICATE_BUTTON_LABEL}"'.
115                         'onclick="'.
116                         '{if $IS_TEMPLATE}'.
117                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesDetailView\'; this.form.isDuplicate.value=true; this.form.action.value=\'projecttemplateseditview\'; this.form.return_id.value=\'{$id}\';'.
118                         '{else}'.
119                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'DetailView\'; this.form.isDuplicate.value=true; this.form.action.value=\'EditView\'; this.form.return_id.value=\'{$id}\';'.
120                         '{/if}"'.
121                         '"/>',
122                      //Bug#51778: The custom code will be replaced with sugar_html. customCode will be deplicated.
123                      'sugar_html' => array(
124                          'type' => 'submit',
125                          'value' => '{$APP.LBL_DUPLICATE_BUTTON_LABEL}',
126                          'htmlOptions' => array(
127                              'title' => '{$APP.LBL_DUPLICATE_BUTTON_TITLE}',
128                              'accessKey' => '{$APP.LBL_DUPLICATE_BUTTON_KEY}',
129                              'class' => 'button',
130                              'name' => 'Duplicate',
131                              'id' => 'duplicate_button',
132                              'onclick' =>
133                                  '{if $IS_TEMPLATE}'.
134                                      'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesDetailView\'; this.form.isDuplicate.value=true; this.form.action.value=\'projecttemplateseditview\'; this.form.return_id.value=\'{$id}\';'.
135                                  '{else}'.
136                                      'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'DetailView\'; this.form.isDuplicate.value=true; this.form.action.value=\'EditView\'; this.form.return_id.value=\'{$id}\';'.
137                                  '{/if}',
138                          ),
139                      ),
140                 ),
141
142                         ),
143                 ),
144         ),
145         'panels' => array ( 
146           'lbl_project_information' =>
147           array (
148                         array ( 
149                                 'name', 
150                                 'status', ),
151                         array (
152                                 array ( 
153                                         'name' => 'estimated_start_date',
154                                         'label' => 'LBL_DATE_START',
155                                 ),
156                                 'priority',
157                         ),
158                         array (
159                             array (
160                                         'name' => 'estimated_end_date',
161                                         'label' => 'LBL_DATE_END',
162                                   ),
163                                 ),
164                         array (
165                                 'description',
166                         ),
167           ),                            
168           'LBL_PANEL_ASSIGNMENT' => 
169           array (
170                 array (
171                   array (
172                         'name' => 'assigned_user_name',
173                         'label' => 'LBL_ASSIGNED_TO',
174                   ),
175                   array (
176                         'name' => 'modified_by_name',
177                         'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}&nbsp;',
178                         'label' => 'LBL_DATE_MODIFIED',
179                   ),
180                 ),
181                 array (
182                         array (
183                                 'name' => 'created_by_name',
184                                 'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}&nbsp;',
185                                 'label' => 'LBL_DATE_ENTERED',
186                         ),
187                 ),
188           ),                                            
189         ),
190 );
191 ?>