@@ -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() { |
@@ -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 ) ) { |
@@ -15,9 +15,9 @@ discard block |
||
| 15 | 15 | * Get the bootstrap! If using the plugin from wordpress.org, REMOVE THIS! |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | -if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) {
|
|
| 18 | +if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) { |
|
| 19 | 19 | require_once dirname( __FILE__ ) . '/cmb2/init.php'; |
| 20 | -} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) {
|
|
| 20 | +} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) { |
|
| 21 | 21 | require_once dirname( __FILE__ ) . '/CMB2/init.php'; |
| 22 | 22 | } |
| 23 | 23 | |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | * |
| 29 | 29 | * @return bool True if metabox should show |
| 30 | 30 | */ |
| 31 | -function yourprefix_show_if_front_page( $cmb ) {
|
|
| 31 | +function yourprefix_show_if_front_page( $cmb ) { |
|
| 32 | 32 | // Don't show this metabox if it's not the front page template |
| 33 | - if ( $cmb->object_id !== get_option( 'page_on_front' ) ) {
|
|
| 33 | + if ( $cmb->object_id !== get_option( 'page_on_front' ) ) { |
|
| 34 | 34 | return false; |
| 35 | 35 | } |
| 36 | 36 | return true; |
@@ -43,9 +43,9 @@ discard block |
||
| 43 | 43 | * |
| 44 | 44 | * @return bool True if metabox should show |
| 45 | 45 | */ |
| 46 | -function yourprefix_hide_if_no_cats( $field ) {
|
|
| 46 | +function yourprefix_hide_if_no_cats( $field ) { |
|
| 47 | 47 | // Don't show this field if not in the cats category |
| 48 | - if ( ! has_tag( 'cats', $field->object_id ) ) {
|
|
| 48 | + if ( ! has_tag( 'cats', $field->object_id ) ) { |
|
| 49 | 49 | return false; |
| 50 | 50 | } |
| 51 | 51 | return true; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * @param array $field_args Array of field arguments. |
| 58 | 58 | * @param CMB2_Field $field The field object |
| 59 | 59 | */ |
| 60 | -function yourprefix_render_row_cb( $field_args, $field ) {
|
|
| 60 | +function yourprefix_render_row_cb( $field_args, $field ) { |
|
| 61 | 61 | $classes = $field->row_classes(); |
| 62 | 62 | $id = $field->args( 'id' ); |
| 63 | 63 | $label = $field->args( 'name' ); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @param array $field_args Array of field arguments. |
| 80 | 80 | * @param CMB2_Field $field The field object |
| 81 | 81 | */ |
| 82 | -function yourprefix_display_text_small_column( $field_args, $field ) {
|
|
| 82 | +function yourprefix_display_text_small_column( $field_args, $field ) { |
|
| 83 | 83 | ?> |
| 84 | 84 | <div class="custom-column-display <?php echo $field->row_classes(); ?>"> |
| 85 | 85 | <p><?php echo $field->escaped_value(); ?></p> |
@@ -94,10 +94,10 @@ discard block |
||
| 94 | 94 | * @param array $field_args Array of field parameters |
| 95 | 95 | * @param CMB2_Field object $field Field object |
| 96 | 96 | */ |
| 97 | -function yourprefix_before_row_if_2( $field_args, $field ) {
|
|
| 98 | - if ( 2 == $field->object_id ) {
|
|
| 97 | +function yourprefix_before_row_if_2( $field_args, $field ) { |
|
| 98 | + if ( 2 == $field->object_id ) { |
|
| 99 | 99 | echo '<p>Testing <b>"before_row"</b> parameter (on $post_id 2)</p>'; |
| 100 | - } else {
|
|
| 100 | + } else { |
|
| 101 | 101 | echo '<p>Testing <b>"before_row"</b> parameter (<b>NOT</b> on $post_id 2)</p>'; |
| 102 | 102 | } |
| 103 | 103 | } |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | /** |
| 107 | 107 | * Hook in and add a demo metabox. Can only happen on the 'cmb2_admin_init' or 'cmb2_init' hook. |
| 108 | 108 | */ |
| 109 | -function yourprefix_register_demo_metabox() {
|
|
| 109 | +function yourprefix_register_demo_metabox() { |
|
| 110 | 110 | $prefix = 'yourprefix_demo_'; |
| 111 | 111 | |
| 112 | 112 | /** |
@@ -416,7 +416,7 @@ discard block |
||
| 416 | 416 | /** |
| 417 | 417 | * Hook in and add a metabox that only appears on the 'About' page |
| 418 | 418 | */ |
| 419 | -function yourprefix_register_about_page_metabox() {
|
|
| 419 | +function yourprefix_register_about_page_metabox() { |
|
| 420 | 420 | $prefix = 'yourprefix_about_'; |
| 421 | 421 | |
| 422 | 422 | /** |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | /** |
| 446 | 446 | * Hook in and add a metabox to demonstrate repeatable grouped fields |
| 447 | 447 | */ |
| 448 | -function yourprefix_register_repeatable_group_field_metabox() {
|
|
| 448 | +function yourprefix_register_repeatable_group_field_metabox() { |
|
| 449 | 449 | $prefix = 'yourprefix_group_'; |
| 450 | 450 | |
| 451 | 451 | /** |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | /** |
| 510 | 510 | * Hook in and add a metabox to add fields to the user profile pages |
| 511 | 511 | */ |
| 512 | -function yourprefix_register_user_profile_metabox() {
|
|
| 512 | +function yourprefix_register_user_profile_metabox() { |
|
| 513 | 513 | $prefix = 'yourprefix_user_'; |
| 514 | 514 | |
| 515 | 515 | /** |
@@ -579,7 +579,7 @@ discard block |
||
| 579 | 579 | /** |
| 580 | 580 | * Hook in and add a metabox to add fields to taxonomy terms |
| 581 | 581 | */ |
| 582 | -function yourprefix_register_taxonomy_metabox() {
|
|
| 582 | +function yourprefix_register_taxonomy_metabox() { |
|
| 583 | 583 | $prefix = 'yourprefix_term_'; |
| 584 | 584 | |
| 585 | 585 | /** |
@@ -621,7 +621,7 @@ discard block |
||
| 621 | 621 | /** |
| 622 | 622 | * Hook in and register a metabox to handle a theme options page |
| 623 | 623 | */ |
| 624 | -function yourprefix_register_theme_options_metabox() {
|
|
| 624 | +function yourprefix_register_theme_options_metabox() { |
|
| 625 | 625 | |
| 626 | 626 | $option_key = 'yourprefix_theme_options'; |
| 627 | 627 | |
@@ -122,7 +122,8 @@ discard block |
||
| 122 | 122 | $tzstring = ''; |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - if ( empty( $tzstring ) ) { // Create a UTC+- zone if no timezone string exists |
|
| 125 | + if ( empty( $tzstring ) ) { |
|
| 126 | +// Create a UTC+- zone if no timezone string exists |
|
| 126 | 127 | if ( 0 == $current_offset ) { |
| 127 | 128 | $tzstring = 'UTC+0'; |
| 128 | 129 | } elseif ( $current_offset < 0 ) { |
@@ -179,7 +180,7 @@ discard block |
||
| 179 | 180 | * @param mixed $value Value to check |
| 180 | 181 | * @return bool True or false |
| 181 | 182 | */ |
| 182 | - public static function notempty( $value ){ |
|
| 183 | + public static function notempty( $value ) { |
|
| 183 | 184 | return null !== $value && '' !== $value && false !== $value; |
| 184 | 185 | } |
| 185 | 186 | |
@@ -370,15 +370,13 @@ |
||
| 370 | 370 | if ( function_exists( '__' ) ) { |
| 371 | 371 | if ( ! is_null( $message ) ) { |
| 372 | 372 | trigger_error( sprintf( __( '%1$s was called with a parameter that is <strong>deprecated</strong> since version %2$s! %3$s', 'cmb2' ), $function, $version, $message ) ); |
| 373 | - } |
|
| 374 | - else { |
|
| 373 | + } else { |
|
| 375 | 374 | trigger_error( sprintf( __( '%1$s was called with a parameter that is <strong>deprecated</strong> since version %2$s with no alternative available.', 'cmb2' ), $function, $version ) ); |
| 376 | 375 | } |
| 377 | 376 | } else { |
| 378 | 377 | if ( ! is_null( $message ) ) { |
| 379 | 378 | trigger_error( sprintf( '%1$s was called with a parameter that is <strong>deprecated</strong> since version %2$s! %3$s', $function, $version, $message ) ); |
| 380 | - } |
|
| 381 | - else { |
|
| 379 | + } else { |
|
| 382 | 380 | trigger_error( sprintf( '%1$s was called with a parameter that is <strong>deprecated</strong> since version %2$s with no alternative available.', $function, $version ) ); |
| 383 | 381 | } |
| 384 | 382 | } |
@@ -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 ) { |