1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
<?php
namespace SIW\WooCommerce\Checkout;
class Form{
public static function init() {
$self = new self();
add_action( 'wp_enqueue_scripts', [ $self, 'add_postcode_script' ] );
add_filter( 'woocommerce_form_field_args', [ $self, 'add_form_field_classes' ] );
add_filter( 'woocommerce_form_field_radio', [ $self, 'add_form_field_markup' ] );
add_filter( 'woocommerce_form_field_checkbox', [ $self, 'add_form_field_markup' ] );
add_action( 'woocommerce_multistep_checkout_before_order_info', [ $self, 'show_checkout_partner_fields'] );
add_filter( 'woocommerce_checkout_cart_item_quantity', '__return_empty_string' );
add_filter( 'wc_get_template', [ $self, 'set_checkout_templates'], 10, 5 );
}
protected function get_checkout_fields( $checkout_fields = [] ) {
$checkout_fields = wp_parse_args_recursive( siw_get_data( 'workcamps/checkout-fields' ), $checkout_fields );
return $checkout_fields;
}
protected function get_checkout_sections() {
$checkout_sections = siw_get_data( 'workcamps/checkout-sections' );
return $checkout_sections;
}
public function show_checkout_partner_fields( \WC_Checkout $checkout ) {
$checkout_sections = $this->get_checkout_sections();
$checkout_fields = $this->get_checkout_fields();
?>
<h1><?php esc_html_e( 'Informatie voor partner', 'siw' );?></h1>
<div class="woocommerce-extra-fields">
<?php foreach ( $checkout_sections as $section => $header ) :?>
<div id="<?= esc_attr( $section );?>">
<h3><?= esc_html( $header );?></h3>
<?php
foreach ( $checkout_fields[ $section ] as $key => $field ) {
woocommerce_form_field( $key, $field, $checkout->get_value( $key ) );
}
?>
</div>
<?php endforeach ?>
</div>
<?php
}
public function add_postcode_script() {
wp_register_script( 'siw-checkout-postcode-lookup', SIW_ASSETS_URL . 'js/siw-checkout-postcode-lookup.js', ['siw-api-postcode'], SIW_PLUGIN_VERSION, true );
$postcode_selectors = [
'postcode' => "billing_postcode",
'housenumber' => "billing_housenumber",
'street' => "billing_address_1",
'city' => "billing_city",
];
wp_localize_script( 'siw-checkout-postcode-lookup', 'siw_checkout_postcode_selectors', $postcode_selectors );
if ( is_checkout() && ! is_order_received_page() && ! is_checkout_pay_page() ) {
wp_enqueue_script( 'siw-checkout-postcode-lookup' );
}
}
public function add_form_field_markup( string $field ) {
$field = preg_replace( '/<input(.*?)>/', '<input$1><span class="control-indicator"></span>', $field );
return $field;
}
public function add_form_field_classes( array $args ) {
if ( $args['type'] == 'radio' ) {
$args['class'][] = 'control-radio';
}
if ( $args['type'] == 'checkbox' ) {
$args['class'][] = 'control-checkbox';
}
return $args;
}
public function set_checkout_templates( string $located, string $template_name, array $args, string $template_path, string $default_path ) {
if ( 'checkout/payment-method.php' === $template_name ) {
$located = SIW_TEMPLATES_DIR . '/woocommerce/'. $template_name;
}
return $located;
}
}