PluginProbe
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution with eCommerce Templates & Woo Widgets / 4.9.0
ShopEngine Elementor WooCommerce Builder Addon – All in One WooCommerce Solution with eCommerce Templates & Woo Widgets v4.9.0
4.9.5 4.9.4 4.9.3 4.9.2 4.9.1 4.9.0 2.0.0 2.1.0 2.2.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.0 2.5.1 3.0.0 3.1.0 3.1.1 4.0.0 4.0.1 4.1.0 4.1.1 4.2.0 4.2.1 4.3.0 All 85 releases
shopengine / utils / onboard / plugin-skin.php
plugin-skin.php
19 lines 454 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace ShopEngine\Utils\Onboard;
4
5 defined( 'ABSPATH' ) || exit;
6
7 /**
8 * Silent skin to suppress all output during installation
9 */
10 class Plugin_Skin extends \WP_Upgrader_Skin {
11 public function header() {}
12 public function footer() {}
13 public function error($errors) {}
14 public function feedback($string, ...$args) {}
15 public function before() {}
16 public function after() {}
17 public function bulk_header() {}
18 public function bulk_footer() {}
19 }