# adminify/1.0.4/Inc/classes/MenuStyle.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 1.0.4. 18 lines.

- Page: https://pluginprobe.com/plugins/adminify/1.0.4/code/Inc/classes/MenuStyle.php
- Raw: https://pluginprobe.com/plugins/adminify/1.0.4/raw/Inc/classes/MenuStyle.php
- Modified: 2021-10-02T12:08:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/1.0.4/code/Inc/classes/MenuStyle.php#L10-L20`.

```php
<?php

namespace WPAdminify\Inc\Classes;

use  WPAdminify\Inc\Classes\MenuStyles\VerticalMainMenu ;
// no direct access allowed
if ( !defined( 'ABSPATH' ) ) {
    exit;
}
class MenuStyle
{
    public function __construct()
    {
        $layout_type = ( !empty($this->options['menu_layout_settings']['layout_type']) ? $this->options['menu_layout_settings']['layout_type'] : 'vertical' );
        new VerticalMainMenu();
    }

}
```
