@@ -1095,7 +1095,7 @@ |
||
1095 | 1095 | * after ourselves without breaking anyone else's filters. |
1096 | 1096 | * |
1097 | 1097 | * @internal |
1098 | - * @return true |
|
1098 | + * @return boolean |
|
1099 | 1099 | */ |
1100 | 1100 | public function _override_image_downsize_in_rest_edit_context() { |
1101 | 1101 | return true; |
@@ -283,6 +283,9 @@ discard block |
||
283 | 283 | return Grunion_Contact_Form::parse( $atts, do_blocks( $content ) ); |
284 | 284 | } |
285 | 285 | |
286 | + /** |
|
287 | + * @param string $type |
|
288 | + */ |
|
286 | 289 | public static function block_attributes_to_shortcode_attributes( $atts, $type ) { |
287 | 290 | $atts['type'] = $type; |
288 | 291 | if ( isset( $atts['className'] ) ) { |
@@ -1878,7 +1881,6 @@ discard block |
||
1878 | 1881 | * |
1879 | 1882 | * @see ::style() |
1880 | 1883 | * @internal |
1881 | - * @param bool $style |
|
1882 | 1884 | */ |
1883 | 1885 | static function _style_on() { |
1884 | 1886 | return self::style( true ); |
@@ -2023,6 +2025,7 @@ discard block |
||
2023 | 2025 | * |
2024 | 2026 | * @param int $feedback_id |
2025 | 2027 | * @param object Grunion_Contact_Form $form |
2028 | + * @param Grunion_Contact_Form $form |
|
2026 | 2029 | * |
2027 | 2030 | * @return string $message |
2028 | 2031 | */ |
@@ -2135,7 +2138,7 @@ discard block |
||
2135 | 2138 | * |
2136 | 2139 | * @param array $attributes Key => Value pairs as parsed by shortcode_parse_atts() |
2137 | 2140 | * @param string|null $content The shortcode's inner content: [contact-field]$content[/contact-field] |
2138 | - * @return HTML for the contact form field |
|
2141 | + * @return string for the contact form field |
|
2139 | 2142 | */ |
2140 | 2143 | static function parse_contact_field( $attributes, $content ) { |
2141 | 2144 | // Don't try to parse contact form fields if not inside a contact form |
@@ -3158,6 +3161,9 @@ discard block |
||
3158 | 3161 | |
3159 | 3162 | } |
3160 | 3163 | |
3164 | + /** |
|
3165 | + * @param string $type |
|
3166 | + */ |
|
3161 | 3167 | function render_input_field( $type, $id, $value, $class, $placeholder, $required ) { |
3162 | 3168 | return "<input |
3163 | 3169 | type='". esc_attr( $type ) ."' |
@@ -3169,24 +3175,40 @@ discard block |
||
3169 | 3175 | />\n"; |
3170 | 3176 | } |
3171 | 3177 | |
3178 | + /** |
|
3179 | + * @param string $class |
|
3180 | + * @param string $placeholder |
|
3181 | + */ |
|
3172 | 3182 | function render_email_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) { |
3173 | 3183 | $field = $this->render_label( 'email', $id, $label, $required, $required_field_text ); |
3174 | 3184 | $field .= $this->render_input_field( 'email', $id, $value, $class, $placeholder, $required ); |
3175 | 3185 | return $field; |
3176 | 3186 | } |
3177 | 3187 | |
3188 | + /** |
|
3189 | + * @param string $class |
|
3190 | + * @param string $placeholder |
|
3191 | + */ |
|
3178 | 3192 | function render_telephone_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) { |
3179 | 3193 | $field = $this->render_label( 'telephone', $id, $label, $required, $required_field_text ); |
3180 | 3194 | $field .= $this->render_input_field( 'tel', $id, $value, $class, $placeholder, $required ); |
3181 | 3195 | return $field; |
3182 | 3196 | } |
3183 | 3197 | |
3198 | + /** |
|
3199 | + * @param string $class |
|
3200 | + * @param string $placeholder |
|
3201 | + */ |
|
3184 | 3202 | function render_url_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) { |
3185 | 3203 | $field = $this->render_label( 'url', $id, $label, $required, $required_field_text ); |
3186 | 3204 | $field .= $this->render_input_field( 'url', $id, $value, $class, $placeholder, $required ); |
3187 | 3205 | return $field; |
3188 | 3206 | } |
3189 | 3207 | |
3208 | + /** |
|
3209 | + * @param string $class |
|
3210 | + * @param string $placeholder |
|
3211 | + */ |
|
3190 | 3212 | function render_textarea_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) { |
3191 | 3213 | $field = $this->render_label( 'textarea', 'contact-form-comment-' . $id, $label, $required, $required_field_text ); |
3192 | 3214 | $field .= "<textarea |
@@ -3201,6 +3223,9 @@ discard block |
||
3201 | 3223 | return $field; |
3202 | 3224 | } |
3203 | 3225 | |
3226 | + /** |
|
3227 | + * @param string $class |
|
3228 | + */ |
|
3204 | 3229 | function render_radio_field( $id, $label, $value, $class, $required, $required_field_text ) { |
3205 | 3230 | $field = $this->render_label( '', $id, $label, $required, $required_field_text ); |
3206 | 3231 | foreach ( (array) $this->get_attribute( 'options' ) as $optionIndex => $option ) { |
@@ -3222,6 +3247,9 @@ discard block |
||
3222 | 3247 | return $field; |
3223 | 3248 | } |
3224 | 3249 | |
3250 | + /** |
|
3251 | + * @param string $class |
|
3252 | + */ |
|
3225 | 3253 | function render_checkbox_field( $id, $label, $value, $class, $required, $required_field_text ) { |
3226 | 3254 | $field = "<label class='grunion-field-label checkbox" . ( $this->is_error() ? ' form-error' : '' ) . "'>"; |
3227 | 3255 | $field .= "\t\t<input type='checkbox' name='" . esc_attr( $id ) . "' value='" . esc_attr__( 'Yes', 'jetpack' ) . "' " . $class . checked( (bool) $value, true, false ) . ' ' . ( $required ? "required aria-required='true'" : '' ) . "/> \n"; |
@@ -3231,6 +3259,9 @@ discard block |
||
3231 | 3259 | return $field; |
3232 | 3260 | } |
3233 | 3261 | |
3262 | + /** |
|
3263 | + * @param string $class |
|
3264 | + */ |
|
3234 | 3265 | function render_checkbox_multiple_field( $id, $label, $value, $class, $required, $required_field_text ) { |
3235 | 3266 | $field = $this->render_label( '', $id, $label, $required, $required_field_text ); |
3236 | 3267 | foreach ( (array) $this->get_attribute( 'options' ) as $optionIndex => $option ) { |
@@ -3246,6 +3277,9 @@ discard block |
||
3246 | 3277 | return $field; |
3247 | 3278 | } |
3248 | 3279 | |
3280 | + /** |
|
3281 | + * @param string $class |
|
3282 | + */ |
|
3249 | 3283 | function render_select_field( $id, $label, $value, $class, $required, $required_field_text ) { |
3250 | 3284 | $field = $this->render_label( 'select', $id, $label, $required, $required_field_text ); |
3251 | 3285 | $field .= "\t<select name='" . esc_attr( $id ) . "' id='" . esc_attr( $id ) . "' " . $class . ( $required ? "required aria-required='true'" : '' ) . ">\n"; |
@@ -3263,6 +3297,10 @@ discard block |
||
3263 | 3297 | return $field; |
3264 | 3298 | } |
3265 | 3299 | |
3300 | + /** |
|
3301 | + * @param string $class |
|
3302 | + * @param string $placeholder |
|
3303 | + */ |
|
3266 | 3304 | function render_date_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) { |
3267 | 3305 | $field = $this->render_label( 'date', $id, $label, $required, $required_field_text ); |
3268 | 3306 | $field .= $this->render_input_field( 'text', $id, $value, $class, $placeholder, $required ); |
@@ -3282,6 +3320,10 @@ discard block |
||
3282 | 3320 | return $field; |
3283 | 3321 | } |
3284 | 3322 | |
3323 | + /** |
|
3324 | + * @param string $class |
|
3325 | + * @param string $placeholder |
|
3326 | + */ |
|
3285 | 3327 | function render_default_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder, $type ) { |
3286 | 3328 | $field = $this->render_label( $type, $id, $label, $required, $required_field_text ); |
3287 | 3329 | $field .= $this->render_input_field( 'text', $id, $value, $class, $placeholder, $required ); |
@@ -1143,7 +1143,7 @@ discard block |
||
1143 | 1143 | } |
1144 | 1144 | /** |
1145 | 1145 | * Does the network allow admins to add new users. |
1146 | - * @return boolian |
|
1146 | + * @return boolean |
|
1147 | 1147 | */ |
1148 | 1148 | static function network_add_new_users( $option = null ) { |
1149 | 1149 | return (bool) get_site_option( 'add_new_users' ); |
@@ -1248,7 +1248,7 @@ discard block |
||
1248 | 1248 | * database which could be set to anything as opposed to what this function returns. |
1249 | 1249 | * @param bool $option |
1250 | 1250 | * |
1251 | - * @return boolean |
|
1251 | + * @return string |
|
1252 | 1252 | */ |
1253 | 1253 | public function is_main_network_option( $option ) { |
1254 | 1254 | // return '1' or '' |
@@ -1259,7 +1259,7 @@ discard block |
||
1259 | 1259 | * Return true if we are with multi-site or multi-network false if we are dealing with single site. |
1260 | 1260 | * |
1261 | 1261 | * @param string $option |
1262 | - * @return boolean |
|
1262 | + * @return string |
|
1263 | 1263 | */ |
1264 | 1264 | public function is_multisite( $option ) { |
1265 | 1265 | return (string) (bool) is_multisite(); |
@@ -1321,7 +1321,7 @@ discard block |
||
1321 | 1321 | |
1322 | 1322 | /** |
1323 | 1323 | * Returns true if the site has file write access false otherwise. |
1324 | - * @return string ( '1' | '0' ) |
|
1324 | + * @return integer ( '1' | '0' ) |
|
1325 | 1325 | **/ |
1326 | 1326 | public static function file_system_write_access() { |
1327 | 1327 | if ( ! function_exists( 'get_filesystem_method' ) ) { |
@@ -2177,6 +2177,7 @@ discard block |
||
2177 | 2177 | * @param int $user_id |
2178 | 2178 | * @param string $token |
2179 | 2179 | * return bool |
2180 | + * @param boolean $is_master_user |
|
2180 | 2181 | */ |
2181 | 2182 | public static function update_user_token( $user_id, $token, $is_master_user ) { |
2182 | 2183 | // not designed for concurrent updates |
@@ -2579,6 +2580,7 @@ discard block |
||
2579 | 2580 | |
2580 | 2581 | /** |
2581 | 2582 | * Like core's get_file_data implementation, but caches the result. |
2583 | + * @param string $file |
|
2582 | 2584 | */ |
2583 | 2585 | public static function get_file_data( $file, $headers ) { |
2584 | 2586 | //Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated |
@@ -2615,7 +2617,7 @@ discard block |
||
2615 | 2617 | * |
2616 | 2618 | * @param string $tag Tag as it appears in each module heading. |
2617 | 2619 | * |
2618 | - * @return mixed |
|
2620 | + * @return string |
|
2619 | 2621 | */ |
2620 | 2622 | public static function translate_module_tag( $tag ) { |
2621 | 2623 | return jetpack_get_module_i18n_tag( $tag ); |
@@ -2780,8 +2782,8 @@ discard block |
||
2780 | 2782 | * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR |
2781 | 2783 | * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR. |
2782 | 2784 | * |
2783 | - * @param $string |
|
2784 | - * @return mixed |
|
2785 | + * @param string $string |
|
2786 | + * @return string|null |
|
2785 | 2787 | */ |
2786 | 2788 | public static function alias_directories( $string ) { |
2787 | 2789 | // ABSPATH has a trailing slash. |
@@ -3061,6 +3063,9 @@ discard block |
||
3061 | 3063 | return self::update_active_modules( $new ); |
3062 | 3064 | } |
3063 | 3065 | |
3066 | + /** |
|
3067 | + * @param string $module |
|
3068 | + */ |
|
3064 | 3069 | public static function enable_module_configurable( $module ) { |
3065 | 3070 | $module = Jetpack::get_module_slug( $module ); |
3066 | 3071 | add_filter( 'jetpack_module_configurable_' . $module, '__return_true' ); |
@@ -3088,21 +3093,33 @@ discard block |
||
3088 | 3093 | return $url; |
3089 | 3094 | } |
3090 | 3095 | |
3096 | + /** |
|
3097 | + * @param string $module |
|
3098 | + */ |
|
3091 | 3099 | public static function module_configuration_load( $module, $method ) { |
3092 | 3100 | $module = Jetpack::get_module_slug( $module ); |
3093 | 3101 | add_action( 'jetpack_module_configuration_load_' . $module, $method ); |
3094 | 3102 | } |
3095 | 3103 | |
3104 | + /** |
|
3105 | + * @param string $module |
|
3106 | + */ |
|
3096 | 3107 | public static function module_configuration_head( $module, $method ) { |
3097 | 3108 | $module = Jetpack::get_module_slug( $module ); |
3098 | 3109 | add_action( 'jetpack_module_configuration_head_' . $module, $method ); |
3099 | 3110 | } |
3100 | 3111 | |
3112 | + /** |
|
3113 | + * @param string $module |
|
3114 | + */ |
|
3101 | 3115 | public static function module_configuration_screen( $module, $method ) { |
3102 | 3116 | $module = Jetpack::get_module_slug( $module ); |
3103 | 3117 | add_action( 'jetpack_module_configuration_screen_' . $module, $method ); |
3104 | 3118 | } |
3105 | 3119 | |
3120 | + /** |
|
3121 | + * @param string $module |
|
3122 | + */ |
|
3106 | 3123 | public static function module_configuration_activation_screen( $module, $method ) { |
3107 | 3124 | $module = Jetpack::get_module_slug( $module ); |
3108 | 3125 | add_action( 'display_activate_module_setting_' . $module, $method ); |
@@ -3110,6 +3127,9 @@ discard block |
||
3110 | 3127 | |
3111 | 3128 | /* Installation */ |
3112 | 3129 | |
3130 | + /** |
|
3131 | + * @param string $message |
|
3132 | + */ |
|
3113 | 3133 | public static function bail_on_activation( $message, $deactivate = true ) { |
3114 | 3134 | ?> |
3115 | 3135 | <!doctype html> |
@@ -3866,7 +3886,7 @@ discard block |
||
3866 | 3886 | * Add help to the Jetpack page |
3867 | 3887 | * |
3868 | 3888 | * @since Jetpack (1.2.3) |
3869 | - * @return false if not the Jetpack page |
|
3889 | + * @return false|null if not the Jetpack page |
|
3870 | 3890 | */ |
3871 | 3891 | function admin_help() { |
3872 | 3892 | $current_screen = get_current_screen(); |
@@ -4967,6 +4987,7 @@ discard block |
||
4967 | 4987 | /** |
4968 | 4988 | * Returns the requested Jetpack API URL |
4969 | 4989 | * |
4990 | + * @param string $relative_url |
|
4970 | 4991 | * @return string |
4971 | 4992 | */ |
4972 | 4993 | public static function api_url( $relative_url ) { |
@@ -5158,6 +5179,7 @@ discard block |
||
5158 | 5179 | * Note these tokens are unique per call, NOT static per site for connecting. |
5159 | 5180 | * |
5160 | 5181 | * @since 2.6 |
5182 | + * @param string $action |
|
5161 | 5183 | * @return array |
5162 | 5184 | */ |
5163 | 5185 | public static function generate_secrets( $action, $user_id = false, $exp = 600 ) { |
@@ -5691,7 +5713,6 @@ discard block |
||
5691 | 5713 | /** |
5692 | 5714 | * Report authentication status to the WP REST API. |
5693 | 5715 | * |
5694 | - * @param WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not |
|
5695 | 5716 | * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication} |
5696 | 5717 | */ |
5697 | 5718 | public function wp_rest_authentication_errors( $value ) { |
@@ -5701,6 +5722,10 @@ discard block |
||
5701 | 5722 | return $this->rest_authentication_status; |
5702 | 5723 | } |
5703 | 5724 | |
5725 | + /** |
|
5726 | + * @param integer $timestamp |
|
5727 | + * @param string $nonce |
|
5728 | + */ |
|
5704 | 5729 | function add_nonce( $timestamp, $nonce ) { |
5705 | 5730 | global $wpdb; |
5706 | 5731 | static $nonces_used_this_request = array(); |
@@ -5846,6 +5871,7 @@ discard block |
||
5846 | 5871 | * @param string $key |
5847 | 5872 | * @param string $value |
5848 | 5873 | * @param bool $restate private |
5874 | + * @return string |
|
5849 | 5875 | */ |
5850 | 5876 | public static function state( $key = null, $value = null, $restate = false ) { |
5851 | 5877 | static $state = array(); |
@@ -5902,6 +5928,9 @@ discard block |
||
5902 | 5928 | Jetpack::state( null, null, true ); |
5903 | 5929 | } |
5904 | 5930 | |
5931 | + /** |
|
5932 | + * @param string $file |
|
5933 | + */ |
|
5905 | 5934 | public static function check_privacy( $file ) { |
5906 | 5935 | static $is_site_publicly_accessible = null; |
5907 | 5936 | |
@@ -6519,9 +6548,7 @@ discard block |
||
6519 | 6548 | * |
6520 | 6549 | * Attached to `style_loader_src` filter. |
6521 | 6550 | * |
6522 | - * @param string $tag The tag that would link to the external asset. |
|
6523 | 6551 | * @param string $handle The registered handle of the script in question. |
6524 | - * @param string $href The url of the asset in question. |
|
6525 | 6552 | */ |
6526 | 6553 | public static function set_suffix_on_min( $src, $handle ) { |
6527 | 6554 | if ( false === strpos( $src, '.min.css' ) ) { |
@@ -6702,8 +6729,8 @@ discard block |
||
6702 | 6729 | * - Absolute URLs `http://domain.com/feh.png` |
6703 | 6730 | * - Domain root relative URLs `/feh.png` |
6704 | 6731 | * |
6705 | - * @param $css string: The raw CSS -- should be read in directly from the file. |
|
6706 | - * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
|
6732 | + * @param string $css string: The raw CSS -- should be read in directly from the file. |
|
6733 | + * @param string $css_file_url : The URL that the file can be accessed at, for calculating paths from. |
|
6707 | 6734 | * |
6708 | 6735 | * @return mixed|string |
6709 | 6736 | */ |
@@ -6932,7 +6959,7 @@ discard block |
||
6932 | 6959 | * |
6933 | 6960 | * @param string $option_name |
6934 | 6961 | * |
6935 | - * @return bool |
|
6962 | + * @return false|null |
|
6936 | 6963 | */ |
6937 | 6964 | public static function jumpstart_has_updated_module_option( $option_name = '' ) { |
6938 | 6965 | // Bail if Jump Start has already been dismissed |
@@ -6973,7 +7000,7 @@ discard block |
||
6973 | 7000 | /** |
6974 | 7001 | * Stores and prints out domains to prefetch for page speed optimization. |
6975 | 7002 | * |
6976 | - * @param mixed $new_urls |
|
7003 | + * @param string[] $new_urls |
|
6977 | 7004 | */ |
6978 | 7005 | public static function dns_prefetch( $new_urls = null ) { |
6979 | 7006 | static $prefetch_urls = array(); |
@@ -7019,7 +7046,6 @@ discard block |
||
7019 | 7046 | } |
7020 | 7047 | |
7021 | 7048 | /** |
7022 | - * @param mixed $result Value for the user's option |
|
7023 | 7049 | * @return mixed |
7024 | 7050 | */ |
7025 | 7051 | function get_user_option_meta_box_order_dashboard( $sorted ) { |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * |
12 | 12 | * @param string $type Slug of the block. Will be prefixed with jetpack/. |
13 | 13 | * @param array $args Arguments that are passed into the register_block_type. |
14 | - * @param array $avalibility Arguments that tells us what kind of avalibility the block has |
|
14 | + * @param array $availability Arguments that tells us what kind of avalibility the block has |
|
15 | 15 | * |
16 | 16 | * @see register_block_type |
17 | 17 | * |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | /** |
99 | 99 | * Checks for a given .json file in the blocks folder. |
100 | 100 | * |
101 | - * @param $preset The name of the .json file to look for. |
|
101 | + * @param string $preset The name of the .json file to look for. |
|
102 | 102 | * |
103 | 103 | * @return bool True if the file is found. |
104 | 104 | */ |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * Decodes JSON loaded from a preset file in the blocks folder |
111 | 111 | * |
112 | - * @param $preset The name of the .json file to load. |
|
112 | + * @param string $preset The name of the .json file to load. |
|
113 | 113 | * |
114 | 114 | * @return mixed Returns an object if the file is present, or false if a valid .json file is not present. |
115 | 115 | */ |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | * Only enqueue block assets when needed. |
218 | 218 | * |
219 | 219 | * @param string $type slug of the block. |
220 | - * @param array $script_dependencies An array of view-side Javascript dependencies to be enqueued. |
|
220 | + * @param string[] $script_dependencies An array of view-side Javascript dependencies to be enqueued. |
|
221 | 221 | * |
222 | 222 | * @return void |
223 | 223 | */ |