Browse
For agents
About
PixCodes
/
2.3.7
PixCodes
v2.3.7
Switch version
2.3.9
trunk
2.3.4
2.3.5
2.3.6
2.3.7
2.3.8
Overview
Code
pixcodes
/
params
/
text.php
text.php
in PixCodes 2.3.7, at params/text.php
9 lines
455 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
=
"
span12
"
;
3
if
(
isset
(
$
param
[
'
admin_class
'
]
)
)
$
class
=
$
param
[
'
admin_class
'
]
;
4
if
(
isset
(
$
param
[
'
is_content
'
]
)
)
$
is_content
=
'
class="is_shortcode_content"
'
;
else
{
$
is_content
=
'
'
;
}
?
>
5
6
<
span
class
=
"
<?php echo
$
class
; ?>
"
>
7
<
label
for
=
"
<?php echo
$
param
['param_key'] ?>
"
>
<
?
php
echo
$
param
[
'
name
'
]
?
>
<
/
label
>
8
<
input
type
=
"
<?php echo
$
param
['type'] ?>
"
name
=
"
<?php echo
$
param
['param_key'] ?>
"
<
?
php
echo
$
is_content
?
>
/
>
9
<
/
span
>