start_backing( $wp_filesystem ); $writer->finish_backing( $wp_filesystem ); return true; } public static function get_wp_filesystem_pointer() { self::load_filesystem(); global $wp_filesystem; return $wp_filesystem; } public static function instance() { if ( self::$instance == null ) { self::$instance = new self(); } return self::$instance; } }