@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * Return array of fields' id and label, for a given Form ID |
271 | 271 | * |
272 | 272 | * @access public |
273 | - * @param string|array $form_id (default: '') or $form object |
|
273 | + * @param string|array $form (default: '') or $form object |
|
274 | 274 | * @param bool $add_default_properties |
275 | 275 | * @param bool $include_parent_field |
276 | 276 | * @return array |
@@ -1012,7 +1012,7 @@ discard block |
||
1012 | 1012 | * |
1013 | 1013 | * @param array $form Gravity Forms form array |
1014 | 1014 | * @param string $field_id ID of the field. If an input, full input ID (like `1.3`) |
1015 | - * @param string|array $field_value Raw value of the field. |
|
1015 | + * @param string $field_value Raw value of the field. |
|
1016 | 1016 | * @return string |
1017 | 1017 | */ |
1018 | 1018 | public static function get_field_label( $form = array(), $field_id = '', $field_value = '' ) { |
@@ -1515,7 +1515,7 @@ discard block |
||
1515 | 1515 | * |
1516 | 1516 | * Do the same than parse_str without max_input_vars limitation: |
1517 | 1517 | * Parses $string as if it were the query string passed via a URL and sets variables in the current scope. |
1518 | - * @param $string string string to parse (not altered like in the original parse_str(), use the second parameter!) |
|
1518 | + * @param string $string string string to parse (not altered like in the original parse_str(), use the second parameter!) |
|
1519 | 1519 | * @param $result array If the second parameter is present, variables are stored in this variable as array elements |
1520 | 1520 | * @return bool true or false if $string is an empty string |
1521 | 1521 | * @since 1.5.3 |
@@ -1750,9 +1750,9 @@ discard block |
||
1750 | 1750 | * @param string $message Message body (required) |
1751 | 1751 | * @param string $from_name Displayed name of the sender |
1752 | 1752 | * @param string $message_format If "html", sent text as `text/html`. Otherwise, `text/plain`. Default: "html". |
1753 | - * @param string|array $attachments Optional. Files to attach. {@see wp_mail()} for usage. Default: "". |
|
1753 | + * @param string $attachments Optional. Files to attach. {@see wp_mail()} for usage. Default: "". |
|
1754 | 1754 | * @param array|false $entry Gravity Forms entry array, related to the email. Default: false. |
1755 | - * @param array|false $notification Gravity Forms notification that triggered the email. {@see GFCommon::send_notification}. Default:false. |
|
1755 | + * @param boolean $notification Gravity Forms notification that triggered the email. {@see GFCommon::send_notification}. Default:false. |
|
1756 | 1756 | */ |
1757 | 1757 | public static function send_email( $from, $to, $bcc, $reply_to, $subject, $message, $from_name = '', $message_format = 'html', $attachments = '', $entry = false, $notification = false ) { |
1758 | 1758 |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | /** |
250 | 250 | * Add admin script to the no-conflict scripts whitelist |
251 | 251 | * @param array $allowed Scripts allowed in no-conflict mode |
252 | - * @return array Scripts allowed in no-conflict mode, plus the search widget script |
|
252 | + * @return string[] Scripts allowed in no-conflict mode, plus the search widget script |
|
253 | 253 | */ |
254 | 254 | public function register_no_conflict( $allowed ) { |
255 | 255 | $allowed[] = 'gravityview_searchwidget_admin'; |
@@ -732,7 +732,6 @@ discard block |
||
732 | 732 | * Dropin for the legacy flat filters when \GF_Query is available. |
733 | 733 | * |
734 | 734 | * @param \GF_Query $query The current query object reference |
735 | - * @param \GV\View $this The current view object |
|
736 | 735 | * @param \GV\Request $request The request object |
737 | 736 | */ |
738 | 737 | public function gf_query_filter( &$query, $view, $request ) { |
@@ -1414,7 +1413,7 @@ discard block |
||
1414 | 1413 | /** |
1415 | 1414 | * Get the label for a search form field |
1416 | 1415 | * @param array $field Field setting as sent by the GV configuration - has `field`, `input` (input type), and `label` keys |
1417 | - * @param array $form_field Form field data, as fetched by `gravityview_get_field()` |
|
1416 | + * @param GF_Field|null $form_field Form field data, as fetched by `gravityview_get_field()` |
|
1418 | 1417 | * @return string Label for the search form |
1419 | 1418 | */ |
1420 | 1419 | private static function get_field_label( $field, $form_field = array() ) { |
@@ -1470,7 +1469,7 @@ discard block |
||
1470 | 1469 | * Prepare search fields to frontend render with other details (label, field type, searched values) |
1471 | 1470 | * |
1472 | 1471 | * @param array $field |
1473 | - * @return array |
|
1472 | + * @return GV\View |
|
1474 | 1473 | */ |
1475 | 1474 | private function get_search_filter_details( $field ) { |
1476 | 1475 | |
@@ -1609,7 +1608,7 @@ discard block |
||
1609 | 1608 | /** |
1610 | 1609 | * Require the datepicker script for the frontend GV script |
1611 | 1610 | * @param array $js_dependencies Array of existing required scripts for the fe-views.js script |
1612 | - * @return array Array required scripts, with `jquery-ui-datepicker` added |
|
1611 | + * @return string[] Array required scripts, with `jquery-ui-datepicker` added |
|
1613 | 1612 | */ |
1614 | 1613 | public function add_datepicker_js_dependency( $js_dependencies ) { |
1615 | 1614 | |
@@ -1621,7 +1620,7 @@ discard block |
||
1621 | 1620 | /** |
1622 | 1621 | * Modify the array passed to wp_localize_script() |
1623 | 1622 | * |
1624 | - * @param array $js_localization The data padded to the Javascript file |
|
1623 | + * @param array $localizations The data padded to the Javascript file |
|
1625 | 1624 | * @param array $view_data View data array with View settings |
1626 | 1625 | * |
1627 | 1626 | * @return array |
@@ -1801,7 +1800,7 @@ discard block |
||
1801 | 1800 | * |
1802 | 1801 | * @param array $get Where to look for the operator. |
1803 | 1802 | * @param string $key The filter key to look for. |
1804 | - * @param array $allowed The allowed operators (whitelist). |
|
1803 | + * @param string[] $allowed The allowed operators (whitelist). |
|
1805 | 1804 | * @param string $default The default operator. |
1806 | 1805 | * |
1807 | 1806 | * @return string The operator. |
@@ -141,8 +141,8 @@ discard block |
||
141 | 141 | * |
142 | 142 | * @see add_columns_sort_links |
143 | 143 | * @param string $url Single-sort URL |
144 | - * @param array $sort_args Single sorting for rules, in [ field_id, dir ] format |
|
145 | - * @param string|int $field_id ID of the current field being displayed |
|
144 | + * @param string[] $sort_args Single sorting for rules, in [ field_id, dir ] format |
|
145 | + * @param string $field_id ID of the current field being displayed |
|
146 | 146 | * |
147 | 147 | * @return string Multisort URL, if there are multiple sorts. Otherwise, existing $url |
148 | 148 | */ |
@@ -346,7 +346,7 @@ discard block |
||
346 | 346 | * Output a field cell. |
347 | 347 | * |
348 | 348 | * @param \GV\Field $field The field to be ouput. |
349 | - * @param \GV\Field $entry The entry this field is for. |
|
349 | + * @param Entry $entry The entry this field is for. |
|
350 | 350 | * |
351 | 351 | * @return void |
352 | 352 | */ |
@@ -76,7 +76,7 @@ |
||
76 | 76 | * @param \GV\View $view The view we're looking at. |
77 | 77 | * @param string $path The path of the offending template. |
78 | 78 | * |
79 | - * @return \Callable A closure used in the filter. |
|
79 | + * @return \Closure A closure used in the filter. |
|
80 | 80 | */ |
81 | 81 | public function legacy_template_warning( $view, $path ) { |
82 | 82 | return function() use ( $view, $path ) { |
@@ -101,7 +101,7 @@ |
||
101 | 101 | * Why? See https://github.com/gravityview/GravityView/issues/1024 |
102 | 102 | * |
103 | 103 | * @param \GV\Field_Template $template The template instance. |
104 | - * @return callable The callback bound to `get_template_part`. See `\GV\Field_Template::__construct` |
|
104 | + * @return \Closure The callback bound to `get_template_part`. See `\GV\Field_Template::__construct` |
|
105 | 105 | */ |
106 | 106 | public static function add_id_specific_templates( $template ) { |
107 | 107 |