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

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

- Page: https://pluginprobe.com/plugins/adminify/4.2.21/code/Inc/Modules/MenuEditor/MenuEditorOptions.php
- Raw: https://pluginprobe.com/plugins/adminify/4.2.21/raw/Inc/Modules/MenuEditor/MenuEditorOptions.php
- Modified: 2026-05-20T13:22:08+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/4.2.21/code/Inc/Modules/MenuEditor/MenuEditorOptions.php#L10-L20`.

```php
<?php

namespace PXLBSAdminify\Inc\Modules\MenuEditor;

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly.
}

use PXLBSAdminify\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 ) );
	}
}

```
