mirror of
https://gh.wpcy.net/https://github.com/WP-Autoplugin/hub2wp.git
synced 2026-05-02 21:02:27 +08:00
17 lines
375 B
PHP
17 lines
375 B
PHP
<?php
|
|
/**
|
|
* Handles silent plugin installation and activation.
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
class H2WP_Silent_Installer_Skin extends WP_Upgrader_Skin {
|
|
public function header() {}
|
|
public function footer() {}
|
|
public function error( $errors ) {}
|
|
public function feedback( $string, ...$args ) {}
|
|
public function before() {}
|
|
public function after() {}
|
|
}
|