sync/class.jetpack-sync-module-plugins.php 1 location
|
@@ 34-40 (lines=7) @@
|
| 31 |
|
|
| 32 |
|
public function check_upgrader( $upgrader, $details) { |
| 33 |
|
|
| 34 |
|
if ( ! isset( $details['type'] ) || |
| 35 |
|
'plugin' !== $details['type'] || |
| 36 |
|
is_wp_error( $upgrader->skin->result ) || |
| 37 |
|
! method_exists( $upgrader, 'plugin_info' ) |
| 38 |
|
) { |
| 39 |
|
return; |
| 40 |
|
} |
| 41 |
|
|
| 42 |
|
if ( 'install' === $details['action'] ) { |
| 43 |
|
$plugin_path = $upgrader->plugin_info(); |
sync/class.jetpack-sync-module-themes.php 1 location
|
@@ 279-285 (lines=7) @@
|
| 276 |
|
} |
| 277 |
|
|
| 278 |
|
public function check_upgrader( $upgrader, $details) { |
| 279 |
|
if ( ! isset( $details['type'] ) || |
| 280 |
|
'theme' !== $details['type'] || |
| 281 |
|
is_wp_error( $upgrader->skin->result ) || |
| 282 |
|
! method_exists( $upgrader, 'theme_info' ) |
| 283 |
|
) { |
| 284 |
|
return; |
| 285 |
|
} |
| 286 |
|
|
| 287 |
|
$theme = $upgrader->theme_info(); |
| 288 |
|
if ( ! $theme instanceof WP_Theme ) { |