| @@ 145-154 (lines=10) @@ | ||
| 142 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); | |
| 143 | } | |
| 144 | ||
| 145 | 	private function get_where_sql( $config ) { | |
| 146 | $where_sql = Jetpack_Sync_Settings::get_blacklisted_post_types_sql(); | |
| 147 | ||
| 148 | // config is a list of post IDs to sync | |
| 149 | 		if ( is_array( $config ) ) { | |
| 150 | 			$where_sql .= ' AND ID IN (' . implode( ',', array_map( 'intval', $config ) ) . ')'; | |
| 151 | } | |
| 152 | ||
| 153 | return $where_sql; | |
| 154 | } | |
| 155 | ||
| 156 | 	function get_full_sync_actions() { | |
| 157 | return array( 'jetpack_full_sync_posts' ); | |
| @@ 337-348 (lines=12) @@ | ||
| 334 | return (int) ceil( $count / self::ARRAY_CHUNK_SIZE ); | |
| 335 | } | |
| 336 | ||
| 337 | 	private function get_where_sql( $config ) { | |
| 338 | global $wpdb; | |
| 339 | ||
| 340 | 		$query = "meta_key = '{$wpdb->prefix}capabilities'"; | |
| 341 | ||
| 342 | // config is a list of user IDs to sync | |
| 343 | 		if ( is_array( $config ) ) { | |
| 344 | 			$query .= ' AND user_id IN (' . implode( ',', array_map( 'intval', $config ) ) . ')'; | |
| 345 | } | |
| 346 | ||
| 347 | return $query; | |
| 348 | } | |
| 349 | ||
| 350 | 	function get_full_sync_actions() { | |
| 351 | return array( 'jetpack_full_sync_users' ); | |