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

Adminify – White Label, Admin Menu Editor, Login Customizer, version 4.1.3. 14 lines.

- Page: https://pluginprobe.com/plugins/adminify/4.1.3/code/Inc/Modules/MenuEditor/MenuEditorOptions.php
- Raw: https://pluginprobe.com/plugins/adminify/4.1.3/raw/Inc/Modules/MenuEditor/MenuEditorOptions.php
- Modified: 2022-10-31T13:36:02+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.1.3/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 ) );
	}
}

```
