ajax.php
7 months ago
plugin-data-sender.php
9 months ago
plugin-installer.php
7 months ago
plugin-skin.php
7 months ago
plugin-status.php
4 years ago
utils.php
3 years ago
plugin-skin.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WP_Social\Lib\Onboard\Classes; |
| 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 | } |