Account Suspended
Account Suspended
This Account has been suspended.
Contact your hosting provider
for more information.
Main Page
Related Pages
Data Structures
Files
File List
All
Data Structures
Functions
Variables
Pages
app
protected
modules
contacts
views
ContactsMassEditView.php
1
<?php
2
/*********************************************************************************
3
* Zurmo is a customer relationship management program developed by
4
* Zurmo, Inc. Copyright (C) 2017 Zurmo Inc.
5
*
6
* Zurmo 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 ZURMO, ZURMO DISCLAIMS THE WARRANTY
11
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12
*
13
* Zurmo 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 Zurmo, Inc. with a mailing address at 27 North Wacker Drive
24
* Suite 370 Chicago, IL 60606. or at email address contact@zurmo.com.
25
*
26
* The interactive user interfaces in original and modified 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 Zurmo
32
* logo and Zurmo copyright notice. If the display of the logo is not reasonably
33
* feasible for technical reasons, the Appropriate Legal Notices must display the words
34
* "Copyright Zurmo Inc. 2017. All rights reserved".
35
********************************************************************************/
36
37
class
ContactsMassEditView
extends
MassEditView
38
{
39
public
static
function
getDefaultMetadata()
40
{
41
$metadata = array(
42
'global'
=> array(
43
'toolbar'
=> array(
44
'elements'
=> array(
45
array(
'type'
=>
'SaveButton'
),
46
array(
'type'
=>
'CancelLink'
),
47
),
48
),
49
'derivedAttributeTypes'
=> array(
50
'ContactStateDropDown'
,
51
),
52
'nonPlaceableAttributeNames'
=> array(
53
'title'
,
54
'firstName'
,
55
'lastName'
,
56
'state'
,
57
),
58
'panelsDisplayType'
=> FormLayout::PANELS_DISPLAY_TYPE_ALL,
59
'panels'
=> array(
60
array(
61
'rows'
=> array(
62
array(
'cells'
=>
63
array(
64
array(
65
'elements'
=> array(
66
array(
'attributeName'
=>
'owner'
,
'type'
=>
'User'
),
67
),
68
),
69
)
70
),
71
array(
'cells'
=>
72
array(
73
array(
74
'elements'
=> array(
75
array(
'attributeName'
=>
'source'
,
'type'
=>
'DropDown'
,
'addBlank'
=>
true
),
76
),
77
),
78
)
79
),
80
),
81
),
82
),
83
),
84
);
85
return
$metadata;
86
}
87
}
88
?>
MassEditView
Definition:
MassEditView.php:40
ContactsMassEditView
Definition:
ContactsMassEditView.php:37
Generated on Sun Jan 17 2021 07:10:21
Account Suspended
Account Suspended
This Account has been suspended.
Contact your hosting provider
for more information.