Browse
For agents
About
Adminify – White Label, Admin Menu Editor, Login Customizer
/
1.0.5
Adminify – White Label, Admin Menu Editor, Login Customizer
v1.0.5
Switch version
4.3.1
4.3.0
4.2.26
4.2.25
4.2.24
4.2.23
4.2.22
4.2.21
4.2.20
4.2.19
4.2.18
4.2.17
4.2.16
4.2.15
4.2.14
4.2.13
4.2.12
4.2.11
4.2.10
4.2.9
4.2.8
4.2.7
4.2.6
4.2.5
4.1.17
All 164 releases
Overview
Code
adminify
/
Inc
/
Classes
/
MenuStyle.php
MenuStyle.php
in Adminify – White Label, Admin Menu Editor, Login Customizer 1.0.5, at Inc/Classes/MenuStyle.php
18 lines
428 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
WPAdminify
\
Inc
\
Classes
;
4
5
use
WPAdminify
\
Inc
\
Classes
\
MenuStyles
\
VerticalMainMenu
;
6
//
no direct access allowed
7
if
(
!
defined
(
'
ABSPATH
'
)
)
{
8
exit
;
9
}
10
class
MenuStyle
11
{
12
public
function
__construct
(
)
13
{
14
$
layout_type
=
(
!
empty
(
$
this
->
options
[
'
menu_layout_settings
'
]
[
'
layout_type
'
]
)
?
$
this
->
options
[
'
menu_layout_settings
'
]
[
'
layout_type
'
]
:
'
vertical
'
)
;
15
new
VerticalMainMenu
(
)
;
16
}
17
18
}