PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 3.2.2
ShopBuilder – WooCommerce Builder For Elementor v3.2.2
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | app/Controllers/Admin/AdminInit.php +4 -6 3.4.23.2.2 View file →
@@ -67,12 +67,10 @@
67 67 public function upgrade() {
68 68 Notice\Upgrade::instance();
69 69 // phpcs:ignore Squiz.PHP.CommentedOutCode.Found
70 70 // Notice\BFDiscount::instance();.
71 - // phpcs:ignore Squiz.PHP.CommentedOutCode.Found
72 - // Notice\BlackFridayV2::instance();.
71 + Notice\BlackFridayV2::instance();
73 72 Notice\Review::instance();
74 - Notice\CachePermission::instance();
75 73 }
76 74
77 75 /**
78 76 * Init.
@@ -81,9 +79,9 @@
81 79 */
82 80 public function init() {
83 81 add_action( 'admin_menu', [ $this, 'add_menu' ], 25 );
84 82 add_action( 'in_admin_header', [ $this, 'in_admin_header_functionality' ], 1000 );
85 - // PluginRow registered earlier in ShopBuilder::init() so it survives dependency failures.
83 + PluginRow::instance();
86 84 }
87 85
88 86 /**
89 87 * Add menu.
@@ -118,10 +116,10 @@
118 116 [ $this, 'get_help_page' ],
119 117 );
120 118 add_submenu_page(
121 119 self::MENU_PAGE_SLUG,
122 - esc_html__( 'Themes', 'shopbuilder' ),
123 - esc_html__( 'Themes', 'shopbuilder' ),
120 + esc_html__( 'Themes & Apps', 'shopbuilder' ),
121 + esc_html__( 'Themes & Apps', 'shopbuilder' ),
124 122 self::MENU_CAPABILITY,
125 123 'rtsb-themes',
126 124 [ $this, 'get_themes_page' ],
127 125 );