@@ -181,7 +181,7 @@ |
||
| 181 | 181 | /** |
| 182 | 182 | * Backend function to abstract the xmlrpc function calls to wpcom. |
| 183 | 183 | * |
| 184 | - * @param $endpoint |
|
| 184 | + * @param string $endpoint |
|
| 185 | 185 | * @param $error_message |
| 186 | 186 | */ |
| 187 | 187 | function __process_ajax_proxy_request( $endpoint, $error_message ) { |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | * Validate the require two step checkbox in Settings > General |
| 263 | 263 | * |
| 264 | 264 | * @since 2.7 |
| 265 | - * @return boolean |
|
| 265 | + * @return integer |
|
| 266 | 266 | **/ |
| 267 | 267 | public function validate_jetpack_sso_require_two_step( $input ) { |
| 268 | 268 | return ( ! empty( $input ) ) ? 1 : 0; |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | * Validate the match by email check in Settings > General |
| 288 | 288 | * |
| 289 | 289 | * @since 2.9 |
| 290 | - * @return boolean |
|
| 290 | + * @return integer |
|
| 291 | 291 | **/ |
| 292 | 292 | public function validate_jetpack_sso_match_by_email( $input ) { |
| 293 | 293 | return ( ! empty( $input ) ) ? 1 : 0; |
@@ -253,6 +253,8 @@ |
||
| 253 | 253 | * And we'll magically convert it to a list. This has the added benefit |
| 254 | 254 | * of including itemprops for the recipe schema. |
| 255 | 255 | * |
| 256 | + * @param string $content |
|
| 257 | + * @param string $type |
|
| 256 | 258 | * @return string content formatted as a list item |
| 257 | 259 | */ |
| 258 | 260 | static function output_list_content( $content, $type ) { |
@@ -69,11 +69,17 @@ |
||
| 69 | 69 | return $args; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | + /** |
|
| 73 | + * @param string $taxonomy |
|
| 74 | + */ |
|
| 72 | 75 | function get_found( $taxonomy, $args ) { |
| 73 | 76 | unset( $args['offset'] ); |
| 74 | 77 | return wp_count_terms( $taxonomy, $args ); |
| 75 | 78 | } |
| 76 | 79 | |
| 80 | + /** |
|
| 81 | + * @param string $taxonomy |
|
| 82 | + */ |
|
| 77 | 83 | function get_formatted_terms( $taxonomy, $args ) { |
| 78 | 84 | $terms = get_terms( $taxonomy, $args ); |
| 79 | 85 | |
@@ -44,6 +44,11 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | // /sites/%s/taxonomies/%s/terms/new -> $blog_id, $taxonomy |
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * @param string $path |
|
| 50 | + * @param string $taxonomy |
|
| 51 | + */ |
|
| 47 | 52 | function new_term( $path, $blog_id, $taxonomy ) { |
| 48 | 53 | $args = $this->query_args(); |
| 49 | 54 | $input = $this->input(); |
@@ -90,6 +95,12 @@ discard block |
||
| 90 | 95 | } |
| 91 | 96 | |
| 92 | 97 | // /sites/%s/taxonomies/%s/terms/slug:%s -> $blog_id, $taxonomy, $slug |
| 98 | + |
|
| 99 | + /** |
|
| 100 | + * @param string $path |
|
| 101 | + * @param integer $slug |
|
| 102 | + * @param string $taxonomy |
|
| 103 | + */ |
|
| 93 | 104 | function update_term( $path, $blog_id, $slug, $taxonomy ) { |
| 94 | 105 | $tax = get_taxonomy( $taxonomy ); |
| 95 | 106 | if ( ! current_user_can( $tax->cap->edit_terms ) ) { |
@@ -134,6 +145,12 @@ discard block |
||
| 134 | 145 | } |
| 135 | 146 | |
| 136 | 147 | // /sites/%s/taxonomies/%s/terms/slug:%s/delete -> $blog_id, $taxonomy, $slug |
| 148 | + |
|
| 149 | + /** |
|
| 150 | + * @param string $path |
|
| 151 | + * @param integer $slug |
|
| 152 | + * @param string $taxonomy |
|
| 153 | + */ |
|
| 137 | 154 | function delete_term( $path, $blog_id, $slug, $taxonomy ) { |
| 138 | 155 | $term = get_term_by( 'slug', $slug, $taxonomy ); |
| 139 | 156 | $tax = get_taxonomy( $taxonomy ); |
@@ -281,8 +281,6 @@ |
||
| 281 | 281 | /** |
| 282 | 282 | * Builds map display HTML code from the supplied latitude and longitude. |
| 283 | 283 | * |
| 284 | - * @param float $lat Map Latitude |
|
| 285 | - * @param float $lon Map Longitude |
|
| 286 | 284 | * |
| 287 | 285 | * @return string HTML of the map |
| 288 | 286 | */ |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Constructor |
| 65 | - * @param array $css contains the class csstidy |
|
| 65 | + * @param csstidy $css contains the class csstidy |
|
| 66 | 66 | * @access private |
| 67 | 67 | * @version 1.0 |
| 68 | 68 | */ |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | * |
| 86 | 86 | * @param string $cron_name |
| 87 | 87 | * |
| 88 | - * @return bool |
|
| 88 | + * @return false|null |
|
| 89 | 89 | */ |
| 90 | 90 | public function activate_cron( $cron_name ) { |
| 91 | 91 | |
@@ -699,8 +699,7 @@ discard block |
||
| 699 | 699 | * Render the events |
| 700 | 700 | * |
| 701 | 701 | * @param string $url (default: '') |
| 702 | - * @param string $context (default: 'widget') or 'shortcode' |
|
| 703 | - * @return mixed bool|string false on failure, rendered HTML string on success. |
|
| 702 | + * @return false|string bool|string false on failure, rendered HTML string on success. |
|
| 704 | 703 | */ |
| 705 | 704 | public function render( $url = '', $args = array() ) { |
| 706 | 705 | |
@@ -857,8 +856,7 @@ discard block |
||
| 857 | 856 | * Wrapper function for iCalendarReader->render() |
| 858 | 857 | * |
| 859 | 858 | * @param string $url (default: '') |
| 860 | - * @param string $context (default: 'widget') or 'shortcode' |
|
| 861 | - * @return mixed bool|string false on failure, rendered HTML string on success. |
|
| 859 | + * @return false|string bool|string false on failure, rendered HTML string on success. |
|
| 862 | 860 | */ |
| 863 | 861 | function icalendar_render_events( $url = '', $args = array() ) { |
| 864 | 862 | $ical = new iCalendarReader(); |