| @@ 183-194 (lines=12) @@ | ||
| 180 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); |
|
| 181 | } |
|
| 182 | ||
| 183 | private function get_where_sql( $config ) { |
|
| 184 | global $wpdb; |
|
| 185 | ||
| 186 | $query = "meta_key = '{$wpdb->prefix}capabilities'"; |
|
| 187 | ||
| 188 | // config is a list of user IDs to sync |
|
| 189 | if ( is_array( $config ) ) { |
|
| 190 | $query .= ' AND user_id IN (' . implode( ',', array_map( 'intval', $config ) ) . ')'; |
|
| 191 | } |
|
| 192 | ||
| 193 | return $query; |
|
| 194 | } |
|
| 195 | ||
| 196 | function get_full_sync_actions() { |
|
| 197 | return array( 'jetpack_full_sync_users' ); |
|
| @@ 55-64 (lines=10) @@ | ||
| 52 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); |
|
| 53 | } |
|
| 54 | ||
| 55 | private function get_where_sql( $config ) { |
|
| 56 | $where_sql = Jetpack_Sync_Settings::get_blacklisted_post_types_sql(); |
|
| 57 | ||
| 58 | // config is a list of post IDs to sync |
|
| 59 | if ( is_array( $config ) ) { |
|
| 60 | $where_sql .= ' AND ID IN (' . implode( ',', array_map( 'intval', $config ) ) . ')'; |
|
| 61 | } |
|
| 62 | ||
| 63 | return $where_sql; |
|
| 64 | } |
|
| 65 | ||
| 66 | function get_full_sync_actions() { |
|
| 67 | return array( 'jetpack_full_sync_posts' ); |
|