]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Project/metadata/detailviewdefs.php
Release 6.5.0
[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="button" ' .
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\'; if( confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\') )  this.form.submit(); '.
88                         '{else}'.
89                             'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ListView\'; this.form.action.value=\'Delete\'; if( confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\'))  this.form.submit(); '.
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' => 'button',
95                         'id'    => 'delete_button',
96                         'value' => '{$APP.LBL_DELETE_BUTTON_LABEL}',
97                         'htmlOptions' => array(
98                             'title' => '{$APP.LBL_DELETE_BUTTON_TITLE}',
99                             'accessKey' => '{$APP.LBL_DELETE_BUTTON_KEY}',
100                             'id'    => 'delete_button',
101                             'class' => 'button',
102                             'onclick' =>
103                                 '{if $IS_TEMPLATE}'.
104                                     'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ProjectTemplatesListView\'; this.form.action.value=\'Delete\'; if (confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\')) this.form.submit();'.
105                                 '{else}'.
106                                     'this.form.return_module.value=\'Project\'; this.form.return_action.value=\'ListView\'; this.form.action.value=\'Delete\'; if (confirm(\'{$APP.NTC_DELETE_CONFIRMATION}\')) this.form.submit();'.
107                                 '{/if}',
108                         ),
109
110                     ),
111                                 ),
112
113                                  array( 'customCode' =>
114                         '<input title="{$APP.LBL_DUPLICATE_BUTTON_TITLE}" ' .
115                         'accessKey="{$APP.LBL_DUPLICATE_BUTTON_KEY}" class="button" type="submit" ' .
116                         'name="Duplicate" id="duplicate_button" value="{$APP.LBL_DUPLICATE_BUTTON_LABEL}"'.
117                         'onclick="'.
118                         '{if $IS_TEMPLATE}'.
119                             '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}\';'.
120                         '{else}'.
121                             '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}\';'.
122                         '{/if}"'.
123                         '"/>',
124                      //Bug#51778: The custom code will be replaced with sugar_html. customCode will be deplicated.
125                      'sugar_html' => array(
126                          'type' => 'submit',
127                          'value' => '{$APP.LBL_DUPLICATE_BUTTON_LABEL}',
128                          'htmlOptions' => array(
129                              'title' => '{$APP.LBL_DUPLICATE_BUTTON_TITLE}',
130                              'accessKey' => '{$APP.LBL_DUPLICATE_BUTTON_KEY}',
131                              'class' => 'button',
132                              'name' => 'Duplicate',
133                              'id' => 'duplicate_button',
134                              'onclick' =>
135                                  '{if $IS_TEMPLATE}'.
136                                      '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}\';'.
137                                  '{else}'.
138                                      '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}\';'.
139                                  '{/if}',
140                          ),
141                      ),
142                 ),
143
144                         ),
145                 ),
146         ),
147         'panels' => array ( 
148           'lbl_project_information' =>
149           array (
150                         array ( 
151                                 'name', 
152                                 'status', ),
153                         array (
154                                 array ( 
155                                         'name' => 'estimated_start_date',
156                                         'label' => 'LBL_DATE_START',
157                                 ),
158                                 'priority',
159                         ),
160                         array (
161                             array (
162                                         'name' => 'estimated_end_date',
163                                         'label' => 'LBL_DATE_END',
164                                   ),
165                                 ),
166                         array (
167                                 'description',
168                         ),
169           ),                            
170           'LBL_PANEL_ASSIGNMENT' => 
171           array (
172                 array (
173                   array (
174                         'name' => 'assigned_user_name',
175                         'label' => 'LBL_ASSIGNED_TO',
176                   ),
177                   array (
178                         'name' => 'modified_by_name',
179                         'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}&nbsp;',
180                         'label' => 'LBL_DATE_MODIFIED',
181                   ),
182                 ),
183                 array (
184                         array (
185                                 'name' => 'created_by_name',
186                                 'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}&nbsp;',
187                                 'label' => 'LBL_DATE_ENTERED',
188                         ),
189                 ),
190           ),                                            
191         ),
192 );
193 ?>