]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Tasks/metadata/quickcreatedefs.php
Release 6.5.16
[Github/sugarcrm.git] / modules / Tasks / metadata / quickcreatedefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2013 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   'QuickCreate' => 
40   array (
41     'templateMeta' => 
42     array (
43       'form' => 
44       array (
45         'hidden' => 
46         array (
47            '<input type="hidden" name="isSaveAndNew" value="false">',
48            '<input type="hidden" name="is_ajax_call" value="1">',
49         ),
50         'buttons' => 
51         array (
52            'SAVE',
53            'CANCEL',
54            
55           array (
56             '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}\'; return check_form(\'EditView\');" type="submit" name="button" value="{$APP.LBL_CLOSE_AND_CREATE_BUTTON_LABEL}">{/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       'default' => 
79       array (
80          
81         array (
82            
83           array (
84             'name' => 'name',
85             'displayParams' => 
86             array (
87               'required' => true,
88             ),
89           ),
90            
91           array (
92             'name' => 'status',
93             'displayParams' => 
94             array (
95               'required' => true,
96             ),
97           ),
98         ),
99          
100         array (
101            
102           array (
103             'name' => 'date_start',
104             'type' => 'datetimecombo',
105             'displayParams' => 
106             array (
107               'showNoneCheckbox' => true,
108               'showFormats' => true,
109             ),
110           ),
111            
112           array (
113             'name' => 'parent_name',
114             'label' => 'LBL_LIST_RELATED_TO',
115           ),
116         ),
117          
118         array (
119            
120           array (
121             'name' => 'date_due',
122             'type' => 'datetimecombo',
123             'displayParams' => 
124             array (
125               'showNoneCheckbox' => true,
126               'showFormats' => true,
127             ),
128           ),
129            
130           array (
131             'name' => 'contact_name',
132             'label' => 'LBL_CONTACT_NAME',
133           ),
134         ),
135          
136         array (
137            
138           array (
139             'name' => 'priority',
140             'displayParams' => 
141             array (
142               'required' => true,
143             ),
144           ),
145         ),
146          array (
147           array (
148             'name' => 'assigned_user_name',
149             'label' => 'LBL_ASSIGNED_TO_NAME',
150           ),
151         ),
152         array (
153            
154           array (
155             'name' => 'description',
156             'displayParams' => 
157             array (
158               'rows' => 8,
159               'cols' => 60,
160             ),
161           ),
162         ),
163       ),
164     ),
165   ),
166 );
167 ?>