Browse
For agents
About
Nested Pages
/
3.2.2
Nested Pages
v3.2.2
Switch version
3.3.1
3.2.15
3.2.14
3.1.8
3.1.9
3.2.0
3.2.1
3.2.10
3.2.11
3.2.12
3.2.13
3.2.2
3.2.3
3.2.4
3.2.5
3.2.6
3.2.7
3.2.8
3.2.9
trunk
1.0
1.1
1.1.1
1.1.2
1.1.3
All 106 releases
Overview
Code
wp-nested-pages
/
app
/
Entities
/
AdminCustomization
/
AdminCustomizationFactory.php
AdminCustomizationFactory.php
15 lines
257 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
NestedPages
\
Entities
\
AdminCustomization
;
3
4
use
NestedPages
\
Entities
\
AdminCustomization
\
AdminMenuItems
;
5
6
/**
7
* Initialize Admin Customizations
8
*/
9
class
AdminCustomizationFactory
10
{
11
public
function
__construct
(
)
12
{
13
new
AdminMenuItems
;
14
}
15
}