@@ -188,6 +188,9 @@ discard block |
||
188 | 188 | ); |
189 | 189 | } |
190 | 190 | |
191 | + /** |
|
192 | + * @param string $meta_type |
|
193 | + */ |
|
191 | 194 | private function get_metadata( $ids, $meta_type ) { |
192 | 195 | global $wpdb; |
193 | 196 | $table = _get_meta_table( $meta_type ); |
@@ -214,6 +217,10 @@ discard block |
||
214 | 217 | $this->set_status("updates", 100); |
215 | 218 | } |
216 | 219 | |
220 | + /** |
|
221 | + * @param string $name |
|
222 | + * @param integer $percent |
|
223 | + */ |
|
217 | 224 | private function set_status( $name, $percent, $count = 1, $total =1 ) { |
218 | 225 | set_transient( self::$status_transient_name.'_'.$name, |
219 | 226 | array( |
@@ -7,6 +7,9 @@ discard block |
||
7 | 7 | public $id; |
8 | 8 | public $items_with_ids; |
9 | 9 | |
10 | + /** |
|
11 | + * @param string $id |
|
12 | + */ |
|
10 | 13 | public function __construct( $id, $items_with_ids ) { |
11 | 14 | $this->id = $id; |
12 | 15 | $this->items_with_ids = $items_with_ids; |
@@ -31,6 +34,9 @@ discard block |
||
31 | 34 | public $id; |
32 | 35 | private $row_iterator; |
33 | 36 | |
37 | + /** |
|
38 | + * @param string $id |
|
39 | + */ |
|
34 | 40 | function __construct( $id ) { |
35 | 41 | $this->id = str_replace( '-', '_', $id ); // necessary to ensure we don't have ID collisions in the SQL |
36 | 42 | $this->row_iterator = 0; |
@@ -303,6 +309,9 @@ discard block |
||
303 | 309 | return get_transient( $this->get_checkout_transient_name() ); |
304 | 310 | } |
305 | 311 | |
312 | + /** |
|
313 | + * @param string $checkout_id |
|
314 | + */ |
|
306 | 315 | private function set_checkout_id( $checkout_id ) { |
307 | 316 | return set_transient( $this->get_checkout_transient_name(), $checkout_id, 5*60 ); // 5 minute timeout |
308 | 317 | } |
@@ -195,21 +195,36 @@ discard block |
||
195 | 195 | $this->network_options_whitelist = $options; |
196 | 196 | } |
197 | 197 | |
198 | + /** |
|
199 | + * @param integer $size |
|
200 | + */ |
|
198 | 201 | function set_send_buffer_memory_size( $size ) { |
199 | 202 | $this->checkout_memory_size = $size; |
200 | 203 | } |
201 | 204 | |
202 | 205 | // in bytes |
206 | + |
|
207 | + /** |
|
208 | + * @param integer $max_bytes |
|
209 | + */ |
|
203 | 210 | function set_upload_max_bytes( $max_bytes ) { |
204 | 211 | $this->upload_max_bytes = $max_bytes; |
205 | 212 | } |
206 | 213 | |
207 | 214 | // in rows |
215 | + |
|
216 | + /** |
|
217 | + * @param integer $max_rows |
|
218 | + */ |
|
208 | 219 | function set_upload_max_rows( $max_rows ) { |
209 | 220 | $this->upload_max_rows = $max_rows; |
210 | 221 | } |
211 | 222 | |
212 | 223 | // in seconds |
224 | + |
|
225 | + /** |
|
226 | + * @param integer $seconds |
|
227 | + */ |
|
213 | 228 | function set_min_sync_wait_time( $seconds ) { |
214 | 229 | update_option( self::SYNC_THROTTLE_OPTION_NAME, $seconds, true ); |
215 | 230 | } |
@@ -476,6 +491,9 @@ discard block |
||
476 | 491 | } |
477 | 492 | } |
478 | 493 | |
494 | + /** |
|
495 | + * @param string $action_name |
|
496 | + */ |
|
479 | 497 | private function buffer_includes_action( $buffer, $action_name ) { |
480 | 498 | foreach ( $buffer->get_items() as $item ) { |
481 | 499 | if ( $item[0] === $action_name ) { |
@@ -505,6 +523,9 @@ discard block |
||
505 | 523 | return $post; |
506 | 524 | } |
507 | 525 | |
526 | + /** |
|
527 | + * @param string $when |
|
528 | + */ |
|
508 | 529 | private function schedule_sync( $when ) { |
509 | 530 | wp_schedule_single_event( strtotime( $when ), 'jetpack_sync_actions' ); |
510 | 531 | } |
@@ -338,6 +338,10 @@ |
||
338 | 338 | } |
339 | 339 | |
340 | 340 | // functions |
341 | + |
|
342 | + /** |
|
343 | + * @param string $name |
|
344 | + */ |
|
341 | 345 | public function get_callable( $name ) { |
342 | 346 | $value = get_option( 'jetpack_' . $name ); |
343 | 347 |