@@ 117-124 (lines=8) @@ | ||
114 | return $this->enqueue_all_ids_as_action( 'jetpack_full_sync_woocommerce_order_items', $this->order_item_table_name, 'order_item_id', $this->get_where_sql( $config ), $max_items_to_enqueue, $state ); |
|
115 | } |
|
116 | ||
117 | public function estimate_full_sync_actions( $config ) { |
|
118 | global $wpdb; |
|
119 | ||
120 | $query = "SELECT count(*) FROM $this->order_item_table_name WHERE " . $this->get_where_sql( $config ); |
|
121 | $count = $wpdb->get_var( $query ); |
|
122 | ||
123 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); |
|
124 | } |
|
125 | ||
126 | private function get_where_sql( $config ) { |
|
127 | return '1=1'; |
@@ 126-133 (lines=8) @@ | ||
123 | return $this->enqueue_all_ids_as_action( 'jetpack_full_sync_posts', $wpdb->posts, 'ID', $this->get_where_sql( $config ), $max_items_to_enqueue, $state ); |
|
124 | } |
|
125 | ||
126 | public function estimate_full_sync_actions( $config ) { |
|
127 | global $wpdb; |
|
128 | ||
129 | $query = "SELECT count(*) FROM $wpdb->posts WHERE " . $this->get_where_sql( $config ); |
|
130 | $count = $wpdb->get_var( $query ); |
|
131 | ||
132 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); |
|
133 | } |
|
134 | ||
135 | private function get_where_sql( $config ) { |
|
136 | $where_sql = Jetpack_Sync_Settings::get_blacklisted_post_types_sql(); |