@@ -321,6 +321,9 @@ discard block |
||
321 | 321 | return $sync_modules; |
322 | 322 | } |
323 | 323 | |
324 | + /** |
|
325 | + * @return string |
|
326 | + */ |
|
324 | 327 | static function sanitize_filtered_sync_cron_schedule( $schedule ) { |
325 | 328 | $schedule = sanitize_key( $schedule ); |
326 | 329 | $schedules = wp_get_schedules(); |
@@ -358,6 +361,9 @@ discard block |
||
358 | 361 | ); |
359 | 362 | } |
360 | 363 | |
364 | + /** |
|
365 | + * @param string $hook |
|
366 | + */ |
|
361 | 367 | static function maybe_schedule_sync_cron( $schedule, $hook ) { |
362 | 368 | if ( ! $hook ) { |
363 | 369 | return; |
@@ -148,6 +148,7 @@ discard block |
||
148 | 148 | * Helper function that is used when getting home or siteurl values. Decides |
149 | 149 | * whether to get the raw or filtered value. |
150 | 150 | * |
151 | + * @param string $url_type |
|
151 | 152 | * @return string |
152 | 153 | */ |
153 | 154 | public static function get_raw_or_filtered_url( $url_type ) { |
@@ -197,6 +198,9 @@ discard block |
||
197 | 198 | return self::get_protocol_normalized_url( 'main_network_site_url', network_site_url() ); |
198 | 199 | } |
199 | 200 | |
201 | + /** |
|
202 | + * @param string $callable |
|
203 | + */ |
|
200 | 204 | public static function get_protocol_normalized_url( $callable, $new_value ) { |
201 | 205 | $option_key = self::HTTPS_CHECK_OPTION_PREFIX . $callable; |
202 | 206 | |
@@ -236,6 +240,9 @@ discard block |
||
236 | 240 | return $value; |
237 | 241 | } |
238 | 242 | |
243 | + /** |
|
244 | + * @param string $url_function |
|
245 | + */ |
|
239 | 246 | public static function normalize_www_in_url( $option, $url_function ) { |
240 | 247 | $url = wp_parse_url( call_user_func( $url_function ) ); |
241 | 248 | $option_url = wp_parse_url( get_option( $option ) ); |
@@ -164,6 +164,9 @@ |
||
164 | 164 | $queue->add_all( $data_to_enqueue ); |
165 | 165 | } |
166 | 166 | |
167 | + /** |
|
168 | + * @param Jetpack_Sync_Queue $queue |
|
169 | + */ |
|
167 | 170 | function enqueue_action( $current_filter, $args, $queue ) { |
168 | 171 | // don't enqueue an action during the outbound http request - this prevents recursion |
169 | 172 | if ( Jetpack_Sync_Settings::is_sending() ) { |
@@ -171,6 +171,9 @@ |
||
171 | 171 | update_option( 'jetpack_plugin_api_action_links', $plugins_action_links ); |
172 | 172 | } |
173 | 173 | |
174 | + /** |
|
175 | + * @param integer $checksum |
|
176 | + */ |
|
174 | 177 | public function should_send_callable( $callable_checksums, $name, $checksum ) { |
175 | 178 | $idc_override_callables = array( |
176 | 179 | 'main_network_site', |
@@ -185,6 +185,9 @@ discard block |
||
185 | 185 | do_action( 'jetpack_full_sync_end', '', $range ); |
186 | 186 | } |
187 | 187 | |
188 | + /** |
|
189 | + * @param string $type |
|
190 | + */ |
|
188 | 191 | function get_range( $type ) { |
189 | 192 | global $wpdb; |
190 | 193 | if ( ! in_array( $type, array( 'comments', 'posts' ) ) ) { |
@@ -323,6 +326,9 @@ discard block |
||
323 | 326 | $listener->get_full_sync_queue()->reset(); |
324 | 327 | } |
325 | 328 | |
329 | + /** |
|
330 | + * @param integer $default |
|
331 | + */ |
|
326 | 332 | private function get_status_option( $name, $default = null ) { |
327 | 333 | $value = Jetpack_Options::get_raw_option( self::STATUS_OPTION_PREFIX . "_$name", $default ); |
328 | 334 |
@@ -94,6 +94,9 @@ |
||
94 | 94 | return $user; |
95 | 95 | } |
96 | 96 | |
97 | + /** |
|
98 | + * @param WP_User|null $user |
|
99 | + */ |
|
97 | 100 | public function expand_user( $user ) { |
98 | 101 | if ( ! is_object( $user ) ) { |
99 | 102 | return null; |
@@ -42,6 +42,9 @@ discard block |
||
42 | 42 | return array(); |
43 | 43 | } |
44 | 44 | |
45 | + /** |
|
46 | + * @param string[] $actions_to_count |
|
47 | + */ |
|
45 | 48 | protected function count_actions( $action_names, $actions_to_count ) { |
46 | 49 | return count( array_intersect( $action_names, $actions_to_count ) ); |
47 | 50 | } |
@@ -58,6 +61,10 @@ discard block |
||
58 | 61 | return false; |
59 | 62 | } |
60 | 63 | |
64 | + /** |
|
65 | + * @param string $action_name |
|
66 | + * @param string $id_field |
|
67 | + */ |
|
61 | 68 | protected function enqueue_all_ids_as_action( $action_name, $table_name, $id_field, $where_sql, $max_items_to_enqueue, $state ) { |
62 | 69 | global $wpdb; |
63 | 70 | |
@@ -111,6 +118,9 @@ discard block |
||
111 | 118 | return $chunks_with_ends; |
112 | 119 | } |
113 | 120 | |
121 | + /** |
|
122 | + * @param string $meta_type |
|
123 | + */ |
|
114 | 124 | protected function get_metadata( $ids, $meta_type, $meta_key_whitelist ) { |
115 | 125 | global $wpdb; |
116 | 126 | $table = _get_meta_table( $meta_type ); |
@@ -131,12 +141,18 @@ discard block |
||
131 | 141 | ); |
132 | 142 | } |
133 | 143 | |
144 | + /** |
|
145 | + * @param string $meta_type |
|
146 | + */ |
|
134 | 147 | public function init_listeners_for_meta_type( $meta_type, $callable ) { |
135 | 148 | add_action( "added_{$meta_type}_meta", $callable, 10, 4 ); |
136 | 149 | add_action( "updated_{$meta_type}_meta", $callable, 10, 4 ); |
137 | 150 | add_action( "deleted_{$meta_type}_meta", $callable, 10, 4 ); |
138 | 151 | } |
139 | 152 | |
153 | + /** |
|
154 | + * @param string $meta_type |
|
155 | + */ |
|
140 | 156 | public function init_meta_whitelist_handler( $meta_type, $whitelist_handler ) { |
141 | 157 | add_filter( "jetpack_sync_before_enqueue_added_{$meta_type}_meta", $whitelist_handler ); |
142 | 158 | add_filter( "jetpack_sync_before_enqueue_updated_{$meta_type}_meta", $whitelist_handler ); |
@@ -246,6 +246,9 @@ discard block |
||
246 | 246 | return true; |
247 | 247 | } |
248 | 248 | |
249 | + /** |
|
250 | + * @param Jetpack_Sync_Queue_Buffer $buffer |
|
251 | + */ |
|
249 | 252 | function close( $buffer, $ids_to_remove = null ) { |
250 | 253 | $is_valid = $this->validate_checkout( $buffer ); |
251 | 254 | |
@@ -339,6 +342,9 @@ discard block |
||
339 | 342 | return false; |
340 | 343 | } |
341 | 344 | |
345 | + /** |
|
346 | + * @param string $checkout_id |
|
347 | + */ |
|
342 | 348 | private function set_checkout_id( $checkout_id ) { |
343 | 349 | global $wpdb; |
344 | 350 |
@@ -76,6 +76,9 @@ discard block |
||
76 | 76 | return (float) get_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, 0 ); |
77 | 77 | } |
78 | 78 | |
79 | + /** |
|
80 | + * @param integer $time |
|
81 | + */ |
|
79 | 82 | public function set_next_sync_time( $time, $queue_name ) { |
80 | 83 | return update_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, $time, true ); |
81 | 84 | } |
@@ -106,6 +109,9 @@ discard block |
||
106 | 109 | return $this->do_sync_and_set_delays( $this->sync_queue ); |
107 | 110 | } |
108 | 111 | |
112 | + /** |
|
113 | + * @param Jetpack_Sync_Queue $queue |
|
114 | + */ |
|
109 | 115 | public function do_sync_and_set_delays( $queue ) { |
110 | 116 | // don't sync if importing |
111 | 117 | if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { |
@@ -354,6 +360,10 @@ discard block |
||
354 | 360 | } |
355 | 361 | |
356 | 362 | // in seconds |
363 | + |
|
364 | + /** |
|
365 | + * @param double $seconds |
|
366 | + */ |
|
357 | 367 | function set_max_dequeue_time( $seconds ) { |
358 | 368 | $this->max_dequeue_time = $seconds; |
359 | 369 | } |