]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Tasks/metadata/editviewdefs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Tasks / metadata / editviewdefs.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   'EditView' => 
40   array (
41     'templateMeta' => 
42     array (
43       'form' => 
44       array (
45         'hidden' => 
46         array (
47            '<input type="hidden" name="isSaveAndNew" value="false">',
48         ),
49         'buttons' => 
50         array (
51            'SAVE',
52            'CANCEL',
53            
54           array (
55             'customCode' => '{if $fields.status.value != "Completed"}<input title="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_TITLE}" class="button" onclick="document.getElementById(\'status\').value=\'Completed\'; 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.return_id.value=\'{$fields.id.value}\'; if(check_form(\'EditView\'))SUGAR.ajaxUI.submitForm(this.form);" type="button" name="button" value="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_LABEL}">{/if}',
56           ),
57         ),
58       ),
59       'maxColumns' => '2',
60       'widths' => 
61       array (
62          
63         array (
64           'label' => '10',
65           'field' => '30',
66         ),
67          
68         array (
69           'label' => '10',
70           'field' => '30',
71         ),
72       ),
73       'useTabs' => false,
74     ),
75     'panels' => 
76     array (
77       'lbl_task_information' => 
78       array (
79          
80         array (
81            
82           array (
83             'name' => 'name',
84             'displayParams' => 
85             array (
86               'required' => true,
87             ),
88           ),
89            
90           array (
91             'name' => 'status',
92             'displayParams' => 
93             array (
94               'required' => true,
95             ),
96           ),
97         ),
98          
99         array (
100            
101           array (
102             'name' => 'date_start',
103             'type' => 'datetimecombo',
104             'displayParams' => 
105             array (
106               'showNoneCheckbox' => true,
107               'showFormats' => true,
108             ),
109           ),
110            
111           array (
112             'name' => 'parent_name',
113             'label' => 'LBL_LIST_RELATED_TO',
114           ),
115         ),
116          
117         array (
118            
119           array (
120             'name' => 'date_due',
121             'type' => 'datetimecombo',
122             'displayParams' => 
123             array (
124               'showNoneCheckbox' => true,
125               'showFormats' => true,
126             ),
127           ),
128            
129           array (
130             'name' => 'contact_name',
131             'label' => 'LBL_CONTACT_NAME',
132           ),
133         ),
134          
135         array (
136            
137           array (
138             'name' => 'priority',
139             'displayParams' => 
140             array (
141               'required' => true,
142             ),
143           ),
144            
145         ),
146          
147         array (
148            
149           array (
150             'name' => 'description',
151           ),
152         ),
153       ),
154       
155           'LBL_PANEL_ASSIGNMENT' => array(
156             array(
157                     'assigned_user_name',
158             ),
159           ),
160       
161     ),
162   ),
163 );
164 ?>