| 1 |
<?php |
| 2 |
|
| 3 |
// Do not allow the file to be called directly. |
| 4 |
if (!defined('ABSPATH')) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
include_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ); |
| 9 |
|
| 10 |
/** |
| 11 |
* This class is used to activate and deactivate the plugin. |
| 12 |
* Additionally, we use it to run migrations. |
| 13 |
*/ |
| 14 |
class W_Skin extends WP_Upgrader_Skin { |
| 15 |
public function feedback($string, ...$args) |
| 16 |
{ |
| 17 |
|
| 18 |
} |
| 19 |
} |
| 20 |
|