This commit is contained in:
proelements
2026-02-16 11:44:35 +02:00
parent 08ec8d01f1
commit b499583e5a
348 changed files with 3915 additions and 1414 deletions

View File

@@ -9,23 +9,23 @@ if ( ! defined( 'ABSPATH' ) ) {
}
class Theme_Builder_Menu_Item implements Admin_Menu_Item {
public function get_capability() {
public function get_capability(): string {
return 'publish_posts';
}
public function get_label() {
public function get_label(): string {
return esc_html__( 'Theme Builder', 'elementor-pro' );
}
public function get_parent_slug() {
public function get_parent_slug(): string {
return Source_Local::ADMIN_MENU_SLUG;
}
public function is_visible() {
public function is_visible(): bool {
return true;
}
public function get_position() {
return null;
public function get_position(): ?int {
return 20;
}
}