]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Tasks/metadata/detailviewdefs.php
Release 6.2.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-2011 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' => 
44       array (
45         'buttons' => 
46         array (
47            'EDIT',
48            'DUPLICATE',
49            'DELETE',
50            
51           array (
52             'customCode' => '{if $fields.status.value != "Completed"} <input type="hidden" name="isSaveAndNew" value="false">  <input type="hidden" name="status" value="">  <input title="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_TITLE}"  accesskey="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_KEY}"  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}',
53           ),
54            
55           array (
56             'customCode' => '{if $fields.status.value != "Completed"} <input type="hidden" name="isSave" value="false">  <input title="{$APP.LBL_CLOSE_BUTTON_TITLE}"  accesskey="{$APP.LBL_CLOSE_BUTTON_KEY}"  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}',
57           ),
58         ),
59       ),
60       'maxColumns' => '2',
61       'widths' => 
62       array (
63          
64         array (
65           'label' => '10',
66           'field' => '30',
67         ),
68          
69         array (
70           'label' => '10',
71           'field' => '30',
72         ),
73       ),
74       'useTabs' => false,
75     ),
76     'panels' => 
77     array (
78       'lbl_task_information' => 
79       array (
80          
81         array (
82            
83           array (
84             'name' => 'name',
85             'label' => 'LBL_SUBJECT',
86           ),
87            'status',
88         ),
89          
90         array (
91            'date_start',
92            
93           array (
94             'name' => 'parent_name',
95             'customLabel' => '{sugar_translate label=\'LBL_MODULE_NAME\' module=$fields.parent_type.value}',
96           ),
97         ),
98          
99         array (
100            'date_due',
101            
102           array (
103             'name' => 'contact_name',
104             'label' => 'LBL_CONTACT',
105           ),
106         ),
107          
108         array (
109            'priority',
110         ),
111          
112         array (
113            'description',
114         ),
115       ),
116       'LBL_PANEL_ASSIGNMENT' => 
117       array (
118          
119         array (
120            
121           array (
122             'name' => 'assigned_user_name',
123             'label' => 'LBL_ASSIGNED_TO',
124           ),
125           
126         ),
127          
128         array (
129            
130           array (
131             'name' => 'date_entered',
132             'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}',
133             'label' => 'LBL_DATE_ENTERED',
134           ),
135            
136           array (
137             'name' => 'date_modified',
138             'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}',
139             'label' => 'LBL_DATE_MODIFIED',
140           ),
141         ),
142       ),
143     ),
144   ),
145
146 );
147 ?>