sync/class.jetpack-sync-module-plugins.php 1 location
                
                
                    
                                                
                                                    
                                |  | @@ 33-39 (lines=7) @@ | 
                                                            
                                    | 30 |  |  | 
                                                            
                                    | 31 |  | 	public function check_upgrader( $upgrader, $details) { | 
                                                            
                                    | 32 |  |  | 
                                                            
                                    | 33 |  | 		if ( ! isset( $details['type'] ) || | 
                                                            
                                    | 34 |  | 			'plugin' !== $details['type'] || | 
                                                            
                                    | 35 |  | 			is_wp_error( $upgrader->skin->result ) || | 
                                                            
                                    | 36 |  | 			! method_exists( $upgrader, 'plugin_info' ) | 
                                                            
                                    | 37 |  | 		) { | 
                                                            
                                    | 38 |  | 			return; | 
                                                            
                                    | 39 |  | 		} | 
                                                            
                                    | 40 |  |  | 
                                                            
                                    | 41 |  | 		if ( 'install' === $details['action'] ) { | 
                                                            
                                    | 42 |  | 			$plugin_path = $upgrader->plugin_info(); | 
                                                                        
                 
                                                            
                    
sync/class.jetpack-sync-module-themes.php 1 location
                
                
                    
                                                
                                                    
                                |  | @@ 53-59 (lines=7) @@ | 
                                                            
                                    | 50 |  | 	} | 
                                                            
                                    | 51 |  |  | 
                                                            
                                    | 52 |  | 	public function check_upgrader( $upgrader, $details) { | 
                                                            
                                    | 53 |  | 		if ( ! isset( $details['type'] ) || | 
                                                            
                                    | 54 |  | 			'theme' !== $details['type'] || | 
                                                            
                                    | 55 |  | 			is_wp_error( $upgrader->skin->result ) || | 
                                                            
                                    | 56 |  | 			! method_exists( $upgrader, 'theme_info' ) | 
                                                            
                                    | 57 |  | 		) { | 
                                                            
                                    | 58 |  | 			return; | 
                                                            
                                    | 59 |  | 		} | 
                                                            
                                    | 60 |  |  | 
                                                            
                                    | 61 |  | 		$theme = $upgrader->theme_info(); | 
                                                            
                                    | 62 |  | 		$theme_info = array( |