@@ -8,7 +8,7 @@ |
||
8 | 8 | * @param string $url_orig Original URL. |
9 | 9 | * @param array $url_info Pieces of original URL. |
10 | 10 | * |
11 | - * @return bool |
|
11 | + * @return false|string |
|
12 | 12 | */ |
13 | 13 | function jetpack_no_qtranslate_rest_url_redirect( $url_lang, $url_orig, $url_info ) { |
14 | 14 | if ( false !== strpos( $url_info['wp-path'], 'wp-json/jetpack' ) ) { |
@@ -28,6 +28,11 @@ discard block |
||
28 | 28 | |
29 | 29 | // /sites/%s/posts/new -> $blog_id |
30 | 30 | // /sites/%s/posts/%d -> $blog_id, $post_id |
31 | + |
|
32 | + /** |
|
33 | + * @param string $path |
|
34 | + * @param integer $post_id |
|
35 | + */ |
|
31 | 36 | function write_post( $path, $blog_id, $post_id ) { |
32 | 37 | global $wpdb; |
33 | 38 | |
@@ -704,6 +709,10 @@ discard block |
||
704 | 709 | } |
705 | 710 | |
706 | 711 | // /sites/%s/posts/%d/delete -> $blog_id, $post_id |
712 | + |
|
713 | + /** |
|
714 | + * @param string $path |
|
715 | + */ |
|
707 | 716 | function delete_post( $path, $blog_id, $post_id ) { |
708 | 717 | $post = get_post( $post_id ); |
709 | 718 | if ( !$post || is_wp_error( $post ) ) { |
@@ -743,6 +752,11 @@ discard block |
||
743 | 752 | } |
744 | 753 | |
745 | 754 | // /sites/%s/posts/%d/restore -> $blog_id, $post_id |
755 | + |
|
756 | + /** |
|
757 | + * @param string $path |
|
758 | + * @param integer $post_id |
|
759 | + */ |
|
746 | 760 | function restore_post( $path, $blog_id, $post_id ) { |
747 | 761 | $args = $this->query_args(); |
748 | 762 | $post = get_post( $post_id ); |
@@ -763,6 +777,10 @@ discard block |
||
763 | 777 | return $this->get_post_by( 'ID', $post->ID, $args['context'] ); |
764 | 778 | } |
765 | 779 | |
780 | + /** |
|
781 | + * @param boolean $delete_featured_image |
|
782 | + * @param string $featured_image |
|
783 | + */ |
|
766 | 784 | protected function parse_and_set_featured_image( $post_id, $delete_featured_image, $featured_image ) { |
767 | 785 | if ( $delete_featured_image ) { |
768 | 786 | delete_post_thumbnail( $post_id ); |
@@ -63,6 +63,7 @@ |
||
63 | 63 | /** |
64 | 64 | * Updates user data |
65 | 65 | * |
66 | + * @param integer $user_id |
|
66 | 67 | * @return array |
67 | 68 | */ |
68 | 69 | public function update_user( $user_id, $blog_id ) { |