Browse
For agents
About
Gutenify – Visual Site Builder Blocks & Starter Templates
/
trunk
Gutenify – Visual Site Builder Blocks & Starter Templates
vtrunk
Switch version
1.7.0
1.6.6
1.6.5
1.6.4
trunk
0.0.1
0.0.2
0.0.3
1.0.0
1.0.1
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
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
All 72 releases
Overview
Code
gutenify
/
core
/
dist
/
blocks
/
container
/
index.php
index.php
in Gutenify – Visual Site Builder Blocks & Starter Templates trunk, at core/dist/blocks/container/index.php
13 lines
288 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
namespace
gutenify
;
3
defined
(
'
ABSPATH
'
)
||
exit
;
4
class
Container
{
5
public
static
function
init
(
)
{
6
add_action
(
'
init
'
,
array
(
__CLASS__
,
'
register_block
'
)
)
;
7
}
8
public
static
function
register_block
(
)
{
9
register_block_type
(
__DIR__
)
;
10
}
11
}
12
Container
::
init
(
)
;
13