first commit

This commit is contained in:
2026-04-13 13:17:58 +02:00
commit 753a9096f6
7848 changed files with 2772238 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?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_Fonts_Menu extends Custom_Fonts_Promotion_Item implements Menu_Item_Interface {
public function get_position(): int {
return 10;
}
public function get_slug(): string {
return 'elementor_custom_fonts';
}
public function get_parent_slug(): string {
return Menu_Config::ELEMENTOR_MENU_SLUG;
}
public function get_label(): string {
return esc_html__( 'Fonts', 'elementor' );
}
public function get_group_id(): string {
return Menu_Config::CUSTOM_ELEMENTS_GROUP_ID;
}
}