@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | 'recaptcha_data_callback' => '', // set a custom js callback function to run after a successful recaptcha response - default none |
22 | 22 | 'recaptcha_expired_callback' => '', // set a custom js callback function to run after the recaptcha has expired - default none |
23 | 23 | 'inline' => '0', |
24 | - ), $atts , 'yikes-mailchimp' ) |
|
24 | + ), $atts, 'yikes-mailchimp' ) |
|
25 | 25 | ); |
26 | 26 | |
27 | 27 | // set globals |
@@ -31,12 +31,12 @@ discard block |
||
31 | 31 | $form_submitted = isset( $form_submitted ) ? $form_submitted : 0; |
32 | 32 | |
33 | 33 | /* If the user hasn't authenticated yet, lets kill off */ |
34 | - if( get_option( 'yikes-mc-api-validation' , 'invalid_api_key' ) != 'valid_api_key' ) { |
|
35 | - return '<div class="invalid-api-key-error"><p>' . __( "Whoops, you're not connected to MailChimp. You need to enter a valid MailChimp API key." , 'yikes-inc-easy-mailchimp-extender' ) . '</p></div>'; |
|
34 | + if ( get_option( 'yikes-mc-api-validation', 'invalid_api_key' ) != 'valid_api_key' ) { |
|
35 | + return '<div class="invalid-api-key-error"><p>' . __( "Whoops, you're not connected to MailChimp. You need to enter a valid MailChimp API key.", 'yikes-inc-easy-mailchimp-extender' ) . '</p></div>'; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | // if the user forgot to specify a form ID, lets kill of and warn them. |
39 | - if( ! $form ) { |
|
39 | + if ( ! $form ) { |
|
40 | 40 | return __( 'Whoops, it looks like you forgot to specify a form to display.', 'yikes-inc-easy-mailchimp-extender' ); |
41 | 41 | } |
42 | 42 | |
@@ -45,39 +45,39 @@ discard block |
||
45 | 45 | $form_results = $wpdb->get_results( 'SELECT * FROM ' . $wpdb->prefix . 'yikes_easy_mc_forms WHERE id = ' . $form . '', ARRAY_A ); |
46 | 46 | |
47 | 47 | // confirm we have some results, or return an error |
48 | - if( !$form_results ) { |
|
49 | - return __( "Oh no...This form doesn't exist. Head back to the manage forms page and select a different form." , 'yikes-inc-easy-mailchimp-extender' ); |
|
48 | + if ( ! $form_results ) { |
|
49 | + return __( "Oh no...This form doesn't exist. Head back to the manage forms page and select a different form.", 'yikes-inc-easy-mailchimp-extender' ); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /* |
53 | 53 | * Check if the user wants to use reCAPTCHA Spam Prevention |
54 | 54 | */ |
55 | - if( get_option( 'yikes-mc-recaptcha-status' , '' ) == '1' ) { |
|
55 | + if ( get_option( 'yikes-mc-recaptcha-status', '' ) == '1' ) { |
|
56 | 56 | // allow users to manually set recaptcha (instead of globally - recaptcha="1"/recaptcha="0" - but still needs to be globally enabled on the settings page) |
57 | - if( ! isset( $atts['recaptcha'] ) || ( isset( $atts['recaptcha'] ) && $atts['recaptcha'] == '1' ) ) { |
|
57 | + if ( ! isset( $atts[ 'recaptcha' ] ) || ( isset( $atts[ 'recaptcha' ] ) && $atts[ 'recaptcha' ] == '1' ) ) { |
|
58 | 58 | // if either of the Private the Secret key is left blank, we should display an error back to the user |
59 | - if( get_option( 'yikes-mc-recaptcha-site-key' , '' ) == '' ) { |
|
60 | - return __( "Whoops! It looks like you enabled reCAPTCHA but forgot to enter the reCAPTCHA site key!" , 'yikes-inc-easy-mailchimp-extender' ) . '<span class="edit-link yikes-easy-mc-edit-link"><a class="post-edit-link" href="' . esc_url( admin_url( 'admin.php?page=yikes-inc-easy-mailchimp-settings§ion=recaptcha-settings' ) ) . '" title="' . __( 'ReCaptcha Settings' , 'yikes-inc-easy-mailchimp-extender' ) . '">' . __( 'Edit ReCaptcha Settings' , 'yikes-inc-easy-mailchimp-extender' ) . '</a></span>'; |
|
59 | + if ( get_option( 'yikes-mc-recaptcha-site-key', '' ) == '' ) { |
|
60 | + return __( "Whoops! It looks like you enabled reCAPTCHA but forgot to enter the reCAPTCHA site key!", 'yikes-inc-easy-mailchimp-extender' ) . '<span class="edit-link yikes-easy-mc-edit-link"><a class="post-edit-link" href="' . esc_url( admin_url( 'admin.php?page=yikes-inc-easy-mailchimp-settings§ion=recaptcha-settings' ) ) . '" title="' . __( 'ReCaptcha Settings', 'yikes-inc-easy-mailchimp-extender' ) . '">' . __( 'Edit ReCaptcha Settings', 'yikes-inc-easy-mailchimp-extender' ) . '</a></span>'; |
|
61 | 61 | } |
62 | - if( get_option( 'yikes-mc-recaptcha-secret-key' , '' ) == '' ) { |
|
63 | - return __( "Whoops! It looks like you enabled reCAPTCHA but forgot to enter the reCAPTCHA secret key!" , 'yikes-inc-easy-mailchimp-extender' ) . '<span class="edit-link yikes-easy-mc-edit-link"><a class="post-edit-link" href="' . esc_url( admin_url( 'admin.php?page=yikes-inc-easy-mailchimp-settings§ion=recaptcha-settings' ) ) . '" title="' . __( 'ReCaptcha Settings' , 'yikes-inc-easy-mailchimp-extender' ) . '">' . __( 'Edit ReCaptcha Settings' , 'yikes-inc-easy-mailchimp-extender' ) . '</a></span>'; |
|
62 | + if ( get_option( 'yikes-mc-recaptcha-secret-key', '' ) == '' ) { |
|
63 | + return __( "Whoops! It looks like you enabled reCAPTCHA but forgot to enter the reCAPTCHA secret key!", 'yikes-inc-easy-mailchimp-extender' ) . '<span class="edit-link yikes-easy-mc-edit-link"><a class="post-edit-link" href="' . esc_url( admin_url( 'admin.php?page=yikes-inc-easy-mailchimp-settings§ion=recaptcha-settings' ) ) . '" title="' . __( 'ReCaptcha Settings', 'yikes-inc-easy-mailchimp-extender' ) . '">' . __( 'Edit ReCaptcha Settings', 'yikes-inc-easy-mailchimp-extender' ) . '</a></span>'; |
|
64 | 64 | } |
65 | 65 | |
66 | - if( ! empty( $atts['recaptcha_type'] ) ) { |
|
67 | - echo $atts['recaptcha_type']; |
|
66 | + if ( ! empty( $atts[ 'recaptcha_type' ] ) ) { |
|
67 | + echo $atts[ 'recaptcha_type' ]; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // Store the site language (to load recaptcha in a specific language) |
71 | 71 | $locale = get_locale(); |
72 | 72 | $locale_split = explode( '_', $locale ); |
73 | 73 | // Setup reCAPTCHA parameters |
74 | - $lang = ( isset( $locale_split ) ? $locale_split[0] : $locale ); |
|
75 | - $lang = ( isset( $atts['recaptcha_lang'] ) ) ? $atts['recaptcha_lang'] : $locale_split[0]; |
|
76 | - $type = ( isset( $atts['recaptcha_type'] ) ) ? strtolower( $atts['recaptcha_type'] ) : 'image'; // setup recaptcha type |
|
77 | - $theme= ( isset( $atts['recaptcha_theme'] ) ) ? strtolower( $atts['recaptcha_theme'] ) : 'light'; // setup recaptcha theme |
|
78 | - $size = ( isset( $atts['recaptcha_size'] ) ) ? strtolower( $atts['recaptcha_size'] ) : 'normal'; // setup recaptcha size |
|
79 | - $data_callback = ( isset( $atts['recaptcha_data_callback'] ) ) ? $atts['recaptcha_data_callback'] : false; // setup recaptcha size |
|
80 | - $expired_callback = ( isset( $atts['recaptcha_expired_callback'] ) ) ? $atts['recaptcha_expired_callback'] : false; // setup recaptcha size |
|
74 | + $lang = ( isset( $locale_split ) ? $locale_split[ 0 ] : $locale ); |
|
75 | + $lang = ( isset( $atts[ 'recaptcha_lang' ] ) ) ? $atts[ 'recaptcha_lang' ] : $locale_split[ 0 ]; |
|
76 | + $type = ( isset( $atts[ 'recaptcha_type' ] ) ) ? strtolower( $atts[ 'recaptcha_type' ] ) : 'image'; // setup recaptcha type |
|
77 | + $theme = ( isset( $atts[ 'recaptcha_theme' ] ) ) ? strtolower( $atts[ 'recaptcha_theme' ] ) : 'light'; // setup recaptcha theme |
|
78 | + $size = ( isset( $atts[ 'recaptcha_size' ] ) ) ? strtolower( $atts[ 'recaptcha_size' ] ) : 'normal'; // setup recaptcha size |
|
79 | + $data_callback = ( isset( $atts[ 'recaptcha_data_callback' ] ) ) ? $atts[ 'recaptcha_data_callback' ] : false; // setup recaptcha size |
|
80 | + $expired_callback = ( isset( $atts[ 'recaptcha_expired_callback' ] ) ) ? $atts[ 'recaptcha_expired_callback' ] : false; // setup recaptcha size |
|
81 | 81 | // Pass the shortcode parameters through a filter |
82 | 82 | $recaptcha_shortcode_params = apply_filters( 'yikes-mailchimp-recaptcha-parameters', array( |
83 | 83 | 'language' => $lang, |
@@ -88,10 +88,10 @@ discard block |
||
88 | 88 | 'expired_callback' => $expired_callback, |
89 | 89 | ), $form ); |
90 | 90 | // enqueue Google recaptcha JS |
91 | - wp_register_script( 'google-recaptcha-js' , 'https://www.google.com/recaptcha/api.js?hl=' . $recaptcha_shortcode_params['language'] . '&onload=renderReCaptchaCallback&render=explicit', array( 'jquery' ) , 'all' ); |
|
91 | + wp_register_script( 'google-recaptcha-js', 'https://www.google.com/recaptcha/api.js?hl=' . $recaptcha_shortcode_params[ 'language' ] . '&onload=renderReCaptchaCallback&render=explicit', array( 'jquery' ), 'all' ); |
|
92 | 92 | wp_enqueue_script( 'google-recaptcha-js' ); |
93 | - $recaptcha_site_key = get_option( 'yikes-mc-recaptcha-site-key' , '' ); |
|
94 | - $recaptcha_box = '<div name="g-recaptcha" class="g-recaptcha" data-sitekey="' . $recaptcha_site_key . '" data-theme="' . $recaptcha_shortcode_params['theme'] . '" data-type="' . $recaptcha_shortcode_params['type'] . '" data-size="' . $recaptcha_shortcode_params['size'] . '" data-callback="' . $recaptcha_shortcode_params['success_callback'] . '" data-expired-callback="' . $recaptcha_shortcode_params['expired_callback'] . '"></div>'; |
|
93 | + $recaptcha_site_key = get_option( 'yikes-mc-recaptcha-site-key', '' ); |
|
94 | + $recaptcha_box = '<div name="g-recaptcha" class="g-recaptcha" data-sitekey="' . $recaptcha_site_key . '" data-theme="' . $recaptcha_shortcode_params[ 'theme' ] . '" data-type="' . $recaptcha_shortcode_params[ 'type' ] . '" data-size="' . $recaptcha_shortcode_params[ 'size' ] . '" data-callback="' . $recaptcha_shortcode_params[ 'success_callback' ] . '" data-expired-callback="' . $recaptcha_shortcode_params[ 'expired_callback' ] . '"></div>'; |
|
95 | 95 | ?> |
96 | 96 | <script type="text/javascript"> |
97 | 97 | /* Script Callback to init. multiple recaptchas on a single page */ |
@@ -118,10 +118,10 @@ discard block |
||
118 | 118 | } |
119 | 119 | |
120 | 120 | // place our results into a seperate variable for easy looping |
121 | - $form_data = $form_results[0]; |
|
121 | + $form_data = $form_results[ 0 ]; |
|
122 | 122 | |
123 | 123 | // store our variables |
124 | - $form_id = (int) $form_data['id']; // form id (the id of the form in the database) |
|
124 | + $form_id = (int) $form_data[ 'id' ]; // form id (the id of the form in the database) |
|
125 | 125 | |
126 | 126 | /* |
127 | 127 | * Get the stored form settings |
@@ -130,32 +130,32 @@ discard block |
||
130 | 130 | */ |
131 | 131 | $form_settings = Yikes_Inc_Easy_Mailchimp_Extender_Public::yikes_retrieve_form_settings( $form_id ); |
132 | 132 | |
133 | - $additional_form_settings = ( isset( $form_data['form_settings'] ) ) ? json_decode( $form_data['form_settings'], true ) : false; |
|
133 | + $additional_form_settings = ( isset( $form_data[ 'form_settings' ] ) ) ? json_decode( $form_data[ 'form_settings' ], true ) : false; |
|
134 | 134 | // store our options from the additional form settings array |
135 | - $form_classes = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-class-names'] : ''; |
|
136 | - $inline_form = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-inline-form'] : ''; |
|
137 | - $submit_button_type = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-submit-button-type'] : 'text'; |
|
138 | - $submit_button_text = ( $additional_form_settings && $additional_form_settings['yikes-easy-mc-submit-button-text'] != '' ) ? esc_attr( $additional_form_settings['yikes-easy-mc-submit-button-text'] ) : __( 'Submit', 'yikes-inc-easy-mailchimp-extender' ); |
|
139 | - $submit_button_image = ( $additional_form_settings ) ? esc_url( $additional_form_settings['yikes-easy-mc-submit-button-image'] ) : ''; |
|
140 | - $submit_button_classes = ( $additional_form_settings ) ? ' ' . esc_attr( $additional_form_settings['yikes-easy-mc-submit-button-classes'] ) : ''; |
|
135 | + $form_classes = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-class-names' ] : ''; |
|
136 | + $inline_form = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-inline-form' ] : ''; |
|
137 | + $submit_button_type = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-submit-button-type' ] : 'text'; |
|
138 | + $submit_button_text = ( $additional_form_settings && $additional_form_settings[ 'yikes-easy-mc-submit-button-text' ] != '' ) ? esc_attr( $additional_form_settings[ 'yikes-easy-mc-submit-button-text' ] ) : __( 'Submit', 'yikes-inc-easy-mailchimp-extender' ); |
|
139 | + $submit_button_image = ( $additional_form_settings ) ? esc_url( $additional_form_settings[ 'yikes-easy-mc-submit-button-image' ] ) : ''; |
|
140 | + $submit_button_classes = ( $additional_form_settings ) ? ' ' . esc_attr( $additional_form_settings[ 'yikes-easy-mc-submit-button-classes' ] ) : ''; |
|
141 | 141 | // scheuldes |
142 | - $form_schedule_state = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-schedule'] : false; |
|
143 | - $form_schedule_start = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-restriction-start'] : '';; |
|
144 | - $form_schedule_end = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-restriction-end'] : ''; |
|
145 | - $form_pending_message = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-restriction-pending-message'] : ''; |
|
146 | - $form_expired_message = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-restriction-expired-message'] : ''; |
|
142 | + $form_schedule_state = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-schedule' ] : false; |
|
143 | + $form_schedule_start = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-restriction-start' ] : ''; ; |
|
144 | + $form_schedule_end = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-restriction-end' ] : ''; |
|
145 | + $form_pending_message = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-restriction-pending-message' ] : ''; |
|
146 | + $form_expired_message = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-restriction-expired-message' ] : ''; |
|
147 | 147 | // register required |
148 | - $form_login_required = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-login-required'] : false; |
|
149 | - $form_login_message = ( $additional_form_settings ) ? $additional_form_settings['yikes-easy-mc-form-restriction-login-message'] : ''; |
|
148 | + $form_login_required = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-login-required' ] : false; |
|
149 | + $form_login_message = ( $additional_form_settings ) ? $additional_form_settings[ 'yikes-easy-mc-form-restriction-login-message' ] : ''; |
|
150 | 150 | // store number of fields |
151 | - $field_count = (int) count( $form_settings['fields'] ); |
|
151 | + $field_count = (int) count( $form_settings[ 'fields' ] ); |
|
152 | 152 | |
153 | 153 | // confirm we actually have fields, before looping |
154 | - if( isset( $form_data['fields'] ) && ! empty( $form_data['fields'] ) ) { |
|
154 | + if ( isset( $form_data[ 'fields' ] ) && ! empty( $form_data[ 'fields' ] ) ) { |
|
155 | 155 | // loop over each field, if it's set to hidden -- subtract it from the field count |
156 | 156 | // this throws off the layout for inline forms setup below |
157 | - foreach( json_decode( $form_data['fields'] ) as $form_field ) { |
|
158 | - if( isset( $form_field->hide ) && $form_field->hide == 1 ) { |
|
157 | + foreach ( json_decode( $form_data[ 'fields' ] ) as $form_field ) { |
|
158 | + if ( isset( $form_field->hide ) && $form_field->hide == 1 ) { |
|
159 | 159 | $field_count--; |
160 | 160 | } |
161 | 161 | } |
@@ -165,8 +165,8 @@ discard block |
||
165 | 165 | * If login is required, abort |
166 | 166 | * @since 6.0.3.8 |
167 | 167 | */ |
168 | - if( $form_login_required ) { |
|
169 | - if( apply_filters( 'yikes-mailchimp-required-login-requirement', ! is_user_logged_in() ) ) { |
|
168 | + if ( $form_login_required ) { |
|
169 | + if ( apply_filters( 'yikes-mailchimp-required-login-requirement', ! is_user_logged_in() ) ) { |
|
170 | 170 | ob_start(); |
171 | 171 | ?> |
172 | 172 | <div class="yikes-mailchimp-login-required yikes-mailchimp-form-<?php echo $form_id; ?>-login-required"> |
@@ -182,19 +182,19 @@ discard block |
||
182 | 182 | * Check if schedule is set for this form |
183 | 183 | * @since 6.0.3.8 |
184 | 184 | */ |
185 | - if( $form_schedule_state ) { |
|
185 | + if ( $form_schedule_state ) { |
|
186 | 186 | // store current date |
187 | 187 | $current_date = strtotime( current_time( 'm/d/Y g:iA' ) ); |
188 | 188 | |
189 | 189 | // the the current date is less than the form scheduled start date |
190 | - if( $current_date < $form_schedule_start ) { |
|
190 | + if ( $current_date < $form_schedule_start ) { |
|
191 | 191 | echo apply_filters( 'yikes-mailchimp-frontend-content', $form_pending_message ); |
192 | 192 | return; |
193 | 193 | // abort |
194 | 194 | } |
195 | 195 | |
196 | 196 | // The current date is past or equal to the end date, aka form has now expired |
197 | - if( $current_date >= $form_schedule_end ) { |
|
197 | + if ( $current_date >= $form_schedule_end ) { |
|
198 | 198 | echo apply_filters( 'yikes-mailchimp-frontend-content', $form_expired_message ); |
199 | 199 | return; |
200 | 200 | // abort |
@@ -203,8 +203,8 @@ discard block |
||
203 | 203 | |
204 | 204 | // setup the submit button text |
205 | 205 | // shortcode parameter takes precedence over option |
206 | - if( isset( $atts['submit'] ) ) { |
|
207 | - $submit = $atts['submit']; |
|
206 | + if ( isset( $atts[ 'submit' ] ) ) { |
|
207 | + $submit = $atts[ 'submit' ]; |
|
208 | 208 | } else { |
209 | 209 | $submit = $submit_button_text; |
210 | 210 | } |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | $page_data = $post; |
215 | 215 | |
216 | 216 | // Remove the post_password from this for security |
217 | - if( isset( $page_data->post_password ) ) { |
|
217 | + if ( isset( $page_data->post_password ) ) { |
|
218 | 218 | unset( $page_data->post_password ); |
219 | 219 | } |
220 | 220 | |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | * to exclude styles from loading, add `define( 'YIKES_MAILCHIMP_EXCLUDE_STYLES', true );` to functions.php |
229 | 229 | * @since 6.0.3.8 |
230 | 230 | */ |
231 | - if( ! defined( 'YIKES_MAILCHIMP_EXCLUDE_STYLES' ) ) { |
|
231 | + if ( ! defined( 'YIKES_MAILCHIMP_EXCLUDE_STYLES' ) ) { |
|
232 | 232 | // enqueue the form styles |
233 | 233 | wp_enqueue_style( 'yikes-inc-easy-mailchimp-public-styles', YIKES_MC_URL . 'public/css/yikes-inc-easy-mailchimp-extender-public.min.css', array( $last_key ) ); |
234 | 234 | } |
@@ -236,12 +236,12 @@ discard block |
||
236 | 236 | /** |
237 | 237 | * Check for form inline parameter |
238 | 238 | */ |
239 | - $form_inline = ( isset( $atts['inline'] ) && ( $atts['inline'] == 1 || $atts['inline'] == 'true' ) ) ? true : false; |
|
239 | + $form_inline = ( isset( $atts[ 'inline' ] ) && ( $atts[ 'inline' ] == 1 || $atts[ 'inline' ] == 'true' ) ) ? true : false; |
|
240 | 240 | // recheck from our form options |
241 | - if( ! $form_inline ) { |
|
242 | - $form_inline = ( isset( $additional_form_settings['yikes-easy-mc-inline-form'] ) && $additional_form_settings['yikes-easy-mc-inline-form'] == 1 ) ? true : false; |
|
241 | + if ( ! $form_inline ) { |
|
242 | + $form_inline = ( isset( $additional_form_settings[ 'yikes-easy-mc-inline-form' ] ) && $additional_form_settings[ 'yikes-easy-mc-inline-form' ] == 1 ) ? true : false; |
|
243 | 243 | } |
244 | - if( $form_inline ) { |
|
244 | + if ( $form_inline ) { |
|
245 | 245 | $field_width = (float) ( 100 / $field_count ); |
246 | 246 | $submit_button_width = (float) ( 20 / $field_count ); |
247 | 247 | /* |
@@ -270,12 +270,12 @@ discard block |
||
270 | 270 | <?php |
271 | 271 | |
272 | 272 | /* If the current user is logged in, and an admin...lets display our 'Edit Form' link */ |
273 | - if( is_user_logged_in() ) { |
|
274 | - if( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access' , 'manage_options' ) ) ) { |
|
273 | + if ( is_user_logged_in() ) { |
|
274 | + if ( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access', 'manage_options' ) ) ) { |
|
275 | 275 | $edit_form_link = '<span class="edit-link">'; |
276 | - $edit_form_link .= '<a class="post-edit-link" href="' . esc_url( admin_url( 'admin.php?page=yikes-mailchimp-edit-form&id=' . $form ) ) . '" title="' . __( 'Edit' , 'yikes-inc-easy-mailchimp-extender' ) . ' ' . ucwords( $form_settings['form_name'] ) . '">' . __( 'Edit Form' , 'yikes-inc-easy-mailchimp-extender' ) . '</a>'; |
|
276 | + $edit_form_link .= '<a class="post-edit-link" href="' . esc_url( admin_url( 'admin.php?page=yikes-mailchimp-edit-form&id=' . $form ) ) . '" title="' . __( 'Edit', 'yikes-inc-easy-mailchimp-extender' ) . ' ' . ucwords( $form_settings[ 'form_name' ] ) . '">' . __( 'Edit Form', 'yikes-inc-easy-mailchimp-extender' ) . '</a>'; |
|
277 | 277 | $edit_form_link .= '</span>'; |
278 | - $edit_form_link = apply_filters( 'yikes-mailchimp-front-end-form-action-links', $edit_form_link, $form, ucwords( $form_settings['form_name'] ) ); |
|
278 | + $edit_form_link = apply_filters( 'yikes-mailchimp-front-end-form-action-links', $edit_form_link, $form, ucwords( $form_settings[ 'form_name' ] ) ); |
|
279 | 279 | } else { |
280 | 280 | $edit_form_link = ''; |
281 | 281 | } |
@@ -284,16 +284,16 @@ discard block |
||
284 | 284 | // ensure there is an 'email' field the user can fill out |
285 | 285 | // or else MailChimp throws errors at you |
286 | 286 | // extract our array keys |
287 | - if( isset( $form_settings['fields'] ) && ! empty( $form_settings['fields'] ) ) { |
|
288 | - $array_keys = array_keys( $form_settings['fields'] ); |
|
287 | + if ( isset( $form_settings[ 'fields' ] ) && ! empty( $form_settings[ 'fields' ] ) ) { |
|
288 | + $array_keys = array_keys( $form_settings[ 'fields' ] ); |
|
289 | 289 | // check for EMAIL in that array |
290 | - if( !in_array( 'EMAIL', $array_keys ) && !in_array( 'email', $array_keys ) ) { |
|
291 | - return '<p>' . __( "An email field is required for all MailChimp forms. Please add an email field to this form." , 'yikes-inc-easy-mailchimp-extender' ) . '</p><p>' . $edit_form_link . '</p>'; |
|
290 | + if ( ! in_array( 'EMAIL', $array_keys ) && ! in_array( 'email', $array_keys ) ) { |
|
291 | + return '<p>' . __( "An email field is required for all MailChimp forms. Please add an email field to this form.", 'yikes-inc-easy-mailchimp-extender' ) . '</p><p>' . $edit_form_link . '</p>'; |
|
292 | 292 | } |
293 | 293 | } else { |
294 | - $error = '<p>' . __( "Whoops, it looks like you forgot to assign fields to this form." , 'yikes-inc-easy-mailchimp-extender' ) . '</p>'; |
|
295 | - if( is_user_logged_in() ) { |
|
296 | - if( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access' , 'manage_options' ) ) ) { |
|
294 | + $error = '<p>' . __( "Whoops, it looks like you forgot to assign fields to this form.", 'yikes-inc-easy-mailchimp-extender' ) . '</p>'; |
|
295 | + if ( is_user_logged_in() ) { |
|
296 | + if ( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access', 'manage_options' ) ) ) { |
|
297 | 297 | return $error . $edit_form_link; |
298 | 298 | } |
299 | 299 | } else { |
@@ -311,13 +311,13 @@ discard block |
||
311 | 311 | * Set a custom title using custom_title="lorem ipsum" parameter in the shortcode |
312 | 312 | * - This takes precedence over the title set |
313 | 313 | */ |
314 | - if( ! empty( $title ) && $title == 1 && isset( $atts['custom_title'] ) ) { |
|
315 | - echo '<h3 class="yikes-mailchimp-form-title yikes-mailchimp-form-title-'.$form_id.'">' . apply_filters( 'yikes-mailchimp-form-title', apply_filters( 'the_title', $atts['custom_title'] ), $form_id ) . '</h3>'; |
|
314 | + if ( ! empty( $title ) && $title == 1 && isset( $atts[ 'custom_title' ] ) ) { |
|
315 | + echo '<h3 class="yikes-mailchimp-form-title yikes-mailchimp-form-title-' . $form_id . '">' . apply_filters( 'yikes-mailchimp-form-title', apply_filters( 'the_title', $atts[ 'custom_title' ] ), $form_id ) . '</h3>'; |
|
316 | 316 | } else { |
317 | 317 | // display the form description if the user |
318 | 318 | // has specified to do so |
319 | - if( ! empty( $title ) && $title == 1 ) { |
|
320 | - echo '<h3 class="yikes-mailchimp-form-title yikes-mailchimp-form-title-'.$form_id.'">' . apply_filters( 'yikes-mailchimp-form-title', apply_filters( 'the_title', $form_settings['form_name'] ), $form_id ) . '</h3>'; |
|
319 | + if ( ! empty( $title ) && $title == 1 ) { |
|
320 | + echo '<h3 class="yikes-mailchimp-form-title yikes-mailchimp-form-title-' . $form_id . '">' . apply_filters( 'yikes-mailchimp-form-title', apply_filters( 'the_title', $form_settings[ 'form_name' ] ), $form_id ) . '</h3>'; |
|
321 | 321 | } |
322 | 322 | } |
323 | 323 | |
@@ -325,21 +325,21 @@ discard block |
||
325 | 325 | * Allow users to specify a custom description for this form, no html support |
326 | 326 | * @since 6.0.3.8 |
327 | 327 | */ |
328 | - if( ! empty( $description ) && $description == 1 && isset( $atts['custom_description'] ) ) { |
|
329 | - echo '<section class="yikes-mailchimp-form-description yikes-mailchimp-form-description-'.$form_id.'">' . apply_filters( 'yikes-mailchimp-frontend-content', apply_filters( 'yikes-mailchimp-form-description', $atts['custom_description'], $form_id ) ) . '</section>'; |
|
328 | + if ( ! empty( $description ) && $description == 1 && isset( $atts[ 'custom_description' ] ) ) { |
|
329 | + echo '<section class="yikes-mailchimp-form-description yikes-mailchimp-form-description-' . $form_id . '">' . apply_filters( 'yikes-mailchimp-frontend-content', apply_filters( 'yikes-mailchimp-form-description', $atts[ 'custom_description' ], $form_id ) ) . '</section>'; |
|
330 | 330 | } else { |
331 | 331 | // display the form description if the user |
332 | 332 | // has specified to do so |
333 | - if( ! empty( $description ) && $description == 1 ) { |
|
334 | - echo '<section class="yikes-mailchimp-form-description yikes-mailchimp-form-description-'.$form_id.'">' . apply_filters( 'yikes-mailchimp-frontend-content', apply_filters( 'yikes-mailchimp-form-description', $form_settings['form_description'], $form_id ) ) . '</section>'; |
|
333 | + if ( ! empty( $description ) && $description == 1 ) { |
|
334 | + echo '<section class="yikes-mailchimp-form-description yikes-mailchimp-form-description-' . $form_id . '">' . apply_filters( 'yikes-mailchimp-frontend-content', apply_filters( 'yikes-mailchimp-form-description', $form_settings[ 'form_description' ], $form_id ) ) . '</section>'; |
|
335 | 335 | } |
336 | 336 | } |
337 | 337 | |
338 | 338 | // Check for AJAX |
339 | - if( ( ! empty( $atts['ajax'] ) && $atts['ajax'] == 1 ) || $form_settings['submission_settings']['ajax'] == 1 ) { |
|
339 | + if ( ( ! empty( $atts[ 'ajax' ] ) && $atts[ 'ajax' ] == 1 ) || $form_settings[ 'submission_settings' ][ 'ajax' ] == 1 ) { |
|
340 | 340 | // enqueue our ajax script |
341 | - wp_register_script( 'yikes-easy-mc-ajax' , YIKES_MC_URL . 'public/js/yikes-mc-ajax-forms.min.js' , array( 'jquery' ) , 'yikes-inc-easy-mailchimp-extender', false ); |
|
342 | - wp_localize_script( 'yikes-easy-mc-ajax' , 'object' , array( |
|
341 | + wp_register_script( 'yikes-easy-mc-ajax', YIKES_MC_URL . 'public/js/yikes-mc-ajax-forms.min.js', array( 'jquery' ), 'yikes-inc-easy-mailchimp-extender', false ); |
|
342 | + wp_localize_script( 'yikes-easy-mc-ajax', 'object', array( |
|
343 | 343 | 'ajax_url' => esc_url( admin_url( 'admin-ajax.php' ) ), |
344 | 344 | 'page_data' => $page_data, |
345 | 345 | 'interest_group_checkbox_error' => apply_filters( 'yikes-mailchimp-interest-group-checkbox-error', __( 'This field is required.', 'yikes-inc-easy-mailchimp-extender' ), $form_id ), |
@@ -358,10 +358,10 @@ discard block |
||
358 | 358 | |
359 | 359 | // render the form! |
360 | 360 | ?> |
361 | - <form id="<?php echo sanitize_title( $form_settings['form_name'] ); ?>-<?php echo $form_id; ?>" class="yikes-easy-mc-form yikes-easy-mc-form-<?php echo $form_id . ' '; if ( $form_inline ) { echo 'yikes-mailchimp-form-inline '; } echo ' ' . apply_filters( 'yikes-mailchimp-form-class', $form_classes, $form_id ); if( !empty( $_POST ) && $form_submitted == 1 && $form_settings['submission_settings']['hide_form_post_signup'] == 1 ) { echo ' yikes-easy-mc-display-none'; } ?>" action="" method="POST" data-attr-form-id="<?php echo $form_id; ?>"> |
|
361 | + <form id="<?php echo sanitize_title( $form_settings[ 'form_name' ] ); ?>-<?php echo $form_id; ?>" class="yikes-easy-mc-form yikes-easy-mc-form-<?php echo $form_id . ' '; if ( $form_inline ) { echo 'yikes-mailchimp-form-inline '; } echo ' ' . apply_filters( 'yikes-mailchimp-form-class', $form_classes, $form_id ); if ( ! empty( $_POST ) && $form_submitted == 1 && $form_settings[ 'submission_settings' ][ 'hide_form_post_signup' ] == 1 ) { echo ' yikes-easy-mc-display-none'; } ?>" action="" method="POST" data-attr-form-id="<?php echo $form_id; ?>"> |
|
362 | 362 | |
363 | 363 | <?php |
364 | - foreach( $form_settings['fields'] as $field ) { |
|
364 | + foreach ( $form_settings[ 'fields' ] as $field ) { |
|
365 | 365 | // input array |
366 | 366 | $field_array = array(); |
367 | 367 | // label array |
@@ -370,53 +370,53 @@ discard block |
||
370 | 370 | $hidden_label = false; |
371 | 371 | // label classes array |
372 | 372 | $label_class_array = array(); |
373 | - if( $field['additional-classes'] != '' ) { |
|
373 | + if ( $field[ 'additional-classes' ] != '' ) { |
|
374 | 374 | // split custom classes at spaces |
375 | - $custom_classes = explode( ' ' , $field['additional-classes'] ); |
|
375 | + $custom_classes = explode( ' ', $field[ 'additional-classes' ] ); |
|
376 | 376 | // check our custom class array for field-left/field-right |
377 | 377 | // if it's set we need to assign it to our label and remove it from the field classes |
378 | 378 | // input half left |
379 | - if( in_array( 'field-left-half' , $custom_classes ) ) { |
|
379 | + if ( in_array( 'field-left-half', $custom_classes ) ) { |
|
380 | 380 | // $label_array['class'] = 'class="field-left-half"'; |
381 | - $label_class_array[] = 'field-left-half'; |
|
382 | - $key = array_search( 'field-left-half' , $custom_classes ); |
|
383 | - unset( $custom_classes[$key] ); |
|
381 | + $label_class_array[ ] = 'field-left-half'; |
|
382 | + $key = array_search( 'field-left-half', $custom_classes ); |
|
383 | + unset( $custom_classes[ $key ] ); |
|
384 | 384 | } // input half right |
385 | - if( in_array( 'field-right-half' , $custom_classes ) ) { |
|
385 | + if ( in_array( 'field-right-half', $custom_classes ) ) { |
|
386 | 386 | // $label_array['class'] = 'class="field-right-half"'; |
387 | - $label_class_array[] = 'field-right-half'; |
|
388 | - $key = array_search( 'field-right-half' , $custom_classes ); |
|
389 | - unset( $custom_classes[$key] ); |
|
387 | + $label_class_array[ ] = 'field-right-half'; |
|
388 | + $key = array_search( 'field-right-half', $custom_classes ); |
|
389 | + unset( $custom_classes[ $key ] ); |
|
390 | 390 | } // input thirds (1/3 width, floated left) |
391 | - if( in_array( 'field-third' , $custom_classes ) ) { |
|
391 | + if ( in_array( 'field-third', $custom_classes ) ) { |
|
392 | 392 | // $label_array['class'] = 'class="field-third"'; |
393 | - $label_class_array[] = 'field-third'; |
|
394 | - $key = array_search( 'field-third' , $custom_classes ); |
|
395 | - unset( $custom_classes[$key] ); |
|
393 | + $label_class_array[ ] = 'field-third'; |
|
394 | + $key = array_search( 'field-third', $custom_classes ); |
|
395 | + unset( $custom_classes[ $key ] ); |
|
396 | 396 | } // 2 column radio |
397 | - if( in_array( 'option-2-col' , $custom_classes ) ) { |
|
397 | + if ( in_array( 'option-2-col', $custom_classes ) ) { |
|
398 | 398 | // $label_array['class'] = 'class="option-2-col"'; |
399 | - $label_class_array[] = 'option-2-col'; |
|
400 | - $key = array_search( 'option-2-col' , $custom_classes ); |
|
401 | - unset( $custom_classes[$key] ); |
|
399 | + $label_class_array[ ] = 'option-2-col'; |
|
400 | + $key = array_search( 'option-2-col', $custom_classes ); |
|
401 | + unset( $custom_classes[ $key ] ); |
|
402 | 402 | } // 3 column radio |
403 | - if( in_array( 'option-3-col' , $custom_classes ) ) { |
|
403 | + if ( in_array( 'option-3-col', $custom_classes ) ) { |
|
404 | 404 | // $label_array['class'] = 'class="option-3-col"'; |
405 | - $label_class_array[] = 'option-3-col'; |
|
406 | - $key = array_search( 'option-3-col' , $custom_classes ); |
|
407 | - unset( $custom_classes[$key] ); |
|
405 | + $label_class_array[ ] = 'option-3-col'; |
|
406 | + $key = array_search( 'option-3-col', $custom_classes ); |
|
407 | + unset( $custom_classes[ $key ] ); |
|
408 | 408 | } // 4 column radio |
409 | - if( in_array( 'option-4-col' , $custom_classes ) ) { |
|
409 | + if ( in_array( 'option-4-col', $custom_classes ) ) { |
|
410 | 410 | // $label_array['class'] = 'class="option-4-col"'; |
411 | - $label_class_array[] = 'option-4-col'; |
|
412 | - $key = array_search( 'option-4-col' , $custom_classes ); |
|
413 | - unset( $custom_classes[$key] ); |
|
411 | + $label_class_array[ ] = 'option-4-col'; |
|
412 | + $key = array_search( 'option-4-col', $custom_classes ); |
|
413 | + unset( $custom_classes[ $key ] ); |
|
414 | 414 | } // inline radio & checkboxes etc |
415 | - if( in_array( 'option-inline' , $custom_classes ) ) { |
|
415 | + if ( in_array( 'option-inline', $custom_classes ) ) { |
|
416 | 416 | // $label_array['class'] = 'class="option-inline"'; |
417 | - $label_class_array[] = 'option-inline'; |
|
418 | - $key = array_search( 'option-inline' , $custom_classes ); |
|
419 | - unset( $custom_classes[$key] ); |
|
417 | + $label_class_array[ ] = 'option-inline'; |
|
418 | + $key = array_search( 'option-inline', $custom_classes ); |
|
419 | + unset( $custom_classes[ $key ] ); |
|
420 | 420 | } |
421 | 421 | } else { |
422 | 422 | $custom_classes = array(); |
@@ -424,68 +424,68 @@ discard block |
||
424 | 424 | |
425 | 425 | // if the form is set to inline, add the inline class to our labels |
426 | 426 | // since @6.0.3.8 |
427 | - if( $form_inline ) { |
|
428 | - $label_class_array[] = 'label-inline'; |
|
427 | + if ( $form_inline ) { |
|
428 | + $label_class_array[ ] = 'label-inline'; |
|
429 | 429 | } |
430 | 430 | |
431 | - if( isset( $field['hide-label'] ) ) { |
|
432 | - if( $field['hide-label'] == 1 ) { |
|
431 | + if ( isset( $field[ 'hide-label' ] ) ) { |
|
432 | + if ( $field[ 'hide-label' ] == 1 ) { |
|
433 | 433 | $hidden_label = true; |
434 | - $custom_classes[] = 'field-no-label'; |
|
434 | + $custom_classes[ ] = 'field-no-label'; |
|
435 | 435 | } |
436 | 436 | } |
437 | 437 | |
438 | 438 | /* Store tag variable based on field type */ |
439 | - if( isset( $field['merge'] ) ) { |
|
439 | + if ( isset( $field[ 'merge' ] ) ) { |
|
440 | 440 | $tag = 'merge'; |
441 | 441 | } else { |
442 | 442 | $tag = 'group_id'; |
443 | 443 | } |
444 | 444 | |
445 | 445 | // build up our array |
446 | - $field_array['id'] = 'id="yikes-easy-mc-form-' . $form_id . '-' . esc_attr( $field[$tag] ) . '" '; |
|
447 | - $field_array['name'] = 'name="' . esc_attr( $field[$tag] ) . '" '; |
|
448 | - $field_array['placeholder'] = isset( $field['placeholder'] ) ? 'placeholder="' . esc_attr( stripslashes( $field['placeholder'] ) ) . '" ' : ''; |
|
449 | - $field_array['classes'] = 'class="yikes-easy-mc-'.$field['type'] . ' ' . esc_attr( trim( implode( ' ' , $custom_classes ) ) ) . '" '; |
|
446 | + $field_array[ 'id' ] = 'id="yikes-easy-mc-form-' . $form_id . '-' . esc_attr( $field[ $tag ] ) . '" '; |
|
447 | + $field_array[ 'name' ] = 'name="' . esc_attr( $field[ $tag ] ) . '" '; |
|
448 | + $field_array[ 'placeholder' ] = isset( $field[ 'placeholder' ] ) ? 'placeholder="' . esc_attr( stripslashes( $field[ 'placeholder' ] ) ) . '" ' : ''; |
|
449 | + $field_array[ 'classes' ] = 'class="yikes-easy-mc-' . $field[ 'type' ] . ' ' . esc_attr( trim( implode( ' ', $custom_classes ) ) ) . '" '; |
|
450 | 450 | |
451 | 451 | // email must always be required and visible |
452 | - if( $field['type'] == 'email' ) { |
|
453 | - $field_array['required'] = 'required="required"'; |
|
454 | - $label_array['visible'] = ''; |
|
452 | + if ( $field[ 'type' ] == 'email' ) { |
|
453 | + $field_array[ 'required' ] = 'required="required"'; |
|
454 | + $label_array[ 'visible' ] = ''; |
|
455 | 455 | // $label_array['required'] = 'class="' . $field['merge'] . '-label yikes-mailchimp-field-required"'; |
456 | - $label_class_array[] = $field['merge'] . '-label'; |
|
457 | - $label_class_array[] = 'yikes-mailchimp-field-required'; |
|
456 | + $label_class_array[ ] = $field[ 'merge' ] . '-label'; |
|
457 | + $label_class_array[ ] = 'yikes-mailchimp-field-required'; |
|
458 | 458 | } else { |
459 | - if( $tag == 'merge' ) { |
|
460 | - $field_array['required'] = isset( $field['require'] ) ? 'required="required"' : ''; |
|
461 | - $label_array['visible'] = isset( $field['hide'] ) ? 'style="display:none;"' : ''; |
|
459 | + if ( $tag == 'merge' ) { |
|
460 | + $field_array[ 'required' ] = isset( $field[ 'require' ] ) ? 'required="required"' : ''; |
|
461 | + $label_array[ 'visible' ] = isset( $field[ 'hide' ] ) ? 'style="display:none;"' : ''; |
|
462 | 462 | // $label_array['required'] = isset( $field['require'] ) ? 'class="' . $field['merge'] . '-label yikes-mailchimp-field-required"' : 'class="' . $field['merge'] . '-label"'; |
463 | - $label_class_array[] = isset( $field['require'] ) ? $field['merge'] . '-label yikes-mailchimp-field-required' : $field['merge'] . '-label'; |
|
463 | + $label_class_array[ ] = isset( $field[ 'require' ] ) ? $field[ 'merge' ] . '-label yikes-mailchimp-field-required' : $field[ 'merge' ] . '-label'; |
|
464 | 464 | } else { |
465 | - $field_array['required'] = isset( $field['require'] ) ? 'required="required"' : ''; |
|
466 | - $label_array['visible'] = isset( $field['hide'] ) ? 'style="display:none;"' : ''; |
|
465 | + $field_array[ 'required' ] = isset( $field[ 'require' ] ) ? 'required="required"' : ''; |
|
466 | + $label_array[ 'visible' ] = isset( $field[ 'hide' ] ) ? 'style="display:none;"' : ''; |
|
467 | 467 | // $label_array['required'] = isset( $field['require'] ) ? 'class="' . $field['group_id'] . '-label yikes-mailchimp-field-required"' : 'class="' . $field['group_id'] . '-label"'; |
468 | - $label_class_array[] = isset( $field['require'] ) ? $field['group_id'] . '-label yikes-mailchimp-field-required' : $field['group_id'] . '-label'; |
|
468 | + $label_class_array[ ] = isset( $field[ 'require' ] ) ? $field[ 'group_id' ] . '-label yikes-mailchimp-field-required' : $field[ 'group_id' ] . '-label'; |
|
469 | 469 | } |
470 | 470 | } |
471 | 471 | |
472 | 472 | // if both hide label and hide field are checked, we gotta hide the field! |
473 | - if( isset( $field['hide' ] ) && $field['hide'] == 1 ) { |
|
474 | - if( isset( $field['hide-label' ] ) && $field['hide-label'] == 1 ) { |
|
475 | - $field_array['visible'] = 'style="display:none;"'; |
|
473 | + if ( isset( $field[ 'hide' ] ) && $field[ 'hide' ] == 1 ) { |
|
474 | + if ( isset( $field[ 'hide-label' ] ) && $field[ 'hide-label' ] == 1 ) { |
|
475 | + $field_array[ 'visible' ] = 'style="display:none;"'; |
|
476 | 476 | } |
477 | 477 | } |
478 | 478 | |
479 | - $label_array['classes'] = 'class="' . implode( ' ', $label_class_array ) . '"'; |
|
479 | + $label_array[ 'classes' ] = 'class="' . implode( ' ', $label_class_array ) . '"'; |
|
480 | 480 | |
481 | 481 | // filter the field array data |
482 | 482 | $field_array = apply_filters( 'yikes-mailchimp-field-data', $field_array, $field, $form_id ); |
483 | 483 | |
484 | 484 | /* Loop Over Standard Fields (aka merge variables) */ |
485 | - if( isset( $field['merge'] ) ) { |
|
485 | + if ( isset( $field[ 'merge' ] ) ) { |
|
486 | 486 | |
487 | 487 | // loop over our fields by Type |
488 | - switch ( $field['type'] ) { |
|
488 | + switch ( $field[ 'type' ] ) { |
|
489 | 489 | |
490 | 490 | default: |
491 | 491 | case 'email': |
@@ -493,25 +493,25 @@ discard block |
||
493 | 493 | case 'number': |
494 | 494 | |
495 | 495 | // pass our default value through our filter to parse dynamic data by tag (used solely for 'text' type) |
496 | - $default_value = ( isset( $field['default'] ) ? esc_attr( $field['default'] ) : '' ); |
|
496 | + $default_value = ( isset( $field[ 'default' ] ) ? esc_attr( $field[ 'default' ] ) : '' ); |
|
497 | 497 | $default_value = apply_filters( 'yikes-mailchimp-process-default-tag', $default_value ); |
498 | 498 | ?> |
499 | - <label for="<?php echo $field['merge']; ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
499 | + <label for="<?php echo $field[ 'merge' ]; ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
500 | 500 | |
501 | 501 | <!-- dictate label visibility --> |
502 | - <?php if( !isset( $field['hide-label'] ) ) { ?> |
|
503 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
504 | - <?php if( ! isset( $field['hide-label'] ) ) { echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ), $form_id ); } ?> |
|
502 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
503 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
504 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ), $form_id ); } ?> |
|
505 | 505 | </span> |
506 | 506 | <?php } ?> |
507 | 507 | |
508 | - <input <?php echo implode( ' ' , $field_array ); if( $field['type'] != 'email' && $field['type'] != 'number' ) { ?> type="text" <?php } else if( $field['type'] == 'email' ) { ?> type="email" <?php } else { ?> type="number" <?php } ?> value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } else { echo esc_attr( $default_value ); } ?>"> |
|
508 | + <input <?php echo implode( ' ', $field_array ); if ( $field[ 'type' ] != 'email' && $field[ 'type' ] != 'number' ) { ?> type="text" <?php } else if ( $field[ 'type' ] == 'email' ) { ?> type="email" <?php } else { ?> type="number" <?php } ?> value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } else { echo esc_attr( $default_value ); } ?>"> |
|
509 | 509 | |
510 | 510 | <!-- description --> |
511 | - <?php if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
511 | + <?php if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
512 | 512 | <p class="form-field-description"> |
513 | 513 | <small> |
514 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( stripslashes( $field['description'] ) ), $form_id ); ?> |
|
514 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( stripslashes( $field[ 'description' ] ) ), $form_id ); ?> |
|
515 | 515 | </small> |
516 | 516 | </p> |
517 | 517 | <?php } ?> |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | |
524 | 524 | case 'url': |
525 | 525 | case 'imageurl': |
526 | - $default_value = ( isset( $field['default'] ) ) ? $field['default'] : ''; |
|
526 | + $default_value = ( isset( $field[ 'default' ] ) ) ? $field[ 'default' ] : ''; |
|
527 | 527 | ?> |
528 | 528 | |
529 | 529 | <script type="text/javascript"> |
@@ -535,22 +535,22 @@ discard block |
||
535 | 535 | } |
536 | 536 | </script> |
537 | 537 | |
538 | - <label for="<?php echo $field['merge']; ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
538 | + <label for="<?php echo $field[ 'merge' ]; ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
539 | 539 | |
540 | 540 | <!-- dictate label visibility --> |
541 | - <?php if( !isset( $field['hide-label'] ) ) { ?> |
|
542 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
543 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
541 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
542 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
543 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
544 | 544 | </span> |
545 | 545 | <?php } ?> |
546 | 546 | |
547 | - <input <?php echo implode( ' ' , $field_array ); ?> type="url" <?php if( $field['type'] == 'url' ) { ?> title="<?php _e( 'Please enter a valid URL to the website.' , 'yikes-inc-easy-mailchimp-extender' ); ?>" <?php } else { ?> title="<?php _e( 'Please enter a valid URL to the image.' , 'yikes-inc-easy-mailchimp-extender' ); ?>" <?php } ?> value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } else { echo esc_attr( $default_value ); } ?>" onblur="properlyFormatURLField(this);return false;"> |
|
547 | + <input <?php echo implode( ' ', $field_array ); ?> type="url" <?php if ( $field[ 'type' ] == 'url' ) { ?> title="<?php _e( 'Please enter a valid URL to the website.', 'yikes-inc-easy-mailchimp-extender' ); ?>" <?php } else { ?> title="<?php _e( 'Please enter a valid URL to the image.', 'yikes-inc-easy-mailchimp-extender' ); ?>" <?php } ?> value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } else { echo esc_attr( $default_value ); } ?>" onblur="properlyFormatURLField(this);return false;"> |
|
548 | 548 | |
549 | 549 | <!-- description --> |
550 | - <?php if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
550 | + <?php if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
551 | 551 | <p class="form-field-description"> |
552 | 552 | <small> |
553 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( stripslashes( $field['description'] ) ), $form_id ); ?> |
|
553 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( stripslashes( $field[ 'description' ] ) ), $form_id ); ?> |
|
554 | 554 | </small> |
555 | 555 | </p> |
556 | 556 | <?php } ?> |
@@ -561,8 +561,8 @@ discard block |
||
561 | 561 | break; |
562 | 562 | |
563 | 563 | case 'phone': |
564 | - $default_value = ( isset( $field['default'] ) ? esc_attr( $field['default'] ) : '' ); |
|
565 | - $phone_format = $field['phone_format']; |
|
564 | + $default_value = ( isset( $field[ 'default' ] ) ? esc_attr( $field[ 'default' ] ) : '' ); |
|
565 | + $phone_format = $field[ 'phone_format' ]; |
|
566 | 566 | ?> |
567 | 567 | <script type="text/javascript"> |
568 | 568 | /* Replace incorrect values and format it correctly for MailChimp API */ |
@@ -575,22 +575,22 @@ discard block |
||
575 | 575 | } |
576 | 576 | </script> |
577 | 577 | |
578 | - <label for="<?php echo $field['merge']; ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
578 | + <label for="<?php echo $field[ 'merge' ]; ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
579 | 579 | |
580 | 580 | <!-- dictate label visibility --> |
581 | - <?php if( !isset( $field['hide-label'] ) ) { ?> |
|
582 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
583 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
581 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
582 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
583 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
584 | 584 | </span> |
585 | 585 | <?php } ?> |
586 | 586 | |
587 | - <input <?php echo implode( ' ' , $field_array ); ?> type="text" <?php if( $phone_format != 'US' ) { ?> title="<?php _e( 'International Phone Number' , 'yikes-inc-easy-mailchimp-extender' ); ?>" pattern="<?php echo apply_filters( 'yikes-mailchimp-international-phone-pattern' , '[0-9,-]{1,}' ); ?>" <?php } else { ?> title="<?php _e( 'US Phone Number (###) ### - ####' , 'yikes-inc-easy-mailchimp-extender' ); ?>" pattern="<?php echo apply_filters( 'yikes-mailchimp-us-phone-pattern' , '^(\([0-9]{3}\)|[0-9]{3}-)[0-9]{3}-[0-9]{4}$' ); ?>" onblur="formatUSPhoneNumber(this);"<?php } ?> value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } else { echo esc_attr( $default_value ); } ?>"> |
|
587 | + <input <?php echo implode( ' ', $field_array ); ?> type="text" <?php if ( $phone_format != 'US' ) { ?> title="<?php _e( 'International Phone Number', 'yikes-inc-easy-mailchimp-extender' ); ?>" pattern="<?php echo apply_filters( 'yikes-mailchimp-international-phone-pattern', '[0-9,-]{1,}' ); ?>" <?php } else { ?> title="<?php _e( 'US Phone Number (###) ### - ####', 'yikes-inc-easy-mailchimp-extender' ); ?>" pattern="<?php echo apply_filters( 'yikes-mailchimp-us-phone-pattern', '^(\([0-9]{3}\)|[0-9]{3}-)[0-9]{3}-[0-9]{4}$' ); ?>" onblur="formatUSPhoneNumber(this);"<?php } ?> value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } else { echo esc_attr( $default_value ); } ?>"> |
|
588 | 588 | |
589 | 589 | <!-- description --> |
590 | - <?php if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
590 | + <?php if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
591 | 591 | <p class="form-field-description"> |
592 | 592 | <small> |
593 | - <?php echo apply_filters( 'yikes-mailchimp-' . esc_attr( $field['merge'] ) . '-description', stripslashes( $field['description'] ), $form_id ); ?> |
|
593 | + <?php echo apply_filters( 'yikes-mailchimp-' . esc_attr( $field[ 'merge' ] ) . '-description', stripslashes( $field[ 'description' ] ), $form_id ); ?> |
|
594 | 594 | </small> |
595 | 595 | </p> |
596 | 596 | <?php } ?> |
@@ -600,25 +600,25 @@ discard block |
||
600 | 600 | break; |
601 | 601 | |
602 | 602 | case 'zip': |
603 | - $default_value = ( isset( $field['default'] ) ? esc_attr( $field['default'] ) : '' ); |
|
603 | + $default_value = ( isset( $field[ 'default' ] ) ? esc_attr( $field[ 'default' ] ) : '' ); |
|
604 | 604 | |
605 | 605 | ?> |
606 | - <label for="<?php echo $field['merge']; ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
606 | + <label for="<?php echo $field[ 'merge' ]; ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
607 | 607 | |
608 | 608 | <!-- dictate label visibility --> |
609 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
610 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
611 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
609 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
610 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
611 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
612 | 612 | </span> |
613 | 613 | <?php } ?> |
614 | 614 | |
615 | - <input <?php echo implode( ' ' , $field_array ); ?> type="text" pattern="\d{5,5}(-\d{4,4})?" title="<?php _e( '5 digit zip code, numbers only' , 'yikes-inc-easy-mailchimp-extender' ); ?>" value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } else { echo esc_attr( $default_value ); } ?>"> |
|
615 | + <input <?php echo implode( ' ', $field_array ); ?> type="text" pattern="\d{5,5}(-\d{4,4})?" title="<?php _e( '5 digit zip code, numbers only', 'yikes-inc-easy-mailchimp-extender' ); ?>" value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } else { echo esc_attr( $default_value ); } ?>"> |
|
616 | 616 | |
617 | 617 | <!-- description --> |
618 | - <?php if( isset( $field['description'] ) ) { ?> |
|
618 | + <?php if ( isset( $field[ 'description' ] ) ) { ?> |
|
619 | 619 | <p class="form-field-description"> |
620 | 620 | <small> |
621 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( stripslashes( $field['description'] ) ), $form_id ); ?> |
|
621 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( stripslashes( $field[ 'description' ] ) ), $form_id ); ?> |
|
622 | 622 | </small> |
623 | 623 | </p> |
624 | 624 | <?php } ?> |
@@ -630,28 +630,28 @@ discard block |
||
630 | 630 | |
631 | 631 | case 'address': |
632 | 632 | // required fields |
633 | - $required_fields = array( 'addr1' => 'address' , 'addr2' => 'address 2', 'city' => 'city', 'state' =>'state', 'zip' =>'zip' , 'country' => 'country' ); |
|
633 | + $required_fields = array( 'addr1' => 'address', 'addr2' => 'address 2', 'city' => 'city', 'state' =>'state', 'zip' =>'zip', 'country' => 'country' ); |
|
634 | 634 | |
635 | 635 | // setup the default country value |
636 | 636 | $default_country = apply_filters( 'yikes-mailchimp-default-country-value', 'US' ); |
637 | 637 | |
638 | 638 | // store number for looping |
639 | 639 | $x = 1; |
640 | - foreach( $required_fields as $type => $label ) { |
|
640 | + foreach ( $required_fields as $type => $label ) { |
|
641 | 641 | |
642 | 642 | // set the field names for the addrress fields |
643 | - $field_array['name'] = 'name="'.$field[$tag].'['.$type.']'.'"'; |
|
643 | + $field_array[ 'name' ] = 'name="' . $field[ $tag ] . '[' . $type . ']' . '"'; |
|
644 | 644 | |
645 | 645 | // reset the label classes for left-half/right-half for addresses |
646 | - if( isset( $label_array['class'] ) ) { |
|
646 | + if ( isset( $label_array[ 'class' ] ) ) { |
|
647 | 647 | if ( $x % 2 == 0 ) { |
648 | - $label_array['class'] = str_replace( 'field-left-half', 'field-right-half', $label_array['class'] ); |
|
648 | + $label_array[ 'class' ] = str_replace( 'field-left-half', 'field-right-half', $label_array[ 'class' ] ); |
|
649 | 649 | } else { |
650 | - $label_array['class'] = str_replace( 'field-right-half', 'field-left-half', $label_array['class'] ); |
|
650 | + $label_array[ 'class' ] = str_replace( 'field-right-half', 'field-left-half', $label_array[ 'class' ] ); |
|
651 | 651 | } |
652 | 652 | } |
653 | 653 | |
654 | - switch( $type ) { |
|
654 | + switch ( $type ) { |
|
655 | 655 | |
656 | 656 | default: |
657 | 657 | case 'addr1': |
@@ -660,17 +660,17 @@ discard block |
||
660 | 660 | |
661 | 661 | |
662 | 662 | ?> |
663 | - <label for="<?php echo $field['merge']; ?>" data-attr-name="<?php echo esc_attr( $type ); ?>-field" <?php echo implode( ' ' , $label_array ); ?>> |
|
663 | + <label for="<?php echo $field[ 'merge' ]; ?>" data-attr-name="<?php echo esc_attr( $type ); ?>-field" <?php echo implode( ' ', $label_array ); ?>> |
|
664 | 664 | |
665 | 665 | <!-- dictate label visibility --> |
666 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
667 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
668 | - <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-'.$type.'-label' , esc_attr( $label ) ) ); ?> |
|
666 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
667 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
668 | + <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-' . $type . '-label', esc_attr( $label ) ) ); ?> |
|
669 | 669 | </span> |
670 | 670 | <?php } ?> |
671 | 671 | |
672 | 672 | |
673 | - <input <?php echo implode( ' ' , $field_array ); ?> type="text" value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } ?>"> |
|
673 | + <input <?php echo implode( ' ', $field_array ); ?> type="text" value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } ?>"> |
|
674 | 674 | |
675 | 675 | </label> |
676 | 676 | <?php |
@@ -680,16 +680,16 @@ discard block |
||
680 | 680 | case 'state': |
681 | 681 | |
682 | 682 | ?> |
683 | - <label for="<?php echo $field['merge']; ?>" <?php echo implode( ' ' , $label_array ); ?> data-attr-name="state-dropdown"<?php if( ! in_array( $default_country, array( 'US' ) ) ) { ?> style="display: none;"<?php } ?>> |
|
683 | + <label for="<?php echo $field[ 'merge' ]; ?>" <?php echo implode( ' ', $label_array ); ?> data-attr-name="state-dropdown"<?php if ( ! in_array( $default_country, array( 'US' ) ) ) { ?> style="display: none;"<?php } ?>> |
|
684 | 684 | |
685 | 685 | <!-- dictate label visibility --> |
686 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
687 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
688 | - <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-'.$type.'-label' , esc_attr( $label ) ) ); ?> |
|
686 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
687 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
688 | + <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-' . $type . '-label', esc_attr( $label ) ) ); ?> |
|
689 | 689 | </span> |
690 | 690 | <?php } ?> |
691 | 691 | |
692 | - <select <?php echo implode( ' ' , $field_array ); ?>> |
|
692 | + <select <?php echo implode( ' ', $field_array ); ?>> |
|
693 | 693 | <?php include( YIKES_MC_PATH . 'public/partials/shortcodes/templates/state-dropdown.php' ); ?> |
694 | 694 | </select> |
695 | 695 | |
@@ -702,15 +702,15 @@ discard block |
||
702 | 702 | case 'zip': |
703 | 703 | |
704 | 704 | ?> |
705 | - <label for="<?php echo $field['merge']; ?>" <?php echo implode( ' ' , $label_array ); ?> data-attr-name="zip-input"<?php if( ! in_array( $default_country, array( 'US', 'GB' ) ) ) { ?> style="display: none;"<?php } ?>> |
|
705 | + <label for="<?php echo $field[ 'merge' ]; ?>" <?php echo implode( ' ', $label_array ); ?> data-attr-name="zip-input"<?php if ( ! in_array( $default_country, array( 'US', 'GB' ) ) ) { ?> style="display: none;"<?php } ?>> |
|
706 | 706 | |
707 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
708 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
709 | - <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-'.$type.'-label' , esc_attr( $label ) ) ); ?> |
|
707 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
708 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
709 | + <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-' . $type . '-label', esc_attr( $label ) ) ); ?> |
|
710 | 710 | </span> |
711 | 711 | <?php } ?> |
712 | 712 | |
713 | - <input <?php echo implode( ' ' , $field_array ); ?> type="text" pattern="<?php echo apply_filters( 'yikes-mailchimp-zip-pattern', '\d{5,5}(-\d{4,4})?' ); ?>" title="<?php _e( '5 digit zip code, numbers only' , 'yikes-inc-easy-mailchimp-extender' ); ?>" value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } else { echo esc_attr( $default_value ); } ?>"> |
|
713 | + <input <?php echo implode( ' ', $field_array ); ?> type="text" pattern="<?php echo apply_filters( 'yikes-mailchimp-zip-pattern', '\d{5,5}(-\d{4,4})?' ); ?>" title="<?php _e( '5 digit zip code, numbers only', 'yikes-inc-easy-mailchimp-extender' ); ?>" value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } else { echo esc_attr( $default_value ); } ?>"> |
|
714 | 714 | |
715 | 715 | </label> |
716 | 716 | <?php |
@@ -748,16 +748,16 @@ discard block |
||
748 | 748 | $default_country = apply_filters( 'yikes-mailchimp-default-country-value', 'US' ); |
749 | 749 | ?> |
750 | 750 | |
751 | - <label for="<?php echo $field['merge']; ?>" data-attr-name="<?php echo esc_attr( $type ); ?>-field" <?php echo implode( ' ' , $label_array ); ?>> |
|
751 | + <label for="<?php echo $field[ 'merge' ]; ?>" data-attr-name="<?php echo esc_attr( $type ); ?>-field" <?php echo implode( ' ', $label_array ); ?>> |
|
752 | 752 | |
753 | 753 | <!-- dictate label visibility --> |
754 | - <?php if( !isset( $field['hide-label'] ) ) { ?> |
|
755 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
756 | - <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-'.$type.'-label' , esc_attr( $label ) ) ); ?> |
|
754 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
755 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
756 | + <?php echo ucwords( apply_filters( 'yikes-mailchimp-address-' . $type . '-label', esc_attr( $label ) ) ); ?> |
|
757 | 757 | </span> |
758 | 758 | <?php } ?> |
759 | 759 | |
760 | - <select <?php echo implode( ' ' , $field_array ); ?> onchange="checkCountry(this);return false;"> |
|
760 | + <select <?php echo implode( ' ', $field_array ); ?> onchange="checkCountry(this);return false;"> |
|
761 | 761 | <?php include( YIKES_MC_PATH . 'public/partials/shortcodes/templates/country-dropdown.php' ); ?> |
762 | 762 | </select> |
763 | 763 | </label> |
@@ -768,10 +768,10 @@ discard block |
||
768 | 768 | } |
769 | 769 | |
770 | 770 | // description |
771 | - if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
771 | + if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
772 | 772 | <p class="form-field-description"> |
773 | 773 | <small> |
774 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( trim( stripslashes( $field['description'] ) ) ), $form_id ); ?> |
|
774 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( trim( stripslashes( $field[ 'description' ] ) ) ), $form_id ); ?> |
|
775 | 775 | </small> |
776 | 776 | </p> |
777 | 777 | <?php } |
@@ -781,19 +781,19 @@ discard block |
||
781 | 781 | case 'birthday': |
782 | 782 | |
783 | 783 | // bootstrap datepicker requirements |
784 | - wp_enqueue_script( 'bootstrap-hover-dropdown' , YIKES_MC_URL . 'public/js/bootstrap-hover-dropdown.min.js' , array( 'jquery' ) ); |
|
785 | - wp_enqueue_script( 'bootstrap-datepicker-script' , YIKES_MC_URL . 'public/js/bootstrap-datepicker.min.js' , array( 'jquery' , 'bootstrap-hover-dropdown' ) ); |
|
786 | - wp_enqueue_style( 'bootstrap-datepicker-styles' , YIKES_MC_URL . 'public/css/bootstrap-datepicker3.standalone.min.css' ); |
|
787 | - wp_enqueue_style( 'override-datepicker-styles' , YIKES_MC_URL . 'public/css/yikes-inc-easy-mailchimp-datepicker-styles.css' , array( 'bootstrap-datepicker-styles' ) ); |
|
784 | + wp_enqueue_script( 'bootstrap-hover-dropdown', YIKES_MC_URL . 'public/js/bootstrap-hover-dropdown.min.js', array( 'jquery' ) ); |
|
785 | + wp_enqueue_script( 'bootstrap-datepicker-script', YIKES_MC_URL . 'public/js/bootstrap-datepicker.min.js', array( 'jquery', 'bootstrap-hover-dropdown' ) ); |
|
786 | + wp_enqueue_style( 'bootstrap-datepicker-styles', YIKES_MC_URL . 'public/css/bootstrap-datepicker3.standalone.min.css' ); |
|
787 | + wp_enqueue_style( 'override-datepicker-styles', YIKES_MC_URL . 'public/css/yikes-inc-easy-mailchimp-datepicker-styles.css', array( 'bootstrap-datepicker-styles' ) ); |
|
788 | 788 | |
789 | - switch ( $field['type'] ) { |
|
789 | + switch ( $field[ 'type' ] ) { |
|
790 | 790 | default: |
791 | 791 | case 'date': |
792 | - $date_format = ( isset( $field['date_format'] ) ) ? $field['date_format'] : 'mm/dd/yy'; |
|
792 | + $date_format = ( isset( $field[ 'date_format' ] ) ) ? $field[ 'date_format' ] : 'mm/dd/yy'; |
|
793 | 793 | break; |
794 | 794 | |
795 | 795 | case 'birthday': |
796 | - $date_format = ( isset( $field['date_format'] ) ) ? strtolower( $field['date_format'] ) : 'mm/dd'; |
|
796 | + $date_format = ( isset( $field[ 'date_format' ] ) ) ? strtolower( $field[ 'date_format' ] ) : 'mm/dd'; |
|
797 | 797 | break; |
798 | 798 | } |
799 | 799 | // initialize the datepicker |
@@ -804,7 +804,7 @@ discard block |
||
804 | 804 | padding: .85em .5em !important; |
805 | 805 | } |
806 | 806 | <?php |
807 | - if( wp_is_mobile() ) { |
|
807 | + if ( wp_is_mobile() ) { |
|
808 | 808 | ?> |
809 | 809 | .datepicker-dropdown { |
810 | 810 | margin-top: 0px; |
@@ -819,7 +819,7 @@ discard block |
||
819 | 819 | $day_names = $admin_class->yikes_jQuery_datepicker_strip_array_indices( $wp_locale->weekday ); |
820 | 820 | $day_names_short = $admin_class->yikes_jQuery_datepicker_strip_array_indices( $wp_locale->weekday_abbrev ); |
821 | 821 | $day_names_min = $admin_class->yikes_jQuery_datepicker_strip_array_indices( $wp_locale->weekday_initial ); |
822 | - $date_format = $admin_class->yikes_jQuery_datepicker_date_format_php_to_js( $date_format, $field['type'] ); |
|
822 | + $date_format = $admin_class->yikes_jQuery_datepicker_date_format_php_to_js( $date_format, $field[ 'type' ] ); |
|
823 | 823 | $first_day = get_option( 'start_of_week' ); |
824 | 824 | $isRTL = $wp_locale->is_rtl(); |
825 | 825 | ?> |
@@ -840,10 +840,10 @@ discard block |
||
840 | 840 | numberOfMonths: 1, |
841 | 841 | today: '<?php _e( 'Today', 'yikes-inc-easy-mailchimp-extender' ); ?>' |
842 | 842 | }; |
843 | - jQuery('input[data-attr-type="<?php echo $field['type']; ?>"]').datepicker().on( 'show', function( e ) { |
|
844 | - var date_picker_height = jQuery('input[data-attr-type="<?php echo $field['type']; ?>"]').css( 'height' ); |
|
843 | + jQuery('input[data-attr-type="<?php echo $field[ 'type' ]; ?>"]').datepicker().on( 'show', function( e ) { |
|
844 | + var date_picker_height = jQuery('input[data-attr-type="<?php echo $field[ 'type' ]; ?>"]').css( 'height' ); |
|
845 | 845 | date_picker_height = parseInt( date_picker_height.replace( 'px', '' ) ) + parseInt( 15 ) + 'px'; |
846 | - var date_picker_width = jQuery('input[data-attr-type="<?php echo $field['type']; ?>"]').css( 'width' ).replace( 'px', '' ); |
|
846 | + var date_picker_width = jQuery('input[data-attr-type="<?php echo $field[ 'type' ]; ?>"]').css( 'width' ).replace( 'px', '' ); |
|
847 | 847 | if( date_picker_width > 500 ) { |
848 | 848 | date_picker_width = 500; |
849 | 849 | } |
@@ -853,27 +853,27 @@ discard block |
||
853 | 853 | </script> |
854 | 854 | <?php |
855 | 855 | |
856 | - $default_value = ( isset( $field['default'] ) ? esc_attr( $field['default'] ) : '' ); |
|
856 | + $default_value = ( isset( $field[ 'default' ] ) ? esc_attr( $field[ 'default' ] ) : '' ); |
|
857 | 857 | // store empty number for looping |
858 | 858 | $x = 0; |
859 | 859 | |
860 | 860 | ?> |
861 | - <label for="<?php echo esc_attr( $field['merge'] ); ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
861 | + <label for="<?php echo esc_attr( $field[ 'merge' ] ); ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
862 | 862 | |
863 | 863 | <!-- dictate label visibility --> |
864 | - <?php if( !isset( $field['hide-label'] ) ) { ?> |
|
865 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
866 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
864 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
865 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
866 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
867 | 867 | </span> |
868 | 868 | <?php } ?> |
869 | 869 | |
870 | - <input <?php echo implode( ' ' , $field_array ); ?> type="text" <?php if( $field['type'] == 'date' ) { ?> data-attr-type="date" <?php } else { ?> data-attr-type="birthday" <?php } ?> value="<?php if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { echo $_POST[$field['merge']]; } else { echo esc_attr( $default_value ); } ?>"> |
|
870 | + <input <?php echo implode( ' ', $field_array ); ?> type="text" <?php if ( $field[ 'type' ] == 'date' ) { ?> data-attr-type="date" <?php } else { ?> data-attr-type="birthday" <?php } ?> value="<?php if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { echo $_POST[ $field[ 'merge' ] ]; } else { echo esc_attr( $default_value ); } ?>"> |
|
871 | 871 | |
872 | 872 | <!-- description --> |
873 | - <?php if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
873 | + <?php if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
874 | 874 | <p class="form-field-description"> |
875 | 875 | <small> |
876 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( trim( stripslashes( $field['description'] ) ) ), $form_id ); ?> |
|
876 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( trim( stripslashes( $field[ 'description' ] ) ) ), $form_id ); ?> |
|
877 | 877 | </small> |
878 | 878 | </p> |
879 | 879 | <?php } ?> |
@@ -884,36 +884,36 @@ discard block |
||
884 | 884 | break; |
885 | 885 | |
886 | 886 | case 'dropdown': |
887 | - $default_value = $field['default_choice']; |
|
887 | + $default_value = $field[ 'default_choice' ]; |
|
888 | 888 | // store empty number for looping |
889 | 889 | $x = 0; |
890 | 890 | // hidden labels |
891 | 891 | |
892 | 892 | ?> |
893 | - <label for="<?php echo esc_attr( $field['merge'] ); ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
893 | + <label for="<?php echo esc_attr( $field[ 'merge' ] ); ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
894 | 894 | <!-- dictate label visibility --> |
895 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
896 | - <span class="<?php echo esc_attr( $field['merge'] ) . '-label'; ?>"> |
|
897 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
895 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
896 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"> |
|
897 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
898 | 898 | </span> |
899 | 899 | <?php } ?> |
900 | 900 | |
901 | - <select <?php echo implode( ' ' , $field_array ); ?>> |
|
901 | + <select <?php echo implode( ' ', $field_array ); ?>> |
|
902 | 902 | <?php |
903 | 903 | // decode for looping |
904 | - $choices = json_decode( $field['choices'], true ); |
|
905 | - foreach( $choices as $choice ) { |
|
906 | - ?><option value="<?php echo $choice; ?>" <?php selected( $default_value , $x ); ?>><?php echo esc_attr( stripslashes( $choice ) ); ?></option><?php |
|
904 | + $choices = json_decode( $field[ 'choices' ], true ); |
|
905 | + foreach ( $choices as $choice ) { |
|
906 | + ?><option value="<?php echo $choice; ?>" <?php selected( $default_value, $x ); ?>><?php echo esc_attr( stripslashes( $choice ) ); ?></option><?php |
|
907 | 907 | $x++; |
908 | 908 | } |
909 | 909 | ?> |
910 | 910 | </select> |
911 | 911 | |
912 | 912 | <!-- description --> |
913 | - <?php if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
913 | + <?php if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
914 | 914 | <p class="form-field-description"> |
915 | 915 | <small> |
916 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( trim( stripslashes( $field['description'] ) ) ), $form_id ); ?> |
|
916 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( trim( stripslashes( $field[ 'description' ] ) ) ), $form_id ); ?> |
|
917 | 917 | </small> |
918 | 918 | </p> |
919 | 919 | <?php } ?> |
@@ -927,13 +927,13 @@ discard block |
||
927 | 927 | case 'radio': |
928 | 928 | case 'checkbox': |
929 | 929 | // remove the ID (as to not assign the same ID to every radio button) |
930 | - unset( $field_array['id'] ); |
|
931 | - $choices = json_decode( $field['choices'], true ); |
|
930 | + unset( $field_array[ 'id' ] ); |
|
931 | + $choices = json_decode( $field[ 'choices' ], true ); |
|
932 | 932 | // assign a default choice |
933 | - $default_value = ( isset( $field['default_choice'] ) && $field['default_choice'] != '' ) ? $field['default_choice'] : $choices[0]; |
|
933 | + $default_value = ( isset( $field[ 'default_choice' ] ) && $field[ 'default_choice' ] != '' ) ? $field[ 'default_choice' ] : $choices[ 0 ]; |
|
934 | 934 | // if the form was submit, but failed, let's reset the post data |
935 | - if( isset( $_POST[$field['merge']] ) && $form_submitted != 1 ) { |
|
936 | - $default_value = $_POST[$field['merge']]; |
|
935 | + if ( isset( $_POST[ $field[ 'merge' ] ] ) && $form_submitted != 1 ) { |
|
936 | + $default_value = $_POST[ $field[ 'merge' ] ]; |
|
937 | 937 | } |
938 | 938 | $count = count( $choices ); |
939 | 939 | $i = 1; |
@@ -942,20 +942,20 @@ discard block |
||
942 | 942 | // hidden labels |
943 | 943 | |
944 | 944 | ?> |
945 | - <label for="<?php echo esc_attr( $field['merge'] ); ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
945 | + <label for="<?php echo esc_attr( $field[ 'merge' ] ); ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
946 | 946 | |
947 | 947 | <!-- dictate label visibility --> |
948 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
949 | - <span class="<?php echo esc_attr( $field['merge'] ). '-label'; ?> checkbox-parent-label"> |
|
950 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['merge'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
948 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
949 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?> checkbox-parent-label"> |
|
950 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
951 | 951 | </span> |
952 | 952 | <?php } |
953 | 953 | |
954 | - foreach( $choices as $choice ) { |
|
954 | + foreach ( $choices as $choice ) { |
|
955 | 955 | ?> |
956 | - <label for="<?php echo esc_attr( $field['merge'] ) . '-' . $i; ?>" class="yikes-easy-mc-checkbox-label <?php echo implode( ' ' , $custom_classes ); if( $i === $count ) { ?> last-selection<?php } ?>" <?php if( $i == 1 ) { echo $field_array['required']; } ?>> |
|
957 | - <input type="<?php echo esc_attr( $field['type'] ); ?>" name="<?php echo $field['merge']; ?>" id="<?php echo $field['merge'] . '-' . $i; ?>" <?php checked( $default_value , $x ); ?> value="<?php echo esc_attr( $choice ); ?>"> |
|
958 | - <span class="<?php echo esc_attr( $field['merge'] ). '-label'; ?>"><?php echo stripslashes( $choice ); ?></span> |
|
956 | + <label for="<?php echo esc_attr( $field[ 'merge' ] ) . '-' . $i; ?>" class="yikes-easy-mc-checkbox-label <?php echo implode( ' ', $custom_classes ); if ( $i === $count ) { ?> last-selection<?php } ?>" <?php if ( $i == 1 ) { echo $field_array[ 'required' ]; } ?>> |
|
957 | + <input type="<?php echo esc_attr( $field[ 'type' ] ); ?>" name="<?php echo $field[ 'merge' ]; ?>" id="<?php echo $field[ 'merge' ] . '-' . $i; ?>" <?php checked( $default_value, $x ); ?> value="<?php echo esc_attr( $choice ); ?>"> |
|
958 | + <span class="<?php echo esc_attr( $field[ 'merge' ] ) . '-label'; ?>"><?php echo stripslashes( $choice ); ?></span> |
|
959 | 959 | </label> |
960 | 960 | <?php |
961 | 961 | $i++; |
@@ -963,10 +963,10 @@ discard block |
||
963 | 963 | } |
964 | 964 | |
965 | 965 | // description |
966 | - if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
966 | + if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
967 | 967 | <p class="form-field-description"> |
968 | 968 | <small> |
969 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['merge'] . '-description', esc_attr( trim( stripslashes( $field['description'] ) ) ), $form_id ); ?> |
|
969 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'merge' ] . '-description', esc_attr( trim( stripslashes( $field[ 'description' ] ) ) ), $form_id ); ?> |
|
970 | 970 | </small> |
971 | 971 | </p> |
972 | 972 | <?php } ?> |
@@ -982,26 +982,26 @@ discard block |
||
982 | 982 | |
983 | 983 | |
984 | 984 | // store default choice |
985 | - $default_choice = ( isset( $field['default_choice'] ) && ! empty( $field['default_choice'] ) ) ? ( is_array( $field['default_choice'] ) ? $field['default_choice'] : $field['default_choice'] ) : ( isset( $field['default_choice'] ) ? $field['default_choice'] : '' ); |
|
985 | + $default_choice = ( isset( $field[ 'default_choice' ] ) && ! empty( $field[ 'default_choice' ] ) ) ? ( is_array( $field[ 'default_choice' ] ) ? $field[ 'default_choice' ] : $field[ 'default_choice' ] ) : ( isset( $field[ 'default_choice' ] ) ? $field[ 'default_choice' ] : '' ); |
|
986 | 986 | |
987 | 987 | // if the form was submit, but failed, let's reset the post data |
988 | - if( isset( $_POST[$field['group_id']] ) && $form_submitted != 1 ) { |
|
989 | - $default_choice = $_POST[$field['group_id']]; |
|
988 | + if ( isset( $_POST[ $field[ 'group_id' ] ] ) && $form_submitted != 1 ) { |
|
989 | + $default_choice = $_POST[ $field[ 'group_id' ] ]; |
|
990 | 990 | } |
991 | 991 | |
992 | 992 | // get our groups |
993 | - $groups = ( isset( $field['groups'] ) && ! empty( $field['groups'] ) ) ? json_decode( $field['groups'], true ) : array(); |
|
993 | + $groups = ( isset( $field[ 'groups' ] ) && ! empty( $field[ 'groups' ] ) ) ? json_decode( $field[ 'groups' ], true ) : array(); |
|
994 | 994 | |
995 | 995 | $count = count( $groups ); |
996 | 996 | |
997 | - if( $field['type'] == 'checkboxes' ) { |
|
997 | + if ( $field[ 'type' ] == 'checkboxes' ) { |
|
998 | 998 | $type = 'checkbox'; |
999 | - } else if( $field['type'] == 'radio' ) { |
|
999 | + } else if ( $field[ 'type' ] == 'radio' ) { |
|
1000 | 1000 | $type = 'radio'; |
1001 | 1001 | } |
1002 | 1002 | |
1003 | 1003 | // loop over the interest group field types |
1004 | - switch ( $field['type'] ) { |
|
1004 | + switch ( $field[ 'type' ] ) { |
|
1005 | 1005 | |
1006 | 1006 | case 'checkboxes': |
1007 | 1007 | case 'radio': |
@@ -1009,18 +1009,18 @@ discard block |
||
1009 | 1009 | $x = 1; // used to find the last item of our array |
1010 | 1010 | |
1011 | 1011 | ?> |
1012 | - <label for="<?php echo esc_attr( $field['group_id'] ); ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
1013 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
1012 | + <label for="<?php echo esc_attr( $field[ 'group_id' ] ); ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
1013 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
1014 | 1014 | <!-- dictate label visibility --> |
1015 | - <span class="<?php echo esc_attr( $field['group_id'] ) . '-label'; ?> checkbox-parent-label"> |
|
1016 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['group_id'].'-label' , esc_attr( $field['label'] ) ); ?> |
|
1015 | + <span class="<?php echo esc_attr( $field[ 'group_id' ] ) . '-label'; ?> checkbox-parent-label"> |
|
1016 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'group_id' ] . '-label', esc_attr( $field[ 'label' ] ) ); ?> |
|
1017 | 1017 | </span> |
1018 | 1018 | <?php |
1019 | 1019 | } |
1020 | 1020 | |
1021 | 1021 | // Display Submission Errors |
1022 | - if( ! empty( $missing_required_checkbox_interest_groups ) ) { |
|
1023 | - if( in_array( $field['group_id'], $missing_required_checkbox_interest_groups ) ) { |
|
1022 | + if ( ! empty( $missing_required_checkbox_interest_groups ) ) { |
|
1023 | + if ( in_array( $field[ 'group_id' ], $missing_required_checkbox_interest_groups ) ) { |
|
1024 | 1024 | ?> |
1025 | 1025 | <p class="yikes-mailchimp-required-interest-group-error"> |
1026 | 1026 | <?php echo apply_filters( 'yikes-mailchimp-interest-group-checkbox-error', __( 'This field is required.', 'yikes-inc-easy-mailchimp-extender' ), $form_id ); ?> |
@@ -1031,19 +1031,19 @@ discard block |
||
1031 | 1031 | |
1032 | 1032 | |
1033 | 1033 | |
1034 | - foreach( $groups as $group ) { |
|
1035 | - if( $field['type'] == 'checkboxes' ) { |
|
1034 | + foreach ( $groups as $group ) { |
|
1035 | + if ( $field[ 'type' ] == 'checkboxes' ) { |
|
1036 | 1036 | /* Setup the defaults for this field - varies if the field was previously submitted */ |
1037 | - if( isset( $_POST[$field['group_id']] ) && $form_submitted != 1 ) { |
|
1038 | - $default_choice = $_POST[$field['group_id']]; |
|
1039 | - } elseif( ( ! isset( $_POST['yikes-mailchimp-honeypot'] ) && $form_submitted != 1 ) || ( isset( $_POST['yikes-mailchimp-honeypot'] ) && $form_submitted == 1 ) ) { |
|
1040 | - $default_choice = ( isset( $field['default_choice'] ) && ! empty( $field['default_choice'] ) ) ? ( is_array( $field['default_choice'] ) ? $field['default_choice'] : $field['default_choice'] ) : array(); |
|
1037 | + if ( isset( $_POST[ $field[ 'group_id' ] ] ) && $form_submitted != 1 ) { |
|
1038 | + $default_choice = $_POST[ $field[ 'group_id' ] ]; |
|
1039 | + } elseif ( ( ! isset( $_POST[ 'yikes-mailchimp-honeypot' ] ) && $form_submitted != 1 ) || ( isset( $_POST[ 'yikes-mailchimp-honeypot' ] ) && $form_submitted == 1 ) ) { |
|
1040 | + $default_choice = ( isset( $field[ 'default_choice' ] ) && ! empty( $field[ 'default_choice' ] ) ) ? ( is_array( $field[ 'default_choice' ] ) ? $field[ 'default_choice' ] : $field[ 'default_choice' ] ) : array(); |
|
1041 | 1041 | } |
1042 | 1042 | } |
1043 | 1043 | ?> |
1044 | - <label for="<?php echo $field['group_id'] . '-' . $i; ?>" class="yikes-easy-mc-checkbox-label <?php echo implode( ' ' , $custom_classes ); if( $x === $count ) { ?> last-selection<?php } ?>"> |
|
1045 | - <input <?php if( isset( $field['require'] ) && $field['require'] == 1 ) { ?> class="yikes-interest-group-required" <?php } ?> type="<?php echo $type; ?>" name="<?php echo $field['group_id']; ?>[]" id="<?php echo $field['group_id'] . '-' . $i; ?>" <?php if( $field['type'] == 'checkboxes' ) { if( ( ( isset( $_POST['yikes-mailchimp-honeypot' ] ) && $form_submitted == 1 && in_array( $i , $default_choice )) || ! isset( $_POST['yikes-mailchimp-honeypot' ] ) && $form_submitted != 1 && in_array( $i , $default_choice ) ) || ( ( $form_submitted != 1 && isset( $_POST[$field['group_id']] ) ) && in_array( esc_attr( $group['name'] ), $default_choice ) ) ) { echo 'checked="checked"'; } } else { checked( ( isset( $default_choice ) && is_array( $default_choice ) ) ? $default_choice[0] : $default_choice , $i ); } ?> value="<?php echo esc_attr( $group['name'] ); ?>"> |
|
1046 | - <?php echo $group['name']; ?> |
|
1044 | + <label for="<?php echo $field[ 'group_id' ] . '-' . $i; ?>" class="yikes-easy-mc-checkbox-label <?php echo implode( ' ', $custom_classes ); if ( $x === $count ) { ?> last-selection<?php } ?>"> |
|
1045 | + <input <?php if ( isset( $field[ 'require' ] ) && $field[ 'require' ] == 1 ) { ?> class="yikes-interest-group-required" <?php } ?> type="<?php echo $type; ?>" name="<?php echo $field[ 'group_id' ]; ?>[]" id="<?php echo $field[ 'group_id' ] . '-' . $i; ?>" <?php if ( $field[ 'type' ] == 'checkboxes' ) { if ( ( ( isset( $_POST[ 'yikes-mailchimp-honeypot' ] ) && $form_submitted == 1 && in_array( $i, $default_choice ) ) || ! isset( $_POST[ 'yikes-mailchimp-honeypot' ] ) && $form_submitted != 1 && in_array( $i, $default_choice ) ) || ( ( $form_submitted != 1 && isset( $_POST[ $field[ 'group_id' ] ] ) ) && in_array( esc_attr( $group[ 'name' ] ), $default_choice ) ) ) { echo 'checked="checked"'; } } else { checked( ( isset( $default_choice ) && is_array( $default_choice ) ) ? $default_choice[ 0 ] : $default_choice, $i ); } ?> value="<?php echo esc_attr( $group[ 'name' ] ); ?>"> |
|
1046 | + <?php echo $group[ 'name' ]; ?> |
|
1047 | 1047 | </label> |
1048 | 1048 | <?php |
1049 | 1049 | $i++; |
@@ -1051,10 +1051,10 @@ discard block |
||
1051 | 1051 | } |
1052 | 1052 | |
1053 | 1053 | // description |
1054 | - if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
1054 | + if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
1055 | 1055 | <p class="form-field-description"> |
1056 | 1056 | <small> |
1057 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['group_id'] . '-description', esc_attr( trim( $field['description'] ) ), $form_id ); ?> |
|
1057 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'group_id' ] . '-description', esc_attr( trim( $field[ 'description' ] ) ), $form_id ); ?> |
|
1058 | 1058 | </small> |
1059 | 1059 | </p> |
1060 | 1060 | <?php } ?> |
@@ -1068,28 +1068,28 @@ discard block |
||
1068 | 1068 | |
1069 | 1069 | ?> |
1070 | 1070 | |
1071 | - <label for="<?php echo esc_attr( $field['group_id'] ); ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
1071 | + <label for="<?php echo esc_attr( $field[ 'group_id' ] ); ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
1072 | 1072 | <!-- dictate label visibility --> |
1073 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
1074 | - <span class="<?php echo esc_attr( $field['group_id'] ) . '-label'; ?>"> |
|
1075 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['group_id'].'-label' , esc_attr( $field['label'] ) ); ?> |
|
1073 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
1074 | + <span class="<?php echo esc_attr( $field[ 'group_id' ] ) . '-label'; ?>"> |
|
1075 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'group_id' ] . '-label', esc_attr( $field[ 'label' ] ) ); ?> |
|
1076 | 1076 | </span> |
1077 | 1077 | <?php } ?> |
1078 | 1078 | |
1079 | - <select <?php echo implode( ' ' , $field_array ); ?>> |
|
1079 | + <select <?php echo implode( ' ', $field_array ); ?>> |
|
1080 | 1080 | <?php |
1081 | 1081 | $i = 0; |
1082 | - foreach( $groups as $group ) { |
|
1083 | - ?><option <?php selected( $i , $default_choice ); ?> value="<?php echo $group['name']; ?>"><?php echo esc_attr( $group['name'] ); ?></option><?php |
|
1082 | + foreach ( $groups as $group ) { |
|
1083 | + ?><option <?php selected( $i, $default_choice ); ?> value="<?php echo $group[ 'name' ]; ?>"><?php echo esc_attr( $group[ 'name' ] ); ?></option><?php |
|
1084 | 1084 | $i++; |
1085 | 1085 | } |
1086 | 1086 | ?> |
1087 | 1087 | </select> |
1088 | 1088 | |
1089 | - <?php if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
1089 | + <?php if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
1090 | 1090 | <p class="form-field-description"> |
1091 | 1091 | <small> |
1092 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['group_id'] . '-description', esc_attr( trim( $field['description'] ) ), $form_id ); ?> |
|
1092 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'group_id' ] . '-description', esc_attr( trim( $field[ 'description' ] ) ), $form_id ); ?> |
|
1093 | 1093 | </small> |
1094 | 1094 | </p> |
1095 | 1095 | <?php } ?> |
@@ -1106,21 +1106,21 @@ discard block |
||
1106 | 1106 | |
1107 | 1107 | ?> |
1108 | 1108 | |
1109 | - <label for="<?php echo esc_attr( $field['group_id'] ); ?>" <?php echo implode( ' ' , $label_array ); ?>> |
|
1109 | + <label for="<?php echo esc_attr( $field[ 'group_id' ] ); ?>" <?php echo implode( ' ', $label_array ); ?>> |
|
1110 | 1110 | |
1111 | 1111 | <!-- dictate label visibility --> |
1112 | - <?php if( ! isset( $field['hide-label'] ) ) { ?> |
|
1113 | - <span class="<?php echo esc_attr( $field['group_id'] ) . '-label'; ?> checkbox-parent-label" style="display:none;"> |
|
1114 | - <?php echo apply_filters( 'yikes-mailchimp-'.$field['group_id'].'-label' , esc_attr( stripslashes( $field['label'] ) ) ); ?> |
|
1112 | + <?php if ( ! isset( $field[ 'hide-label' ] ) ) { ?> |
|
1113 | + <span class="<?php echo esc_attr( $field[ 'group_id' ] ) . '-label'; ?> checkbox-parent-label" style="display:none;"> |
|
1114 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'group_id' ] . '-label', esc_attr( stripslashes( $field[ 'label' ] ) ) ); ?> |
|
1115 | 1115 | </span> |
1116 | 1116 | <?php } |
1117 | 1117 | |
1118 | 1118 | |
1119 | - foreach( $groups as $group ) { |
|
1119 | + foreach ( $groups as $group ) { |
|
1120 | 1120 | ?> |
1121 | - <label for="<?php echo $field['group_id'] . '-' . $i; ?>" class="yikes-easy-mc-checkbox-label <?php echo implode( ' ' , $custom_classes ); if( $x === $count ) { ?> last-selection<?php } ?>" style="display:none;"> |
|
1122 | - <input type="radio" name="<?php echo $field['group_id']; ?>[]" id="<?php echo $field['group_id'] . '-' . $i; ?>" <?php if( $field['type'] == 'checkboxes' ) { if( in_array( $i , $default_choice ) ) { echo 'checked="checked"'; } } else { checked( ( isset( $default_choice ) && is_array( $default_choice ) ) ? $default_choice[0] : $default_choice , $i ); } ?> value="<?php echo esc_attr( $group['name'] ); ?>"> |
|
1123 | - <?php echo esc_attr( stripslashes( str_replace( '' , '\'', $group['name'] ) ) ); ?> |
|
1121 | + <label for="<?php echo $field[ 'group_id' ] . '-' . $i; ?>" class="yikes-easy-mc-checkbox-label <?php echo implode( ' ', $custom_classes ); if ( $x === $count ) { ?> last-selection<?php } ?>" style="display:none;"> |
|
1122 | + <input type="radio" name="<?php echo $field[ 'group_id' ]; ?>[]" id="<?php echo $field[ 'group_id' ] . '-' . $i; ?>" <?php if ( $field[ 'type' ] == 'checkboxes' ) { if ( in_array( $i, $default_choice ) ) { echo 'checked="checked"'; } } else { checked( ( isset( $default_choice ) && is_array( $default_choice ) ) ? $default_choice[ 0 ] : $default_choice, $i ); } ?> value="<?php echo esc_attr( $group[ 'name' ] ); ?>"> |
|
1123 | + <?php echo esc_attr( stripslashes( str_replace( '', '\'', $group[ 'name' ] ) ) ); ?> |
|
1124 | 1124 | </label> |
1125 | 1125 | <?php |
1126 | 1126 | $i++; |
@@ -1128,10 +1128,10 @@ discard block |
||
1128 | 1128 | } |
1129 | 1129 | |
1130 | 1130 | // description |
1131 | - if( isset( $field['description'] ) && trim( $field['description'] ) != '' ) { ?> |
|
1131 | + if ( isset( $field[ 'description' ] ) && trim( $field[ 'description' ] ) != '' ) { ?> |
|
1132 | 1132 | <p class="form-field-description"> |
1133 | 1133 | <small> |
1134 | - <?php echo apply_filters( 'yikes-mailchimp-' . $field['group_id'] . '-description', esc_attr( trim( stripslashes( $field['description'] ) ) ), $form_id ); ?> |
|
1134 | + <?php echo apply_filters( 'yikes-mailchimp-' . $field[ 'group_id' ] . '-description', esc_attr( trim( stripslashes( $field[ 'description' ] ) ) ), $form_id ); ?> |
|
1135 | 1135 | </small> |
1136 | 1136 | </p> |
1137 | 1137 | <?php } |
@@ -1148,11 +1148,11 @@ discard block |
||
1148 | 1148 | do_action( 'yikes-mailchimp-additional-form-fields', $form_data ); |
1149 | 1149 | |
1150 | 1150 | /* if we've enabled reCAPTCHA protection */ |
1151 | - if( isset( $recaptcha_box ) ) { |
|
1151 | + if ( isset( $recaptcha_box ) ) { |
|
1152 | 1152 | echo $recaptcha_box; |
1153 | 1153 | } |
1154 | - if( is_user_logged_in() ) { |
|
1155 | - $admin_class = ( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access' , 'manage_options' ) ) ) ? ' admin-logged-in' : ''; |
|
1154 | + if ( is_user_logged_in() ) { |
|
1155 | + $admin_class = ( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access', 'manage_options' ) ) ) ? ' admin-logged-in' : ''; |
|
1156 | 1156 | } else { |
1157 | 1157 | $admin_class = ''; |
1158 | 1158 | } |
@@ -1162,27 +1162,27 @@ discard block |
||
1162 | 1162 | <input type="hidden" name="yikes-mailchimp-honeypot" id="yikes-mailchimp-honeypot" value=""> |
1163 | 1163 | |
1164 | 1164 | <!-- List ID --> |
1165 | - <input type="hidden" name="yikes-mailchimp-associated-list-id" id="yikes-mailchimp-associated-list-id" value="<?php echo $form_settings['list_id']; ?>"> |
|
1165 | + <input type="hidden" name="yikes-mailchimp-associated-list-id" id="yikes-mailchimp-associated-list-id" value="<?php echo $form_settings[ 'list_id' ]; ?>"> |
|
1166 | 1166 | |
1167 | 1167 | <!-- Form that is being submitted! Used to display error/success messages above the correct form --> |
1168 | 1168 | <input type="hidden" name="yikes-mailchimp-submitted-form" id="yikes-mailchimp-submitted-form" value="<?php echo $form_id; ?>"> |
1169 | 1169 | |
1170 | 1170 | <!-- Submit Button --> |
1171 | 1171 | <?php |
1172 | - if( $form_inline ) { |
|
1172 | + if ( $form_inline ) { |
|
1173 | 1173 | $submit_button_label_classes = array( 'empty-label' ); |
1174 | 1174 | if ( $hidden_label ) { |
1175 | - $submit_button_label_classes[] = 'labels-hidden'; |
|
1175 | + $submit_button_label_classes[ ] = 'labels-hidden'; |
|
1176 | 1176 | } |
1177 | 1177 | echo '<label class="empty-form-inline-label submit-button-inline-label"><span class="' . explode( ' ', $submit_button_label_classes ) . '"> </span>'; |
1178 | 1178 | } |
1179 | 1179 | // display the image or text based button |
1180 | - if( $submit_button_type == 'text' ) { |
|
1181 | - echo apply_filters( 'yikes-mailchimp-form-submit-button', '<button type="submit" class="' . apply_filters( 'yikes-mailchimp-form-submit-button-classes', 'yikes-easy-mc-submit-button yikes-easy-mc-submit-button-' . esc_attr( $form_data['id'] ) . ' btn btn-primary' . $submit_button_classes . $admin_class, $form_data['id'] ) . '">' . apply_filters( 'yikes-mailchimp-form-submit-button-text', esc_attr( stripslashes( $submit ) ), $form_data['id'] ) . '</button>', $form_data['id'] ); |
|
1180 | + if ( $submit_button_type == 'text' ) { |
|
1181 | + echo apply_filters( 'yikes-mailchimp-form-submit-button', '<button type="submit" class="' . apply_filters( 'yikes-mailchimp-form-submit-button-classes', 'yikes-easy-mc-submit-button yikes-easy-mc-submit-button-' . esc_attr( $form_data[ 'id' ] ) . ' btn btn-primary' . $submit_button_classes . $admin_class, $form_data[ 'id' ] ) . '">' . apply_filters( 'yikes-mailchimp-form-submit-button-text', esc_attr( stripslashes( $submit ) ), $form_data[ 'id' ] ) . '</button>', $form_data[ 'id' ] ); |
|
1182 | 1182 | } else { |
1183 | - echo apply_filters( 'yikes-mailchimp-form-submit-button', '<input type="image" alt="' . apply_filters( 'yikes-mailchimp-form-submit-button-text', esc_attr( stripslashes( $submit ) ), $form_data['id'] ) . '" src="' . $submit_button_image . '" class="' . apply_filters( 'yikes-mailchimp-form-submit-button-classes', 'yikes-easy-mc-submit-button yikes-easy-mc-submit-button-image yikes-easy-mc-submit-button-' . esc_attr( $form_data['id'] ) . ' btn btn-primary' . $submit_button_classes . $admin_class, $form_data['id'] ) . '">', $form_data['id'] ); |
|
1183 | + echo apply_filters( 'yikes-mailchimp-form-submit-button', '<input type="image" alt="' . apply_filters( 'yikes-mailchimp-form-submit-button-text', esc_attr( stripslashes( $submit ) ), $form_data[ 'id' ] ) . '" src="' . $submit_button_image . '" class="' . apply_filters( 'yikes-mailchimp-form-submit-button-classes', 'yikes-easy-mc-submit-button yikes-easy-mc-submit-button-image yikes-easy-mc-submit-button-' . esc_attr( $form_data[ 'id' ] ) . ' btn btn-primary' . $submit_button_classes . $admin_class, $form_data[ 'id' ] ) . '">', $form_data[ 'id' ] ); |
|
1184 | 1184 | } |
1185 | - if( $form_inline ) { |
|
1185 | + if ( $form_inline ) { |
|
1186 | 1186 | echo '</label>'; |
1187 | 1187 | } |
1188 | 1188 | ?> |
@@ -1194,8 +1194,8 @@ discard block |
||
1194 | 1194 | |
1195 | 1195 | <?php |
1196 | 1196 | /* If the current user is logged in, and an admin...lets display our 'Edit Form' link */ |
1197 | - if( is_user_logged_in() ) { |
|
1198 | - if( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access' , 'manage_options' ) ) ) { |
|
1197 | + if ( is_user_logged_in() ) { |
|
1198 | + if ( current_user_can( apply_filters( 'yikes-mailchimp-user-role-access', 'manage_options' ) ) ) { |
|
1199 | 1199 | echo $edit_form_link; |
1200 | 1200 | } |
1201 | 1201 | } |
@@ -1210,16 +1210,16 @@ discard block |
||
1210 | 1210 | * Update the impressions count |
1211 | 1211 | * for non-admins |
1212 | 1212 | */ |
1213 | - if( !current_user_can( 'manage_options' ) ) { |
|
1214 | - $form_data['impressions']++; |
|
1213 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
1214 | + $form_data[ 'impressions' ]++; |
|
1215 | 1215 | $wpdb->update( |
1216 | 1216 | $wpdb->prefix . 'yikes_easy_mc_forms', |
1217 | 1217 | array( |
1218 | - 'impressions' => $form_data['impressions'], |
|
1218 | + 'impressions' => $form_data[ 'impressions' ], |
|
1219 | 1219 | ), |
1220 | 1220 | array( 'ID' => $form ), |
1221 | 1221 | array( |
1222 | - '%d', // send welcome email |
|
1222 | + '%d', // send welcome email |
|
1223 | 1223 | ), |
1224 | 1224 | array( '%d' ) |
1225 | 1225 | ); |