Browse
For agents
About
Canvas
/
2.4.9
Canvas
v2.4.9
Switch version
2.5.5
2.5.4
trunk
2.0.3
2.0.4
2.0.5
2.0.6
2.0.7
2.0.8
2.0.9
2.1.0
2.1.1
2.1.2
2.1.3
2.1.4
2.1.5
2.1.6
2.1.7
2.1.8
2.1.9
2.2.0
2.2.1
2.2.2
2.2.3
2.2.4
All 54 releases
Overview
Code
canvas
/
components
/
basic-elements
/
block-tab
/
render.php
render.php
in Canvas 2.4.9, at components/basic-elements/block-tab/render.php
16 lines
404 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
/**
3
* Tab block template
4
*
5
*
@var
$attributes - block attributes
6
*
@var
$content - inner blocks
7
*
@var
$options - layout options
8
*
9
*
@package
Canvas
10
*/
11
12
?
>
13
<
div
class
=
"
<?php echo esc_attr(
$
attributes
['className'] ); ?>
"
<
?
php
echo
(
isset
(
$
attributes
[
'
anchor
'
]
)
?
'
id="
'
.
esc_attr
(
$
attributes
[
'
anchor
'
]
)
.
'
"
'
:
'
'
)
;
?
>
>
14
<
?
php
echo
(
string
)
$
content
;
//
XSS.
?
>
15
<
/
div
>
16