• File: editor-one-icons-menu.php
  • Full Path: /home4/jdaxcom/j3dax.online/wp-content/plugins/elementor/modules/promotions/admin-menu-items/editor-one-icons-menu.php
  • Date Modified: 02/18/2026 4:17 AM
  • File size: 736 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Elementor\Modules\Promotions\AdminMenuItems;

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

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

class Editor_One_Icons_Menu extends Custom_Icons_Promotion_Item implements Menu_Item_Interface {

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

	public function get_slug(): string {
		return 'elementor_custom_icons';
	}

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

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

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