# adminify/2.0.7/Inc/Modules/MenuEditor/MenuEditorOptions.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 2.0.7. 15 lines.

- Page: https://pluginprobe.com/plugins/adminify/2.0.7/code/Inc/Modules/MenuEditor/MenuEditorOptions.php
- Raw: https://pluginprobe.com/plugins/adminify/2.0.7/raw/Inc/Modules/MenuEditor/MenuEditorOptions.php
- Modified: 2022-05-02T06:51:50+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/2.0.7/code/Inc/Modules/MenuEditor/MenuEditorOptions.php#L10-L20`.

```php
<?php

namespace WPAdminify\Inc\Modules\MenuEditor;

use WPAdminify\Inc\Base_Model;

class MenuEditorOptions extends MenuEditorModel
{
    public function __construct()
    {
        // this should be first so the default values get stored
        parent::__construct((array) get_option($this->prefix));
    }
}

```
