@@ -74,7 +74,7 @@ |
||
| 74 | 74 | * NOTE: If you want IMAGES, call extract( $blog_id, $post_id, ...) which will give you more/better image extraction |
| 75 | 75 | * This method will give you an error if you ask for IMAGES. |
| 76 | 76 | * |
| 77 | - * @param $content The HTML post_content of a post |
|
| 77 | + * @param string $content The HTML post_content of a post |
|
| 78 | 78 | * @param $what_to_extract (int) A mask of things to extract, e.g. Jetpack_Media_Meta_Extractor::IMAGES | Jetpack_Media_Meta_Extractor::MENTIONS |
| 79 | 79 | * @param $already_extracted (array) Previously extracted things, e.g. images from extract(), which can be used for x-referencing here |
| 80 | 80 | * @returns a structure containing metadata about the embedded things, or empty array if nothing found, or WP_Error on error |
@@ -93,14 +93,24 @@ |
||
| 93 | 93 | * So that we can test. |
| 94 | 94 | */ |
| 95 | 95 | |
| 96 | + /** |
|
| 97 | + * @param string $class |
|
| 98 | + * @param string $method |
|
| 99 | + */ |
|
| 96 | 100 | public function method_exists( $class, $method ) { |
| 97 | 101 | return method_exists( $class, $method ); |
| 98 | 102 | } |
| 99 | 103 | |
| 104 | + /** |
|
| 105 | + * @param string $class |
|
| 106 | + */ |
|
| 100 | 107 | public function class_exists( $class ) { |
| 101 | 108 | return class_exists( $class ); |
| 102 | 109 | } |
| 103 | 110 | |
| 111 | + /** |
|
| 112 | + * @param string $function |
|
| 113 | + */ |
|
| 104 | 114 | public function function_exists( $function ) { |
| 105 | 115 | return function_exists( $function ); |
| 106 | 116 | } |
@@ -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' ) ) { |
@@ -58,6 +58,10 @@ |
||
| 58 | 58 | return $query->is_main_query() && $query->is_search(); |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | + /** |
|
| 62 | + * @param double $duration |
|
| 63 | + * @param boolean $was_jetpack_search |
|
| 64 | + */ |
|
| 61 | 65 | private function record_query_time( $duration, $was_jetpack_search ) { |
| 62 | 66 | $this->stats[] = array( $was_jetpack_search, intval( $duration * 1000 ) ); |
| 63 | 67 | } |
@@ -249,6 +249,9 @@ |
||
| 249 | 249 | } |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | + /** |
|
| 253 | + * @param string $access_token |
|
| 254 | + */ |
|
| 252 | 255 | private static function verify_token( $access_token ) { |
| 253 | 256 | $request = array( |
| 254 | 257 | 'headers' => array( |
@@ -100,6 +100,10 @@ discard block |
||
| 100 | 100 | ), menu_page_url( 'sharing', false ) ); |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | + /** |
|
| 104 | + * @param string $service_name |
|
| 105 | + * @param string $for |
|
| 106 | + */ |
|
| 103 | 107 | static function refresh_url( $service_name, $for ) { |
| 104 | 108 | return add_query_arg( array( |
| 105 | 109 | 'action' => 'request', |
@@ -111,6 +115,10 @@ discard block |
||
| 111 | 115 | ), admin_url( 'options-general.php?page=sharing' ) ); |
| 112 | 116 | } |
| 113 | 117 | |
| 118 | + /** |
|
| 119 | + * @param string $service_name |
|
| 120 | + * @param string $id |
|
| 121 | + */ |
|
| 114 | 122 | static function disconnect_url( $service_name, $id ) { |
| 115 | 123 | return add_query_arg( array( |
| 116 | 124 | 'action' => 'delete', |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | /** |
| 85 | 85 | * Return an array of allowed mime_type items used to upload a media file. |
| 86 | 86 | * |
| 87 | - * @return array mime_type array |
|
| 87 | + * @return string[] mime_type array |
|
| 88 | 88 | */ |
| 89 | 89 | static function get_allowed_mime_types( $default_mime_types ) { |
| 90 | 90 | return array_unique( array_merge( $default_mime_types, array( |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | * @param object $media_item - media post object |
| 253 | 253 | * @param file $file - file recently added |
| 254 | 254 | * @param bool $has_original_media - condition is the original media has been already added |
| 255 | - * @return bool `true` if the item has been added. Otherwise `false`. |
|
| 255 | + * @return false|null `true` if the item has been added. Otherwise `false`. |
|
| 256 | 256 | */ |
| 257 | 257 | public static function register_revision( $media_item, $file, $has_original_media ) { |
| 258 | 258 | if ( is_wp_error( $file ) || ! $has_original_media ) { |
@@ -280,6 +280,9 @@ discard block |
||
| 280 | 280 | return $original; |
| 281 | 281 | } |
| 282 | 282 | |
| 283 | + /** |
|
| 284 | + * @param string $pathname |
|
| 285 | + */ |
|
| 283 | 286 | public static function delete_file( $pathname ) { |
| 284 | 287 | if ( ! file_exists( $pathname ) || ! is_file( $pathname ) ) { |
| 285 | 288 | // let's touch a fake file to try to `really` remove the media file |
@@ -295,7 +298,7 @@ discard block |
||
| 295 | 298 | * |
| 296 | 299 | * @param number $media_id - media post ID |
| 297 | 300 | * @param string $filename - basename of the file ( name-of-file.ext ) |
| 298 | - * @return bool `true` is the file has been removed, `false` if not. |
|
| 301 | + * @return boolean|null `true` is the file has been removed, `false` if not. |
|
| 299 | 302 | */ |
| 300 | 303 | private static function delete_media_history_file( $media_id, $filename ) { |
| 301 | 304 | $attached_path = get_attached_file( $media_id ); |
@@ -365,6 +368,7 @@ discard block |
||
| 365 | 368 | * |
| 366 | 369 | * @param number $media_id - media post ID |
| 367 | 370 | * @param number [$limit] - maximun amount of items. 20 as default. |
| 371 | + * @param integer $limit |
|
| 368 | 372 | * @return array items removed from `revision_history` |
| 369 | 373 | */ |
| 370 | 374 | public static function limit_revision_history( $media_id, $limit = null) { |
@@ -149,6 +149,9 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | /** |
| 151 | 151 | * Helper function for Jetpack_Color::fromHsl() |
| 152 | + * @param double $p |
|
| 153 | + * @param double $q |
|
| 154 | + * @param integer $t |
|
| 152 | 155 | */ |
| 153 | 156 | private function hue2rgb( $p, $q, $t ) { |
| 154 | 157 | if ( $t < 0 ) $t += 1; |
@@ -498,7 +501,7 @@ discard block |
||
| 498 | 501 | * |
| 499 | 502 | * @param Jetpack_Color $color |
| 500 | 503 | * |
| 501 | - * @return int |
|
| 504 | + * @return double |
|
| 502 | 505 | */ |
| 503 | 506 | public function getDistanceRgbFrom(Jetpack_Color $color) |
| 504 | 507 | { |
@@ -687,6 +690,9 @@ discard block |
||
| 687 | 690 | return $this->incrementLightness( $amount ); |
| 688 | 691 | } |
| 689 | 692 | |
| 693 | + /** |
|
| 694 | + * @param integer $amount |
|
| 695 | + */ |
|
| 690 | 696 | public function incrementLightness( $amount ) { |
| 691 | 697 | $hsl = $this->toHsl(); |
| 692 | 698 | extract( $hsl ); |
@@ -704,6 +710,9 @@ discard block |
||
| 704 | 710 | return $this->incrementSaturation( - $amount ); |
| 705 | 711 | } |
| 706 | 712 | |
| 713 | + /** |
|
| 714 | + * @param integer $amount |
|
| 715 | + */ |
|
| 707 | 716 | public function incrementSaturation( $amount ) { |
| 708 | 717 | $hsl = $this->toHsl(); |
| 709 | 718 | extract( $hsl ); |
@@ -744,6 +753,9 @@ discard block |
||
| 744 | 753 | return $this->incrementHue( $incr ); |
| 745 | 754 | } |
| 746 | 755 | |
| 756 | + /** |
|
| 757 | + * @param integer $amount |
|
| 758 | + */ |
|
| 747 | 759 | public function incrementHue( $amount ) { |
| 748 | 760 | $hsl = $this->toHsl(); |
| 749 | 761 | extract( $hsl ); |
@@ -271,6 +271,9 @@ discard block |
||
| 271 | 271 | } |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | + /** |
|
| 275 | + * @param string $type |
|
| 276 | + */ |
|
| 274 | 277 | static function get_video_poster( $type, $id ) { |
| 275 | 278 | if ( 'videopress' == $type ) { |
| 276 | 279 | if ( function_exists( 'video_get_highest_resolution_image_url' ) ) { |
@@ -356,6 +359,9 @@ discard block |
||
| 356 | 359 | return (int) count( self::split_content_in_words( self::clean_text( $post_content ) ) ); |
| 357 | 360 | } |
| 358 | 361 | |
| 362 | + /** |
|
| 363 | + * @param string $excerpt_content |
|
| 364 | + */ |
|
| 359 | 365 | static function get_word_remaining_count( $post_content, $excerpt_content ) { |
| 360 | 366 | $content_word_count = count( self::split_content_in_words( self::clean_text( $post_content ) ) ); |
| 361 | 367 | $excerpt_word_count = count( self::split_content_in_words( self::clean_text( $excerpt_content ) ) ); |