# elementor/3.34.1/modules/promotions/admin-menu-items/editor-one-fonts-menu.php

Elementor Website Builder – more than just a page builder, version 3.34.1. 34 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.34.1/code/modules/promotions/admin-menu-items/editor-one-fonts-menu.php
- Raw: https://pluginprobe.com/plugins/elementor/3.34.1/raw/modules/promotions/admin-menu-items/editor-one-fonts-menu.php
- Modified: 2025-12-22T12:25:58+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/3.34.1/code/modules/promotions/admin-menu-items/editor-one-fonts-menu.php#L10-L20`.

```php
<?php

namespace Elementor\Modules\Promotions\AdminMenuItems;

use Elementor\Modules\EditorOne\Classes\Menu\Menu_Item_Interface;
use Elementor\Modules\EditorOne\Classes\Menu_Config;

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

class Editor_One_Fonts_Menu extends Custom_Fonts_Promotion_Item implements Menu_Item_Interface {

	public function get_position() {
		return 10;
	}

	public function get_slug() {
		return 'elementor_custom_fonts';
	}

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

	public function get_label() {
		return esc_html__( 'Fonts', 'elementor' );
	}

	public function get_group_id() {
		return Menu_Config::CUSTOM_ELEMENTS_GROUP_ID;
	}
}

```
