PATH:
home
/
lab2454c
/
argowells.com
/
wp-content
/
plugins
/
elementor
/
modules
/
promotions
/
admin-menu-items
<?php namespace Elementor\Modules\Promotions\AdminMenuItems; use Elementor\Core\Admin\EditorOneMenu\Interfaces\Menu_Item_Third_Level_Interface; use Elementor\Modules\EditorOne\Classes\Menu_Config; if ( ! defined( 'ABSPATH' ) ) { exit; } class Editor_One_Custom_Elements_Menu implements Menu_Item_Third_Level_Interface { 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__( 'Custom Elements', 'elementor' ); } public function get_position(): int { return 70; } public function get_slug(): string { return 'elementor-custom-elements'; } public function get_icon(): string { return 'adjustments'; } public function get_group_id(): string { return Menu_Config::CUSTOM_ELEMENTS_GROUP_ID; } public function has_children(): bool { return true; } }
[-] editor-one-custom-code-menu.php
[edit]
[-] form-submissions-promotion-item.php
[edit]
[+]
..
[-] editor-one-submissions-menu.php
[edit]
[-] editor-one-popups-menu.php
[edit]
[-] go-pro-promotion-item.php
[edit]
[-] base-promotion-item.php
[edit]
[-] popups-promotion-item.php
[edit]
[-] editor-one-custom-elements-menu.php
[edit]
[-] editor-one-icons-menu.php
[edit]
[-] custom-code-promotion-item.php
[edit]
[+]
interfaces
[-] base-promotion-template.php
[edit]
[-] custom-fonts-promotion-item.php
[edit]
[-] editor-one-fonts-menu.php
[edit]
[-] custom-icons-promotion-item.php
[edit]