Browse
For agents
About
Ultimate WP Mail
/
trunk
Ultimate WP Mail
vtrunk
Switch version
1.3.13
1.3.12
trunk
0.11
0.25
1.0.0
1.0.1
1.0.10
1.0.11
1.0.12
1.0.13
1.0.14
1.0.15
1.0.16
1.0.17
1.0.18
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
1.0.7
1.0.8
1.0.9
1.1.0
All 46 releases
Overview
Code
ultimate-wp-mail
/
includes
/
CustomElementSection.class.php
CustomElementSection.class.php
in Ultimate WP Mail trunk, at includes/CustomElementSection.class.php
18 lines
336 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
class
UWPM_Element_Section
{
3
4
//
the code-friendly name of the section
5
public
$
slug
;
6
7
//
the display name for the section
8
public
$
label
;
9
10
public
function
__construct
(
$
element_type
,
$
params
=
array
(
)
)
{
11
12
$
this
->
slug
=
$
element_type
;
13
14
$
this
->
label
=
empty
(
$
params
[
'
label
'
]
)
?
$
this
->
slug
:
$
params
[
'
label
'
]
;
15
}
16
}
17
18
?
>