@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | $cmb_demo = new_cmb2_box( array( |
116 | 116 | 'id' => $prefix . 'metabox', |
117 | 117 | 'title' => esc_html__( 'Test Metabox', 'cmb2' ), |
118 | - 'object_types' => array( 'page', ), // Post type |
|
118 | + 'object_types' => array( 'page',), // Post type |
|
119 | 119 | // 'show_on_cb' => 'yourprefix_show_if_front_page', // function should return a bool value |
120 | 120 | // 'context' => 'normal', |
121 | 121 | // 'priority' => 'high', |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | 'desc' => esc_html__( 'field description (optional)', 'cmb2' ), |
386 | 386 | 'id' => $prefix . 'wysiwyg', |
387 | 387 | 'type' => 'wysiwyg', |
388 | - 'options' => array( 'textarea_rows' => 5, ), |
|
388 | + 'options' => array( 'textarea_rows' => 5,), |
|
389 | 389 | ) ); |
390 | 390 | |
391 | 391 | $cmb_demo->add_field( array( |
@@ -441,11 +441,11 @@ discard block |
||
441 | 441 | $cmb_about_page = new_cmb2_box( array( |
442 | 442 | 'id' => $prefix . 'metabox', |
443 | 443 | 'title' => esc_html__( 'About Page Metabox', 'cmb2' ), |
444 | - 'object_types' => array( 'page', ), // Post type |
|
444 | + 'object_types' => array( 'page',), // Post type |
|
445 | 445 | 'context' => 'normal', |
446 | 446 | 'priority' => 'high', |
447 | 447 | 'show_names' => true, // Show field names on the left |
448 | - 'show_on' => array( 'id' => array( 2, ) ), // Specific post IDs to display this metabox |
|
448 | + 'show_on' => array( 'id' => array( 2,) ), // Specific post IDs to display this metabox |
|
449 | 449 | ) ); |
450 | 450 | |
451 | 451 | $cmb_about_page->add_field( array( |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | $cmb_group = new_cmb2_box( array( |
471 | 471 | 'id' => $prefix . 'metabox', |
472 | 472 | 'title' => esc_html__( 'Repeating Field Group', 'cmb2' ), |
473 | - 'object_types' => array( 'page', ), |
|
473 | + 'object_types' => array( 'page',), |
|
474 | 474 | ) ); |
475 | 475 | |
476 | 476 | // $group_field_id is the field id string, so in this case: $prefix . 'demo' |
@@ -699,7 +699,7 @@ discard block |
||
699 | 699 | $cmb_rest = new_cmb2_box( array( |
700 | 700 | 'id' => $prefix . 'metabox', |
701 | 701 | 'title' => esc_html__( 'REST Test Box', 'cmb2' ), |
702 | - 'object_types' => array( 'page', ), // Post type |
|
702 | + 'object_types' => array( 'page',), // Post type |
|
703 | 703 | 'show_in_rest' => WP_REST_Server::ALLMETHODS, // WP_REST_Server::READABLE|WP_REST_Server::EDITABLE, // Determines which HTTP methods the box is visible in. |
704 | 704 | // Optional callback to limit box visibility. |
705 | 705 | // See: https://github.com/WebDevStudios/CMB2/wiki/REST-API#permissions |
@@ -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 | /** |
@@ -432,7 +432,7 @@ discard block |
||
432 | 432 | /** |
433 | 433 | * Hook in and add a metabox that only appears on the 'About' page |
434 | 434 | */ |
435 | -function yourprefix_register_about_page_metabox() { |
|
435 | +function yourprefix_register_about_page_metabox() { |
|
436 | 436 | $prefix = 'yourprefix_about_'; |
437 | 437 | |
438 | 438 | /** |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | /** |
462 | 462 | * Hook in and add a metabox to demonstrate repeatable grouped fields |
463 | 463 | */ |
464 | -function yourprefix_register_repeatable_group_field_metabox() { |
|
464 | +function yourprefix_register_repeatable_group_field_metabox() { |
|
465 | 465 | $prefix = 'yourprefix_group_'; |
466 | 466 | |
467 | 467 | /** |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | /** |
526 | 526 | * Hook in and add a metabox to add fields to the user profile pages |
527 | 527 | */ |
528 | -function yourprefix_register_user_profile_metabox() { |
|
528 | +function yourprefix_register_user_profile_metabox() { |
|
529 | 529 | $prefix = 'yourprefix_user_'; |
530 | 530 | |
531 | 531 | /** |
@@ -595,7 +595,7 @@ discard block |
||
595 | 595 | /** |
596 | 596 | * Hook in and add a metabox to add fields to taxonomy terms |
597 | 597 | */ |
598 | -function yourprefix_register_taxonomy_metabox() { |
|
598 | +function yourprefix_register_taxonomy_metabox() { |
|
599 | 599 | $prefix = 'yourprefix_term_'; |
600 | 600 | |
601 | 601 | /** |
@@ -637,7 +637,7 @@ discard block |
||
637 | 637 | /** |
638 | 638 | * Hook in and register a metabox to handle a theme options page |
639 | 639 | */ |
640 | -function yourprefix_register_theme_options_metabox() { |
|
640 | +function yourprefix_register_theme_options_metabox() { |
|
641 | 641 | |
642 | 642 | $option_key = 'yourprefix_theme_options'; |
643 | 643 | |
@@ -680,8 +680,8 @@ discard block |
||
680 | 680 | * |
681 | 681 | * @return bool Whether this box and its fields are allowed to be viewed. |
682 | 682 | */ |
683 | -function yourprefix_limit_rest_view_to_logged_in_users( $is_allowed, $cmb_controller ) { |
|
684 | - if ( ! is_user_logged_in() ) { |
|
683 | +function yourprefix_limit_rest_view_to_logged_in_users( $is_allowed, $cmb_controller ) { |
|
684 | + if ( ! is_user_logged_in() ) { |
|
685 | 685 | $is_allowed = false; |
686 | 686 | } |
687 | 687 | |
@@ -693,7 +693,7 @@ discard block |
||
693 | 693 | * Hook in and add a box to be available in the CMB2 REST API. Can only happen on the 'cmb2_init' hook. |
694 | 694 | * More info: https://github.com/WebDevStudios/CMB2/wiki/REST-API |
695 | 695 | */ |
696 | -function yourprefix_register_rest_api_box() { |
|
696 | +function yourprefix_register_rest_api_box() { |
|
697 | 697 | $prefix = 'yourprefix_rest_'; |
698 | 698 | |
699 | 699 | $cmb_rest = new_cmb2_box( array( |