@@ -357,6 +357,7 @@ discard block |
||
357 | 357 | /** |
358 | 358 | * Gets the values for the `file` field type from the data being saved. |
359 | 359 | * @since 2.2.0 |
360 | + * @param string $id_key |
|
360 | 361 | */ |
361 | 362 | public function _get_group_file_value_array( $id_key ) { |
362 | 363 | $alldata = $this->field->group->data_to_save; |
@@ -378,6 +379,7 @@ discard block |
||
378 | 379 | /** |
379 | 380 | * Peforms saving of `file` attachement's ID |
380 | 381 | * @since 1.1.0 |
382 | + * @param string $file_id_key |
|
381 | 383 | */ |
382 | 384 | public function _save_file_id_value( $file_id_key ) { |
383 | 385 | $id_field = $this->_new_supporting_field( $file_id_key ); |
@@ -398,6 +400,7 @@ discard block |
||
398 | 400 | /** |
399 | 401 | * Peforms saving of `text_datetime_timestamp_timezone` utc timestamp |
400 | 402 | * @since 2.2.0 |
403 | + * @param string $utc_key |
|
401 | 404 | */ |
402 | 405 | public function _save_utc_value( $utc_key, $utc_stamp ) { |
403 | 406 | return $this->_new_supporting_field( $utc_key )->save_field( $utc_stamp ); |
@@ -84,7 +84,6 @@ discard block |
||
84 | 84 | |
85 | 85 | /** |
86 | 86 | * Fall back to CMB2_Types methods |
87 | - * @param string $field |
|
88 | 87 | * @throws Exception Throws an exception if the field is invalid. |
89 | 88 | * @return mixed |
90 | 89 | */ |
@@ -105,7 +104,7 @@ discard block |
||
105 | 104 | * Magic getter for our object. |
106 | 105 | * @param string $field |
107 | 106 | * @throws Exception Throws an exception if the field is invalid. |
108 | - * @return mixed |
|
107 | + * @return CMB2_Field |
|
109 | 108 | */ |
110 | 109 | public function __get( $field ) { |
111 | 110 | switch ( $field ) { |
@@ -38,6 +38,9 @@ discard block |
||
38 | 38 | return $date_input . "\n" . $time_input; |
39 | 39 | } |
40 | 40 | |
41 | + /** |
|
42 | + * @param boolean $has_good_value |
|
43 | + */ |
|
41 | 44 | public function date_args( $args, $has_good_value ) { |
42 | 45 | $date_args = wp_parse_args( $args['datepicker'], array( |
43 | 46 | 'class' => 'cmb2-text-small cmb2-datepicker', |
@@ -51,6 +54,9 @@ discard block |
||
51 | 54 | return $this->parse_picker_options( 'date', $date_args ); |
52 | 55 | } |
53 | 56 | |
57 | + /** |
|
58 | + * @param boolean $has_good_value |
|
59 | + */ |
|
54 | 60 | public function time_args( $args, $has_good_value ) { |
55 | 61 | $time_args = wp_parse_args( $args['timepicker'], array( |
56 | 62 | 'class' => 'cmb2-timepicker text-time', |
@@ -15,7 +15,6 @@ |
||
15 | 15 | /** |
16 | 16 | * Handles outputting a 'wysiwyg' element |
17 | 17 | * @since 1.1.0 |
18 | - * @param array $args Override arguments |
|
19 | 18 | * @return string Form wysiwyg element |
20 | 19 | */ |
21 | 20 | public function render() { |
@@ -15,7 +15,6 @@ |
||
15 | 15 | /** |
16 | 16 | * Handles outputting a 'wysiwyg' element |
17 | 17 | * @since 1.1.0 |
18 | - * @param array $args Override arguments |
|
19 | 18 | * @return string Form wysiwyg element |
20 | 19 | */ |
21 | 20 | public function render() { |
@@ -408,6 +408,7 @@ discard block |
||
408 | 408 | * Add a hidden field to the list of hidden fields to be rendered later |
409 | 409 | * @since 2.0.0 |
410 | 410 | * @param array $field_args Array of field arguments to be passed to CMB2_Field |
411 | + * @param CMB2_Field $field_group |
|
411 | 412 | */ |
412 | 413 | public function add_hidden_field( $field_args, $field_group = null ) { |
413 | 414 | if ( isset( $field_args['field_args'] ) ) { |
@@ -851,7 +852,7 @@ discard block |
||
851 | 852 | * @param mixed $field_id Field (or group field) ID |
852 | 853 | * @param mixed $field_args Array of field arguments |
853 | 854 | * @param mixed $sub_field_id Sub field ID (if field_group exists) |
854 | - * @param mixed $field_group If a sub-field, will be the parent group CMB2_Field object |
|
855 | + * @param CMB2_Field|null $field_group If a sub-field, will be the parent group CMB2_Field object |
|
855 | 856 | * @return array Array of CMB2_Field arguments |
856 | 857 | */ |
857 | 858 | public function get_field_args( $field_id, $field_args, $sub_field_id, $field_group ) { |
@@ -938,7 +939,7 @@ discard block |
||
938 | 939 | * @since 2.0.0 |
939 | 940 | * @param array $field Metabox field config array |
940 | 941 | * @param int $position (optional) Position of metabox. 1 for first, etc |
941 | - * @return mixed Field id or false |
|
942 | + * @return string Field id or false |
|
942 | 943 | */ |
943 | 944 | public function add_field( array $field, $position = 0 ) { |
944 | 945 | if ( ! is_array( $field ) || ! array_key_exists( 'id', $field ) ) { |
@@ -735,7 +735,7 @@ discard block |
||
735 | 735 | * Return a formatted timestamp for a field |
736 | 736 | * @since 2.0.0 |
737 | 737 | * @param string $format Either date_format or time_format |
738 | - * @param string $meta_value Optional meta value to check |
|
738 | + * @param integer $meta_value Optional meta value to check |
|
739 | 739 | * @return string Formatted date |
740 | 740 | */ |
741 | 741 | public function get_timestamp_format( $format = 'date_format', $meta_value = 0 ) { |
@@ -1007,7 +1007,7 @@ discard block |
||
1007 | 1007 | * Retrieve options args. Calls options_cb if it exists. |
1008 | 1008 | * @since 2.0.0 |
1009 | 1009 | * @param string $key Specific option to retrieve |
1010 | - * @return array Array of options |
|
1010 | + * @return string Array of options |
|
1011 | 1011 | */ |
1012 | 1012 | public function options( $key = '' ) { |
1013 | 1013 | if ( ! empty( $this->field_options ) ) { |
@@ -197,6 +197,7 @@ discard block |
||
197 | 197 | * @param string|array $object_types Object(s) the field is being registered |
198 | 198 | * to, "post"|"term"|"comment" etc. |
199 | 199 | * @param string $object_types Canonical object type for callbacks. |
200 | + * @param string $object_type |
|
200 | 201 | * |
201 | 202 | * @return void |
202 | 203 | */ |
@@ -391,7 +392,7 @@ discard block |
||
391 | 392 | * |
392 | 393 | * @since 2.2.4 |
393 | 394 | * |
394 | - * @param mixed $value The value of the field |
|
395 | + * @param mixed $values The value of the field |
|
395 | 396 | * @param object $object The object from the response |
396 | 397 | * @param string $field_name Name of field |
397 | 398 | * @param WP_REST_Request $request Current request |
@@ -410,7 +411,7 @@ discard block |
||
410 | 411 | * |
411 | 412 | * @since 2.2.4 |
412 | 413 | * |
413 | - * @param mixed $value The value of the field |
|
414 | + * @param mixed $values The value of the field |
|
414 | 415 | * @param object $object The object from the response |
415 | 416 | * @param string $field_name Name of field |
416 | 417 | * @param WP_REST_Request $request Current request |
@@ -429,7 +430,7 @@ discard block |
||
429 | 430 | * |
430 | 431 | * @since 2.2.4 |
431 | 432 | * |
432 | - * @param mixed $value The value of the field |
|
433 | + * @param mixed $values The value of the field |
|
433 | 434 | * @param object $object The object from the response |
434 | 435 | * @param string $field_name Name of field |
435 | 436 | * @param WP_REST_Request $request Current request |
@@ -448,7 +449,7 @@ discard block |
||
448 | 449 | * |
449 | 450 | * @since 2.2.4 |
450 | 451 | * |
451 | - * @param mixed $value The value of the field |
|
452 | + * @param mixed $values The value of the field |
|
452 | 453 | * @param object $object The object from the response |
453 | 454 | * @param string $field_name Name of field |
454 | 455 | * @param WP_REST_Request $request Current request |
@@ -467,7 +468,7 @@ discard block |
||
467 | 468 | * |
468 | 469 | * @since 2.2.4 |
469 | 470 | * |
470 | - * @param mixed $value The value of the field |
|
471 | + * @param mixed $values The value of the field |
|
471 | 472 | * @param object $object The object from the response |
472 | 473 | * @param WP_REST_Request $request Current request |
473 | 474 | * @param string $object_type The request object type |
@@ -665,7 +666,7 @@ discard block |
||
665 | 666 | * Retrieve all CMB2_REST instances from the registry. |
666 | 667 | * |
667 | 668 | * @since 2.2.4 |
668 | - * @return CMB2[] Array of all registered CMB2_REST instances. |
|
669 | + * @return CMB2_REST[] Array of all registered CMB2_REST instances. |
|
669 | 670 | */ |
670 | 671 | public static function get_all() { |
671 | 672 | return self::$boxes; |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @since 2.2.3 |
199 | 199 | * |
200 | 200 | * @param mixed $cb Callable function/method. |
201 | - * @return mixed Results of output buffer after calling function/method. |
|
201 | + * @return string Results of output buffer after calling function/method. |
|
202 | 202 | */ |
203 | 203 | public function get_cb_results( $cb ) { |
204 | 204 | $args = func_get_args(); |
@@ -214,7 +214,6 @@ discard block |
||
214 | 214 | * |
215 | 215 | * @since 2.2.3 |
216 | 216 | * |
217 | - * @param mixed $item WordPress representation of the item. |
|
218 | 217 | * @param WP_REST_Request $request Request object. |
219 | 218 | * @return WP_REST_Response $response |
220 | 219 | */ |