# elementor/4.0.2/modules/system-info/admin-menu-items/editor-one-system-info-menu.php

Elementor Website Builder – more than just a page builder, version 4.0.2. 52 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.0.2/code/modules/system-info/admin-menu-items/editor-one-system-info-menu.php
- Raw: https://pluginprobe.com/plugins/elementor/4.0.2/raw/modules/system-info/admin-menu-items/editor-one-system-info-menu.php
- Modified: 2026-01-20T08:22:36+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/elementor/4.0.2/code/modules/system-info/admin-menu-items/editor-one-system-info-menu.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\System_Info\AdminMenuItems;

use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_With_Page;
use Elementor\Core\Admin\EditorOneMenu\Interfaces\Menu_Item_Interface;
use Elementor\Modules\EditorOne\Classes\Menu_Config;
use Elementor\Plugin;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Editor_One_System_Info_Menu implements Menu_Item_Interface, Admin_Menu_Item_With_Page {

	public function get_capability(): string {
		return 'manage_options';
	}

	public function get_parent_slug(): string {
		return Menu_Config::ELEMENTOR_MENU_SLUG;
	}

	public function is_visible(): bool {
		return true;
	}

	public function get_label(): string {
		return esc_html__( 'System Info', 'elementor' );
	}

	public function get_position(): int {
		return 10;
	}

	public function get_slug(): string {
		return 'elementor-system-info';
	}

	public function get_group_id(): string {
		return Menu_Config::SYSTEM_GROUP_ID;
	}

	public function get_page_title() {
		return $this->get_label();
	}

	public function render() {
		Plugin::$instance->system_info->display_page();
	}
}

```
