class-base-exception.php
2 years ago
class-cache-constants.php
2 years ago
class-cache-exception.php
2 years ago
class-key-exception.php
2 years ago
class-keytypes.php
2 years ago
class-option-exception.php
2 years ago
class-plugin-installer.php
2 years ago
class-quiet-skin.php
2 years ago
class-settings-exception.php
2 years ago
class-quiet-skin.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SuperbAddons\Data\Utils; |
| 4 | |
| 5 | defined('ABSPATH') || exit(); |
| 6 | |
| 7 | require_once(ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'); |
| 8 | class QuietSkin extends \WP_Upgrader_Skin |
| 9 | { |
| 10 | public function feedback($string, ...$args) |
| 11 | { |
| 12 | // no feedback |
| 13 | } |
| 14 | |
| 15 | public function header() |
| 16 | { |
| 17 | // nothing |
| 18 | } |
| 19 | |
| 20 | public function footer() |
| 21 | { |
| 22 | // nothing |
| 23 | } |
| 24 | |
| 25 | public function error($errors) |
| 26 | { |
| 27 | // nothing |
| 28 | } |
| 29 | } |
| 30 |