Browse
For agents
About
Block Editor Colors
/
1.2.0
Block Editor Colors
v1.2.0
Switch version
1.2.7
1.2.4
1.2.5
1.2.6
trunk
1.2.0
1.2.1
1.2.2
1.2.3
Overview
Code
block-editor-colors
/
includes
/
admin
/
AdminPages.php
AdminPages.php
in Block Editor Colors 1.2.0, at includes/admin/AdminPages.php
26 lines
433 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
namespace
BlockEditorColors
;
4
5
class
AdminPages
6
{
7
8
public
function
__construct
(
)
9
{
10
$
this
->
load_pages
(
)
;
11
add_action
(
'
admin_menu
'
,
array
(
$
this
,
'
create_pages
'
)
)
;
12
}
13
14
private
function
load_pages
(
)
15
{
16
include_once
dirname
(
__FILE__
)
.
'
/pages/SettingsPage.php
'
;
17
}
18
19
public
function
create_pages
(
)
20
{
21
new
SettingsPage
(
)
;
22
}
23
24
}
25
26
new
AdminPages
(
)
;