WC_Install::wpmu_drop_tables()public staticWC 1.0

Uninstall tables when MU blog is deleted.

Method of the class: WC_Install{}

No Hooks.

Return

String[].

Usage

$result = WC_Install::wpmu_drop_tables( $tables );
$tables(array) (required)
List of tables that will be deleted by WP.

WC_Install::wpmu_drop_tables() code WC 8.7.0

public static function wpmu_drop_tables( $tables ) {
	return array_merge( $tables, self::get_tables() );
}