@@ -262,6 +262,8 @@ |
||
262 | 262 | /** |
263 | 263 | * Process the attributes passed to the shortcode. Make sure they're valid |
264 | 264 | * |
265 | + * @param string $content |
|
266 | + * @param string $tag |
|
265 | 267 | * @return array Array of attributes parsed for the shortcode |
266 | 268 | */ |
267 | 269 | private function parse_atts( $atts, $content, $tag ) { |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * |
58 | 58 | * @see GVCommon::get_form_fields() |
59 | 59 | * @access public |
60 | - * @param string|array $form_id (default: '') or $form object |
|
60 | + * @param string|array $form (default: '') or $form object |
|
61 | 61 | * @return array |
62 | 62 | */ |
63 | 63 | function gravityview_get_form_fields( $form = '', $add_default_properties = false, $include_parent_field = true ) { |
@@ -219,7 +219,6 @@ discard block |
||
219 | 219 | * |
220 | 220 | * @see GravityView_Template::template_id |
221 | 221 | * |
222 | - * @param int $view_id The ID of the View to get the layout of |
|
223 | 222 | * |
224 | 223 | * @return string GravityView_Template::template_id value. Empty string if not. |
225 | 224 | */ |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | * |
358 | 358 | * @param array $file_paths List of template paths ordered |
359 | 359 | * |
360 | - * @return array File paths with `./` and `./partials/` paths added |
|
360 | + * @return string[] File paths with `./` and `./partials/` paths added |
|
361 | 361 | */ |
362 | 362 | public function add_template_path( $file_paths ) { |
363 | 363 | |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | * @param array $entry |
550 | 550 | * @param array $data Note details array |
551 | 551 | * |
552 | - * @return int|WP_Error |
|
552 | + * @return integer |
|
553 | 553 | */ |
554 | 554 | private function add_note( $entry, $data ) { |
555 | 555 | global $current_user, $wpdb; |
@@ -64,6 +64,9 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | |
67 | + /** |
|
68 | + * @param string $component |
|
69 | + */ |
|
67 | 70 | private function load_components( $component ) { |
68 | 71 | |
69 | 72 | $dir = trailingslashit( self::$file ); |
@@ -183,7 +186,7 @@ discard block |
||
183 | 186 | * "You can edit this post from the post page" fields, for example. |
184 | 187 | * |
185 | 188 | * @param $entry array Gravity Forms entry object |
186 | - * @param $view_id int GravityView view id |
|
189 | + * @param integer $view_id int GravityView view id |
|
187 | 190 | * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
188 | 191 | * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
189 | 192 | * @return string |
@@ -286,7 +289,7 @@ discard block |
||
286 | 289 | * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
287 | 290 | * |
288 | 291 | * @param array $entry Gravity Forms entry array |
289 | - * @param \GV\View|int $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0 |
|
292 | + * @param integer $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0 |
|
290 | 293 | * @return bool |
291 | 294 | */ |
292 | 295 | public static function check_user_cap_edit_entry( $entry, $view = 0 ) { |
@@ -143,6 +143,7 @@ |
||
143 | 143 | /** |
144 | 144 | * @deprecated |
145 | 145 | * @see \GV\View_Collection::get() |
146 | + * @param integer|null $view_id |
|
146 | 147 | */ |
147 | 148 | function get_view( $view_id, $atts = NULL ) { |
148 | 149 | if ( ! $view = $this->views->get( $view_id ) ) { |
@@ -87,13 +87,13 @@ |
||
87 | 87 | * @since 2.0 Added $template_context parameter |
88 | 88 | * @since 2.7.2 Added $view_id parameter |
89 | 89 | * |
90 | - * @param array|GV\Entry[] $entries |
|
90 | + * @param GV\Entry[] $entries |
|
91 | 91 | * @param int $post_id |
92 | 92 | * @param array $form |
93 | 93 | * @param string $link_format |
94 | 94 | * @param string $after_link |
95 | 95 | * @param \GV\Template_Context $template_context The context |
96 | - * @param int|null $view_id View to link to when displaying on a page with multiple Views |
|
96 | + * @param integer $view_id View to link to when displaying on a page with multiple Views |
|
97 | 97 | */ |
98 | 98 | function __construct( $entries = array(), $post_id = 0, $form = array(), $link_format = '', $after_link = '', $context = '', $template_context = null, $view_id = 0 ) { |
99 | 99 | $this->entries = $entries; |
@@ -176,7 +176,7 @@ |
||
176 | 176 | * @param array $instance Settings for the current widget |
177 | 177 | * @param string $form_id Form ID int, as string |
178 | 178 | * |
179 | - * @return array|GV\Entry[] $entries Multidimensional array of Gravity Forms entries or GravityView Entry objects |
|
179 | + * @return GV\Entry[] $entries Multidimensional array of Gravity Forms entries or GravityView Entry objects |
|
180 | 180 | */ |
181 | 181 | private function get_entries( $instance, $form_id ) { |
182 | 182 |
@@ -47,7 +47,6 @@ |
||
47 | 47 | * @param string $atts |
48 | 48 | * @param string $css_class |
49 | 49 | * @param string $anchor_text |
50 | - * @param string $link_text |
|
51 | 50 | * |
52 | 51 | * @return string If no article information exists, original tooltip. Otherwise, modified! |
53 | 52 | */ |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @param string $name The key name (will be prefixed). |
53 | 53 | * @param mixed $default The default value if not found (Default: null) |
54 | 54 | * |
55 | - * @return mixed The value or $default if not found. |
|
55 | + * @return string The value or $default if not found. |
|
56 | 56 | */ |
57 | 57 | public static function _SERVER( $name, $default = null ) { |
58 | 58 | return self::get( $_SERVER, $name, $default ); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * |
127 | 127 | * @param mixed $value The value to return from the closure. |
128 | 128 | * |
129 | - * @return Closure The closure with the $value bound. |
|
129 | + * @return \Closure The closure with the $value bound. |
|
130 | 130 | */ |
131 | 131 | public static function _return( $value ) { |
132 | 132 | return function() use ( $value ) { return $value; }; |