]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Tasks/metadata/detailviewdefs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Tasks / 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 $viewdefs ['Tasks'] = 
38 array (
39   'DetailView' => 
40   array (
41     'templateMeta' => 
42     array (
43       'form' => array (
44         'buttons' => 
45         array (
46            'EDIT',
47            'DUPLICATE',
48            'DELETE',
49            
50           array (
51             'customCode' => '{if $fields.status.value != "Completed"} <input type="hidden" name="isSaveAndNew" value="false">  <input type="hidden" name="status" value="">  <input id="close_and_create_new_button" title="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_TITLE}"  class="button"  onclick="this.form.action.value=\'Save\'; this.form.return_module.value=\'Tasks\'; this.form.isDuplicate.value=true; this.form.isSaveAndNew.value=true; this.form.return_action.value=\'EditView\'; this.form.isDuplicate.value=true; this.form.return_id.value=\'{$fields.id.value}\';"  name="button"  value="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_TITLE}"  type="submit">{/if}',
52               //Bug#51778: The custom code will be replaced with sugar_html. customCode will be deplicated.
53               'sugar_html' => array(
54                   'type' => 'submit',
55                   'value' => '{$APP.LBL_CLOSE_AND_CREATE_BUTTON_TITLE}',
56                   'htmlOptions' => array(
57                       'title' => '{$APP.LBL_CLOSE_AND_CREATE_BUTTON_TITLE}',
58                       'class' => 'button',
59                       'onclick' => 'this.form.action.value=\'Save\'; this.form.return_module.value=\'Tasks\'; this.form.isDuplicate.value=true; this.form.isSaveAndNew.value=true; this.form.return_action.value=\'EditView\'; this.form.isDuplicate.value=true; this.form.return_id.value=\'{$fields.id.value}\';',
60                       'name' => 'button',
61                       'id' => 'close_and_create_new_button',
62                   ),
63                   'template' => '{if $fields.status.value != "Completed"}[CONTENT]{/if}'
64               ),
65           ),
66            
67           array (
68             'customCode' => '{if $fields.status.value != "Completed"} <input type="hidden" name="isSave" value="false">  <input title="{$APP.LBL_CLOSE_BUTTON_TITLE}" id="close_button" class="button"  onclick="this.form.status.value=\'Completed\'; this.form.action.value=\'Save\';this.form.return_module.value=\'Tasks\';this.form.isSave.value=true;this.form.return_action.value=\'DetailView\'; this.form.return_id.value=\'{$fields.id.value}\'"  name="button1"  value="{$APP.LBL_CLOSE_BUTTON_TITLE}"  type="submit">{/if}',
69             //Bug#51778: The custom code will be replaced with sugar_html. customCode will be deplicated.
70               'sugar_html' => array(
71                   'type' => 'submit',
72                   'value' => '{$APP.LBL_CLOSE_BUTTON_TITLE}',
73                   'htmlOptions' => array(
74                       'title' => '{$APP.LBL_CLOSE_BUTTON_TITLE}',
75                       'class' => 'button',
76                       'onclick' => 'this.form.status.value=\'Completed\'; this.form.action.value=\'Save\';this.form.return_module.value=\'Tasks\';this.form.isSave.value=true;this.form.return_action.value=\'DetailView\'; this.form.return_id.value=\'{$fields.id.value}\'',
77                       'name' => 'button1',
78                       'id' => 'close_button',
79                   ),
80               ),
81           ),
82         ),
83         'hidden' => array(
84             '<input type="hidden" name="isSaveAndNew">',
85             '<input type="hidden" name="status" value="">',
86             '<input type="hidden" name="isSave">'
87         ),
88       ),
89       'maxColumns' => '2',
90       'widths' => 
91       array (
92          
93         array (
94           'label' => '10',
95           'field' => '30',
96         ),
97          
98         array (
99           'label' => '10',
100           'field' => '30',
101         ),
102       ),
103       'useTabs' => false,
104     ),
105     'panels' => 
106     array (
107       'lbl_task_information' => 
108       array (
109          
110         array (
111            
112           array (
113             'name' => 'name',
114             'label' => 'LBL_SUBJECT',
115           ),
116            'status',
117         ),
118          
119         array (
120            'date_start',
121            
122           array (
123             'name' => 'parent_name',
124             'customLabel' => '{sugar_translate label=\'LBL_MODULE_NAME\' module=$fields.parent_type.value}',
125           ),
126         ),
127          
128         array (
129            'date_due',
130            
131           array (
132             'name' => 'contact_name',
133             'label' => 'LBL_CONTACT',
134           ),
135         ),
136          
137         array (
138            'priority',
139         ),
140          
141         array (
142            'description',
143         ),
144       ),
145       'LBL_PANEL_ASSIGNMENT' => 
146       array (
147          
148         array (
149            
150           array (
151             'name' => 'assigned_user_name',
152             'label' => 'LBL_ASSIGNED_TO',
153           ),
154           
155         ),
156          
157         array (
158            
159           array (
160             'name' => 'date_entered',
161             'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}',
162             'label' => 'LBL_DATE_ENTERED',
163           ),
164            
165           array (
166             'name' => 'date_modified',
167             'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}',
168             'label' => 'LBL_DATE_MODIFIED',
169           ),
170         ),
171       ),
172     ),
173   ),
174
175 );
176 ?>