@@ -183,6 +183,9 @@ |
||
| 183 | 183 | } |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | +/** |
|
| 187 | + * @param string $text |
|
| 188 | + */ |
|
| 186 | 189 | function jetpack_sha1_base64( $text ) { |
| 187 | 190 | return base64_encode( sha1( $text, true ) ); |
| 188 | 191 | } |
@@ -328,6 +328,9 @@ |
||
| 328 | 328 | return build_query( array( 'value' => urlencode($post[$column]), 'id' => $post['ID'] ) ); |
| 329 | 329 | } |
| 330 | 330 | |
| 331 | + /** |
|
| 332 | + * @param string $column |
|
| 333 | + */ |
|
| 331 | 334 | function _build_date_range_query( $column, $range, $where ) { |
| 332 | 335 | global $wpdb; |
| 333 | 336 | |
@@ -297,6 +297,7 @@ discard block |
||
| 297 | 297 | * @param array $items item tree |
| 298 | 298 | * @param array &$items_list output flat list of items |
| 299 | 299 | * @param int &$counter for creating temporary IDs |
| 300 | + * @param integer $counter |
|
| 300 | 301 | */ |
| 301 | 302 | protected function untreeify_items( $items, &$items_list, &$counter ) { |
| 302 | 303 | foreach( $items as $index => $item ) { |
@@ -546,6 +547,7 @@ discard block |
||
| 546 | 547 | * This function will create items that have a 'tmp_id' set, and |
| 547 | 548 | * update any items with a 'tmp_parent' to use the |
| 548 | 549 | * newly created item as a parent. |
| 550 | + * @param integer $menu_id |
|
| 549 | 551 | */ |
| 550 | 552 | function create_new_items( $data, $menu_id ) { |
| 551 | 553 | $tmp_to_actual_ids = array(); |
@@ -571,6 +573,7 @@ discard block |
||
| 571 | 573 | /** |
| 572 | 574 | * remove any existing menu items not present in the supplied array. |
| 573 | 575 | * returns wp_error if an item cannot be deleted. |
| 576 | + * @param integer $menu_id |
|
| 574 | 577 | */ |
| 575 | 578 | function delete_items_not_present( $menu_id, $menu_items ) { |
| 576 | 579 | |
@@ -185,6 +185,7 @@ |
||
| 185 | 185 | * @since 1.3 |
| 186 | 186 | * @uses current_user_can() to test if current user has edit_posts capability |
| 187 | 187 | * @var WP_Error $error WordPress error |
| 188 | + * @param VideoPress_Video $error |
|
| 188 | 189 | * @return string HTML string |
| 189 | 190 | */ |
| 190 | 191 | private function error_message( $error ) { |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * record_event |
| 51 | - * @param mixed $event Event object to send to Tracks. An array will be cast to object. Required. |
|
| 51 | + * @param Jetpack_Tracks_Event $event Event object to send to Tracks. An array will be cast to object. Required. |
|
| 52 | 52 | * Properties are included directly in the pixel query string after light validation. |
| 53 | 53 | * @return mixed True on success, WP_Error on failure |
| 54 | 54 | */ |
@@ -71,6 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * Synchronously request the pixel |
| 74 | + * @param string $pixel |
|
| 74 | 75 | */ |
| 75 | 76 | static function record_pixel( $pixel ) { |
| 76 | 77 | // Add the Request Timestamp and URL terminator just before the HTTP request. |
@@ -27,6 +27,9 @@ |
||
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | |
| 30 | + /** |
|
| 31 | + * @param string $key |
|
| 32 | + */ |
|
| 30 | 33 | protected function get_locale( $key ) { |
| 31 | 34 | if ( 'locale' == $key ) { |
| 32 | 35 | if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
@@ -1341,6 +1341,7 @@ discard block |
||
| 1341 | 1341 | * timezone set in the options table for the blog or the GMT offset. |
| 1342 | 1342 | * |
| 1343 | 1343 | * @param datetime string |
| 1344 | + * @param string $date_string |
|
| 1344 | 1345 | * |
| 1345 | 1346 | * @return array( $local_time_string, $gmt_time_string ) |
| 1346 | 1347 | */ |
@@ -1458,6 +1459,10 @@ discard block |
||
| 1458 | 1459 | do_action( 'restapi_theme_init' ); |
| 1459 | 1460 | } |
| 1460 | 1461 | |
| 1462 | + /** |
|
| 1463 | + * @param string $from_hook |
|
| 1464 | + * @param string $to_hook |
|
| 1465 | + */ |
|
| 1461 | 1466 | function copy_hooks( $from_hook, $to_hook, $base_paths ) { |
| 1462 | 1467 | global $wp_filter; |
| 1463 | 1468 | foreach ( $wp_filter as $hook => $actions ) { |
@@ -120,6 +120,9 @@ discard block |
||
| 120 | 120 | return $response; |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | + /** |
|
| 124 | + * @param string $field |
|
| 125 | + */ |
|
| 123 | 126 | protected function get_sal_post_by( $field, $field_value, $context ) { |
| 124 | 127 | global $blog_id; |
| 125 | 128 | |
@@ -132,6 +135,9 @@ discard block |
||
| 132 | 135 | return $post; |
| 133 | 136 | } |
| 134 | 137 | |
| 138 | + /** |
|
| 139 | + * @param string $context |
|
| 140 | + */ |
|
| 135 | 141 | private function render_response_keys( $post, $context, $keys ) { |
| 136 | 142 | foreach ( $keys as $key ) { |
| 137 | 143 | switch ( $key ) { |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | /** |
| 44 | 44 | * This function mirrors Jetpack_Data::is_usable_domain() in the WPCOM codebase. |
| 45 | 45 | * |
| 46 | - * @param $domain |
|
| 46 | + * @param string|false $domain |
|
| 47 | 47 | * @param array $extra |
| 48 | 48 | * |
| 49 | 49 | * @return bool|WP_Error |