| Conditions | 4 |
| Paths | 4 |
| Total Lines | 26 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 21 | public function callback( $path = '', $_blog_id = 0 ) { |
||
| 22 | $blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $_blog_id ) ); |
||
| 23 | if ( is_wp_error( $blog_id ) ) { |
||
| 24 | return $blog_id; |
||
| 25 | } |
||
| 26 | |||
| 27 | Jetpack::init(); |
||
| 28 | /** This action is documented in class.jetpack.php */ |
||
| 29 | |||
| 30 | $sync_queue = Jetpack_Sync_Client::getInstance()->get_sync_queue(); |
||
| 31 | |||
| 32 | // lock sending from the queue while we compare checksums with the server |
||
| 33 | $result = $sync_queue->lock( 30 ); // tries to acquire the lock for up to 30 seconds |
||
| 34 | |||
| 35 | if ( !$result ) { |
||
| 36 | return new WP_Error( 'unknown_error', 'Unknown error trying to lock the sync queue' ); |
||
| 37 | } |
||
| 38 | |||
| 39 | if ( is_wp_error( $result ) ) { |
||
| 40 | return $result; |
||
| 41 | } |
||
| 42 | |||
| 43 | $store = new Jetpack_Sync_WP_Replicastore(); |
||
| 44 | |||
| 45 | return $store->checksum_all(); |
||
| 46 | } |
||
| 47 | } |
Having each class in a dedicated file usually plays nice with PSR autoloaders and is therefore a well established practice. If you use other autoloaders, you might not want to follow this rule.