@@ -133,6 +133,9 @@ discard block |
||
| 133 | 133 | exit; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | + /** |
|
| 137 | + * @param string $version |
|
| 138 | + */ |
|
| 136 | 139 | function asset_version( $version ) { |
| 137 | 140 | /** |
| 138 | 141 | * Filter the version string used when enqueuing Carousel assets. |
@@ -707,6 +710,9 @@ discard block |
||
| 707 | 710 | return ( 1 == $value ) ? 1 : 0; |
| 708 | 711 | } |
| 709 | 712 | |
| 713 | + /** |
|
| 714 | + * @param string $name |
|
| 715 | + */ |
|
| 710 | 716 | function settings_checkbox( $name, $label_text, $extra_text = '', $default_to_checked = true ) { |
| 711 | 717 | if ( empty( $name ) ) { |
| 712 | 718 | return; |
@@ -722,6 +728,9 @@ discard block |
||
| 722 | 728 | echo '</fieldset>'; |
| 723 | 729 | } |
| 724 | 730 | |
| 731 | + /** |
|
| 732 | + * @param string $name |
|
| 733 | + */ |
|
| 725 | 734 | function settings_select( $name, $values, $extra_text = '' ) { |
| 726 | 735 | if ( empty( $name ) || ! is_array( $values ) || empty( $values ) ) { |
| 727 | 736 | return; |
@@ -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; |
@@ -39,6 +44,9 @@ discard block |
||
| 39 | 44 | return $html; |
| 40 | 45 | } |
| 41 | 46 | |
| 47 | + /** |
|
| 48 | + * @param string $name |
|
| 49 | + */ |
|
| 42 | 50 | private function template( $name, $context = null ) { |
| 43 | 51 | if ( ! in_array( $name, self::$templates ) ) { |
| 44 | 52 | return; |
@@ -699,7 +699,7 @@ |
||
| 699 | 699 | * handlers should be copied when the theme context is loaded by the REST API. |
| 700 | 700 | * |
| 701 | 701 | * @param array $copy_dirs Copy paths with actions to be copied |
| 702 | - * @return array Copy paths with featured content plugin |
|
| 702 | + * @return string[] Copy paths with featured content plugin |
|
| 703 | 703 | */ |
| 704 | 704 | function wpcom_rest_api_featured_content_copy_plugin_actions( $copy_dirs ) { |
| 705 | 705 | $copy_dirs[] = __FILE__; |
@@ -40,7 +40,6 @@ |
||
| 40 | 40 | /** |
| 41 | 41 | * Prevent IS from being activated if theme doesn't support it |
| 42 | 42 | * |
| 43 | - * @param bool $can_activate |
|
| 44 | 43 | * @filter jetpack_can_activate_infinite-scroll |
| 45 | 44 | * @return bool |
| 46 | 45 | */ |