@@ -427,6 +427,9 @@ |
||
427 | 427 | public $service = ''; |
428 | 428 | public $total = 0; |
429 | 429 | |
430 | + /** |
|
431 | + * @param integer $total |
|
432 | + */ |
|
430 | 433 | public function __construct( $id, $total ) { |
431 | 434 | $services = new Sharing_Service(); |
432 | 435 | $this->id = esc_html( $id ); |
@@ -40,6 +40,9 @@ discard block |
||
40 | 40 | return $this->id; |
41 | 41 | } |
42 | 42 | |
43 | + /** |
|
44 | + * @return string |
|
45 | + */ |
|
43 | 46 | public function get_share_url( $post_id ) { |
44 | 47 | /** |
45 | 48 | * Filter the sharing permalink. |
@@ -77,6 +80,9 @@ discard block |
||
77 | 80 | return false; |
78 | 81 | } |
79 | 82 | |
83 | + /** |
|
84 | + * @param string $url |
|
85 | + */ |
|
80 | 86 | public function get_link( $url, $text, $title, $query = '', $id = false ) { |
81 | 87 | $args = func_get_args(); |
82 | 88 | $klasses = array( 'share-'.$this->get_class(), 'sd-button' ); |
@@ -311,6 +317,9 @@ discard block |
||
311 | 317 | do_action( 'sharing_bump_stats', array( 'service' => $this, 'post' => $post ) ); |
312 | 318 | } |
313 | 319 | |
320 | + /** |
|
321 | + * @param string $name |
|
322 | + */ |
|
314 | 323 | public function js_dialog( $name, $params = array() ) { |
315 | 324 | if ( true !== $this->open_link_in_new ) |
316 | 325 | return; |
@@ -1393,6 +1402,9 @@ discard block |
||
1393 | 1402 | return __( 'Pinterest', 'jetpack' ); |
1394 | 1403 | } |
1395 | 1404 | |
1405 | + /** |
|
1406 | + * @return string |
|
1407 | + */ |
|
1396 | 1408 | public function get_image( $post ) { |
1397 | 1409 | if ( class_exists( 'Jetpack_PostImages' ) ) { |
1398 | 1410 | $image = Jetpack_PostImages::get_image( $post->ID, array( 'fallback_to_avatars' => true ) ); |
@@ -22,6 +22,9 @@ |
||
22 | 22 | add_action( 'infinite_scroll_render', array( $this, 'polldaddy_shortcode_infinite' ), 11 ); |
23 | 23 | } |
24 | 24 | |
25 | + /** |
|
26 | + * @param string $survey_link |
|
27 | + */ |
|
25 | 28 | private function get_async_code( array $settings, $survey_link ) { |
26 | 29 | $embed_src = 'http://i0.poll.fm/survey.js'; |
27 | 30 | $embed_src_ssl = 'https://polldaddy.com/survey.js'; |
@@ -82,6 +82,9 @@ |
||
82 | 82 | $this->settings_select( 'jetpack_slideshow_background_color', $options ); |
83 | 83 | } |
84 | 84 | |
85 | + /** |
|
86 | + * @param string $name |
|
87 | + */ |
|
85 | 88 | function settings_select( $name, $values, $extra_text = '' ) { |
86 | 89 | if ( empty( $name ) || empty( $values ) || ! is_array( $values ) ) { |
87 | 90 | return; |
@@ -592,7 +592,7 @@ discard block |
||
592 | 592 | * |
593 | 593 | * @param $id |
594 | 594 | * |
595 | - * @return mixed |
|
595 | + * @return boolean |
|
596 | 596 | */ |
597 | 597 | public static function delete_site_icon( $id ) { |
598 | 598 | // We add the filter to make sure that we also delete all the added images |
@@ -715,7 +715,6 @@ discard block |
||
715 | 715 | * Save Blavatar files to Media Library |
716 | 716 | * |
717 | 717 | * @param string $title |
718 | - * @param string $filename |
|
719 | 718 | * @param string $file_type |
720 | 719 | * @param boolean $generate_meta |
721 | 720 | * @return int $attactment_id |
@@ -203,6 +203,9 @@ |
||
203 | 203 | return $options; |
204 | 204 | } |
205 | 205 | |
206 | +/** |
|
207 | + * @param string $option |
|
208 | + */ |
|
206 | 209 | function stats_get_option( $option ) { |
207 | 210 | $options = stats_get_options(); |
208 | 211 |
@@ -406,7 +406,7 @@ |
||
406 | 406 | * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request. |
407 | 407 | * |
408 | 408 | * @param string $email |
409 | - * @param array $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
409 | + * @param integer $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
410 | 410 | * @param bool $async (optional) Should the subscription be performed asynchronously? Defaults to true. |
411 | 411 | * |
412 | 412 | * @return true|Jetpack_Error true on success |
@@ -258,7 +258,7 @@ |
||
258 | 258 | /** |
259 | 259 | * Reset the site logo if the current logo is deleted in the media manager. |
260 | 260 | * |
261 | - * @param int $site_id |
|
261 | + * @param int $post_id |
|
262 | 262 | * @uses Site_Logo::remove_site_logo() |
263 | 263 | */ |
264 | 264 | public function reset_on_attachment_delete( $post_id ) { |
@@ -9,6 +9,11 @@ discard block |
||
9 | 9 | public $link; |
10 | 10 | public $grayscale; |
11 | 11 | public $columns; |
12 | + |
|
13 | + /** |
|
14 | + * @param boolean $grayscale |
|
15 | + * @param integer $columns |
|
16 | + */ |
|
12 | 17 | public function __construct( $attachments, $link, $grayscale, $columns ) { |
13 | 18 | |
14 | 19 | $this->attachments = $attachments; |
@@ -33,6 +38,9 @@ discard block |
||
33 | 38 | return $html; |
34 | 39 | } |
35 | 40 | |
41 | + /** |
|
42 | + * @param string $name |
|
43 | + */ |
|
36 | 44 | private function template( $name, $context = null ) { |
37 | 45 | if ( ! in_array( $name, self::$templates ) ) { |
38 | 46 | return; |