@@ -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 ); |
@@ -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() { |
@@ -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 ) ) { |
@@ -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 | */ |
@@ -315,10 +315,10 @@ |
||
| 315 | 315 | * which is callable. If so, it registers the callback, and if not, |
| 316 | 316 | * converts the maybe-modified $val to a boolean for return. |
| 317 | 317 | * |
| 318 | - * The registered handlers will have a parameter name which matches the filter, except: |
|
| 319 | - * - The 'cmb2_api' prefix will be removed |
|
| 320 | - * - A '_cb' suffix will be added (to stay inline with other '*_cb' parameters). |
|
| 321 | - * |
|
| 318 | + * The registered handlers will have a parameter name which matches the filter, except: |
|
| 319 | + * - The 'cmb2_api' prefix will be removed |
|
| 320 | + * - A '_cb' suffix will be added (to stay inline with other '*_cb' parameters). |
|
| 321 | + * |
|
| 322 | 322 | * @since 2.2.3 |
| 323 | 323 | * |
| 324 | 324 | * @param string $hook_name The hook name. |
@@ -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 ) { |
@@ -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; |
@@ -465,7 +465,7 @@ discard block |
||
| 465 | 465 | * Modify metabox postbox classes. |
| 466 | 466 | * @since 2.2.4 |
| 467 | 467 | * @param array $classes Array of classes |
| 468 | - * @return array Modified array of classes |
|
| 468 | + * @return string[] Modified array of classes |
|
| 469 | 469 | */ |
| 470 | 470 | public function postbox_classes( $classes ) { |
| 471 | 471 | if ( $this->cmb->prop( 'closed' ) && ! in_array( 'closed', $classes ) ) { |
@@ -485,7 +485,7 @@ discard block |
||
| 485 | 485 | * Modify metabox altnernate context postbox classes. |
| 486 | 486 | * @since 2.2.4 |
| 487 | 487 | * @param array $classes Array of classes |
| 488 | - * @return array Modified array of classes |
|
| 488 | + * @return string[] Modified array of classes |
|
| 489 | 489 | */ |
| 490 | 490 | protected function alternate_context_postbox_classes( $classes ) { |
| 491 | 491 | $classes[] = 'context-box'; |
@@ -226,7 +226,7 @@ |
||
| 226 | 226 | * @since 2.2.4 |
| 227 | 227 | * @param string $render_class_name The default field type class to use. Defaults to null. |
| 228 | 228 | * @param array $args Optional arguments to pass to type class. |
| 229 | - * @param mixed $additional Optional additional argument to pass to type class. |
|
| 229 | + * @param string $additional Optional additional argument to pass to type class. |
|
| 230 | 230 | * @return CMB2_Type_Base Type object. |
| 231 | 231 | */ |
| 232 | 232 | public function get_new_render_type( $render_class_name = null, $args = array(), $additional = '' ) { |