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