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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
<?php
namespace SIW\Compatibility;
use SIW\Formatting;
use SIW\Util;
use SIW\Properties;
class Caldera_Forms{
public static function init() {
if ( ! class_exists( '\Caldera_Forms' ) ) {
return;
}
$self = new self();
add_filter( 'kses_allowed_protocols', [ $self, 'allow_magic_tags' ] );
$self->disable_wpautop();
$self->remove_shortcode_button();
add_filter( 'caldera_forms_save_revision', '__return_false' );
add_filter( 'caldera_forms_magic_summary_should_use_label', '__return_true' );
add_filter( 'caldera_forms_render_field_type-checkbox', [ $self, 'add_input_markup' ] );
add_filter( 'caldera_forms_render_field_type-radio', [ $self, 'add_input_markup' ] );
add_filter( 'caldera_forms_render_field_type-gdpr', [ $self, 'add_input_markup' ] );
add_filter( 'caldera_forms_do_magic_tag', [ $self, 'set_summary_magic_table' ], 10, 2 );
add_filter( 'caldera_forms_summary_magic_pattern', [ $self, 'set_summary_magic_pattern' ] );
add_filter( 'caldera_forms_field_attributes', [ $self, 'set_validation_field_attributes' ] , 10, 2 );
add_filter( 'caldera_forms_render_assets_minify', '__return_false' );
add_filter( 'caldera_forms_render_form_attributes' , [ $self, 'maybe_add_postcode_lookup'], 10, 2 );
add_filter( 'rocket_excluded_inline_js_content', [ $self, 'set_excluded_inline_js_content' ] );
}
public function set_excluded_inline_js_content( array $content ) {
$content[] = 'caldera_conditionals';
return $content;
}
public function remove_shortcode_button() {
remove_action( 'media_buttons', array( \Caldera_Forms_Admin::get_instance(), 'shortcode_insert_button' ), 11 );
add_filter( 'caldera_forms_insert_button_include', '__return_false' );
}
public function allow_magic_tags( array $protocols ) {
$protocols[] = '{embed_post';
return $protocols;
}
public function disable_wpautop() {
remove_filter( 'caldera_forms_mailer', array( \Caldera_Forms::get_instance(), 'format_message' ) );
remove_filter( 'caldera_forms_autoresponse_mail', array( 'Caldera_Forms_Email_Filters', 'format_autoresponse_message' ) );
}
public function add_input_markup( string $field_html ) {
$field_html = preg_replace( '/<input(.*?)>/s', '<input$1><div class="control-indicator"></div>', $field_html );
return $field_html;
}
public function set_summary_magic_table( ?string $value, string $tag ) {
if ( '{summary}' !== $tag ) {
return $value;
}
$value = Formatting::array_to_text(
[
'<table width="100%" border="0" cellspacing="0" cellpadding="0">',
'<tr>',
sprintf(
'<td colspan="3" height="20" style="font-family:Verdana, normal; color:%s; font-size:0.8em; font-weight:bold; border-top:thin solid %s" >', Properties::FONT_COLOR, Properties::PRIMARY_COLOR
),
esc_html__( 'Ingevulde gegevens', 'siw' ),
'</td>',
'</tr>',
$value,
'</table>'
],
''
);
return $value;
}
public function set_summary_magic_pattern( string $pattern ) {
$pattern = '<tr>
<td width="35%%" style="font-family: Verdana, normal; color:' . Properties::FONT_COLOR . '; font-size:0.8em;">%s</td>
<td width="5%%"></td>
<td width="50%%" style="font-family: Verdana, normal; color:' . Properties::FONT_COLOR . '; font-size:0.8em; font-style:italic">%s</td>
</tr>';
return $pattern;
}
public function set_validation_field_attributes( array $attrs, array $field ) {
if ( 'geboortedatum' === $field['ID'] ) {
$attrs[ 'data-parsley-pattern-message' ] = __( 'Dit is geen geldige datum.', 'siw' );
$attrs[ 'data-parsley-pattern' ] = Util::get_regex( 'date' );
}
if ( 'postcode' === $field['ID'] ) {
$attrs[ 'data-parsley-pattern-message' ] = __( 'Dit is geen geldige postcode.', 'siw' );
$attrs[ 'data-parsley-pattern' ] = Util::get_regex( 'postal_code' );
}
return $attrs;
}
public function maybe_add_postcode_lookup( array $attributes, array $form ) {
if ( isset( $form['postcode_lookup'] ) && $form['postcode_lookup'] ) {
$attributes['data-siw-postcode-lookup'] = true;
wp_register_script( 'siw-cf-postcode-lookup', SIW_ASSETS_URL . 'js/siw-cf-postcode-lookup.js', ['siw-api-postcode', 'jquery'], SIW_PLUGIN_VERSION, true );
wp_enqueue_script( 'siw-cf-postcode-lookup' );
}
return $attributes;
}
}