@@ -159,7 +159,7 @@ |
||
159 | 159 | * Get object property and optionally set a fallback |
160 | 160 | * @since 2.0.0 |
161 | 161 | * @param string $property Metabox config property to retrieve |
162 | - * @param mixed $fallback Fallback value to set if no value found |
|
162 | + * @param boolean|null $fallback Fallback value to set if no value found |
|
163 | 163 | * @return mixed Metabox config property value or false |
164 | 164 | */ |
165 | 165 | public function prop( $property, $fallback = null ) { |
@@ -723,7 +723,7 @@ discard block |
||
723 | 723 | * Return a formatted timestamp for a field |
724 | 724 | * @since 2.0.0 |
725 | 725 | * @param string $format Either date_format or time_format |
726 | - * @param string $meta_value Optional meta value to check |
|
726 | + * @param integer $meta_value Optional meta value to check |
|
727 | 727 | * @return string Formatted date |
728 | 728 | */ |
729 | 729 | public function get_timestamp_format( $format = 'date_format', $meta_value = 0 ) { |
@@ -996,7 +996,7 @@ discard block |
||
996 | 996 | * Retrieve options args. Calls options_cb if it exists. |
997 | 997 | * @since 2.0.0 |
998 | 998 | * @param string $key Specific option to retrieve |
999 | - * @return array Array of options |
|
999 | + * @return string Array of options |
|
1000 | 1000 | */ |
1001 | 1001 | public function options( $key = '' ) { |
1002 | 1002 | if ( ! empty( $this->field_options ) ) { |
@@ -366,6 +366,7 @@ discard block |
||
366 | 366 | /** |
367 | 367 | * Gets the values for the `file` field type from the data being saved. |
368 | 368 | * @since 2.2.0 |
369 | + * @param string $id_key |
|
369 | 370 | */ |
370 | 371 | public function _get_group_file_value_array( $id_key ) { |
371 | 372 | $alldata = $this->field->group->data_to_save; |
@@ -387,6 +388,7 @@ discard block |
||
387 | 388 | /** |
388 | 389 | * Peforms saving of `file` attachement's ID |
389 | 390 | * @since 1.1.0 |
391 | + * @param string $file_id_key |
|
390 | 392 | */ |
391 | 393 | public function _save_file_id_value( $file_id_key ) { |
392 | 394 | $id_field = $this->_new_supporting_field( $file_id_key ); |
@@ -407,6 +409,7 @@ discard block |
||
407 | 409 | /** |
408 | 410 | * Peforms saving of `text_datetime_timestamp_timezone` utc timestamp |
409 | 411 | * @since 2.2.0 |
412 | + * @param string $utc_key |
|
410 | 413 | */ |
411 | 414 | public function _save_utc_value( $utc_key, $utc_stamp ) { |
412 | 415 | return $this->_new_supporting_field( $utc_key )->save_field( $utc_stamp ); |
@@ -202,6 +202,7 @@ discard block |
||
202 | 202 | * @param string|array $object_types Object(s) the field is being registered |
203 | 203 | * to, "post"|"term"|"comment" etc. |
204 | 204 | * @param string $object_types Canonical object type for callbacks. |
205 | + * @param string $object_type |
|
205 | 206 | * |
206 | 207 | * @return void |
207 | 208 | */ |
@@ -701,7 +702,7 @@ discard block |
||
701 | 702 | * Retrieve all CMB2_REST instances from the registry. |
702 | 703 | * |
703 | 704 | * @since 2.2.3 |
704 | - * @return CMB2[] Array of all registered CMB2_REST instances. |
|
705 | + * @return CMB2_REST[] Array of all registered CMB2_REST instances. |
|
705 | 706 | */ |
706 | 707 | public static function get_all() { |
707 | 708 | 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 | */ |
@@ -107,7 +107,6 @@ discard block |
||
107 | 107 | |
108 | 108 | /** |
109 | 109 | * Fall back to CMB2_Types methods |
110 | - * @param string $field |
|
111 | 110 | * @throws Exception Throws an exception if the field is invalid. |
112 | 111 | * @return mixed |
113 | 112 | */ |
@@ -128,7 +127,7 @@ discard block |
||
128 | 127 | * Magic getter for our object. |
129 | 128 | * @param string $field |
130 | 129 | * @throws Exception Throws an exception if the field is invalid. |
131 | - * @return mixed |
|
130 | + * @return CMB2_Field |
|
132 | 131 | */ |
133 | 132 | public function __get( $field ) { |
134 | 133 | switch ( $field ) { |
@@ -39,6 +39,9 @@ discard block |
||
39 | 39 | return $this->rendered( $date_input . "\n" . $time_input ); |
40 | 40 | } |
41 | 41 | |
42 | + /** |
|
43 | + * @param boolean $has_good_value |
|
44 | + */ |
|
42 | 45 | public function date_args( $args, $has_good_value ) { |
43 | 46 | $date_args = wp_parse_args( $args['datepicker'], array( |
44 | 47 | 'class' => 'cmb2-text-small cmb2-datepicker', |
@@ -54,6 +57,9 @@ discard block |
||
54 | 57 | return $this->parse_picker_options( 'date', $date_args ); |
55 | 58 | } |
56 | 59 | |
60 | + /** |
|
61 | + * @param boolean $has_good_value |
|
62 | + */ |
|
57 | 63 | public function time_args( $args, $has_good_value ) { |
58 | 64 | $time_args = wp_parse_args( $args['timepicker'], array( |
59 | 65 | 'class' => 'cmb2-timepicker text-time', |
@@ -15,7 +15,6 @@ |
||
15 | 15 | /** |
16 | 16 | * Handles outputting an 'textarea' element |
17 | 17 | * @since 1.1.0 |
18 | - * @param array $args Override arguments |
|
19 | 18 | * @return string Form textarea element |
20 | 19 | */ |
21 | 20 | public function render() { |
@@ -367,6 +367,10 @@ |
||
367 | 367 | return $file; |
368 | 368 | } |
369 | 369 | |
370 | + /** |
|
371 | + * @param string $class |
|
372 | + * @param string $ext |
|
373 | + */ |
|
370 | 374 | private function findFileWithExtension($class, $ext) |
371 | 375 | { |
372 | 376 | // PSR-4 lookup |