@@ -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 ) { |
@@ -102,9 +102,9 @@ |
||
102 | 102 | * Parameters are the same as preg_replace, with an added optional search param for improved performance |
103 | 103 | * |
104 | 104 | * @param String $pattern |
105 | - * @param String $replacement |
|
106 | 105 | * @param String $content |
107 | 106 | * @param String $search |
107 | + * @param string $callback |
|
108 | 108 | * @return String $content |
109 | 109 | */ |
110 | 110 | function jetpack_preg_replace_callback_outside_tags( $pattern, $callback, $content, $search = null ) { |
@@ -4,16 +4,29 @@ |
||
4 | 4 | require_once dirname( __FILE__ ) . '/class.json-api-site-base.php'; |
5 | 5 | |
6 | 6 | abstract class Abstract_Jetpack_Site extends SAL_Site { |
7 | + |
|
8 | + /** |
|
9 | + * @param string $name |
|
10 | + */ |
|
7 | 11 | abstract protected function get_constant( $name ); |
8 | 12 | |
13 | + /** |
|
14 | + * @param string $feature_name |
|
15 | + */ |
|
9 | 16 | abstract protected function current_theme_supports( $feature_name ); |
10 | 17 | |
18 | + /** |
|
19 | + * @param string $feature_name |
|
20 | + */ |
|
11 | 21 | abstract protected function get_theme_support( $feature_name ); |
12 | 22 | |
13 | 23 | abstract protected function get_jetpack_version(); |
14 | 24 | |
15 | 25 | abstract protected function get_updates(); |
16 | 26 | |
27 | + /** |
|
28 | + * @return string |
|
29 | + */ |
|
17 | 30 | abstract protected function main_network_site(); |
18 | 31 | |
19 | 32 | abstract protected function wp_version(); |
@@ -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 ); |
@@ -16,6 +16,9 @@ discard block |
||
16 | 16 | public $context; |
17 | 17 | public $site; |
18 | 18 | |
19 | + /** |
|
20 | + * @param Jetpack_Site $site |
|
21 | + */ |
|
19 | 22 | function __construct( $site, $post, $context ) { |
20 | 23 | $this->post = $post; |
21 | 24 | $this->context = $context; |
@@ -508,6 +511,9 @@ discard block |
||
508 | 511 | return $suggestions; |
509 | 512 | } |
510 | 513 | |
514 | + /** |
|
515 | + * @param string $context |
|
516 | + */ |
|
511 | 517 | private function format_taxonomy( $taxonomy, $taxonomy_type, $context ) { |
512 | 518 | // Permissions |
513 | 519 | switch ( $context ) { |
@@ -36,6 +36,9 @@ |
||
36 | 36 | return self::$initialized_modules; |
37 | 37 | } |
38 | 38 | |
39 | + /** |
|
40 | + * @param string $module_name |
|
41 | + */ |
|
39 | 42 | public static function get_module( $module_name ) { |
40 | 43 | foreach( self::get_modules() as $module ) { |
41 | 44 | if ( $module->name() === $module_name ) { |
@@ -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 | */ |