• File: editor-one-templates-menu.php
  • Full Path: /home/bravrvjk/hpgt.org/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/editor-one-templates-menu.php
  • Date Modified: 01/20/2026 1:22 PM
  • File size: 985 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Elementor\Includes\TemplateLibrary\Sources\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_Templates_Menu implements Menu_Item_Third_Level_Interface {

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

	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__( 'Templates', 'elementor' );
	}

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

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

	public function get_icon(): string {
		return 'folder';
	}

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

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