PluginProbe ʕ •ᴥ•ʔ
Hustle – Email Marketing, Lead Generation, Optins, Popups / 7.8.14.1
Hustle – Email Marketing, Lead Generation, Optins, Popups v7.8.14.1
7.8.14 7.8.14.1 7.8.13 7.8.13.1 trunk 3.0 3.1 3.1.1 3.1.2 3.1.3 3.1.4 4.3.2 4.4.4 4.4.5 4.4.5.1 4.4.5.4 4.6 4.6.1.1 4.6.1.4 4.7.0.2 4.7.0.3 4.7.0.7 4.7.0.9 4.7.1.0 4.7.1.1 4.8.0.0 5.0.0 5.0.1 5.0.1.1 5.0.1.2 5.1 5.1.1 5.1.2 5.1.3 5.1.3.1 5.1.3.2 5.1.4 5.1.5 6.0 6.0.1 6.0.2 6.0.3 6.0.4.2 6.0.5 6.0.6.1 6.0.7 6.0.8.1 6.0.9 7.0.0.1 7.0.2 7.0.3 7.0.4 7.1.0 7.1.1 7.2.0 7.2.1 7.3.0 7.3.1 7.3.3 7.3.5 7.3.6 7.3.7 7.4.0 7.4.1 7.4.11 7.4.13 7.4.13.1 7.4.2 7.4.3 7.4.4 7.4.5 7.4.5.1 7.4.5.2 7.4.6 7.4.7 7.5.0 7.6.0 7.6.1 7.6.3 7.6.4 7.6.6 7.7.0 7.7.1 7.8.0 7.8.1 7.8.10 7.8.10.1 7.8.10.2 7.8.11 7.8.12 7.8.12.1 7.8.2 7.8.3 7.8.4 7.8.5 7.8.6 7.8.7 7.8.8 7.8.9 7.8.9.1 7.8.9.2 7.8.9.3
wordpress-popup / inc / providers / mailchimp / views / front-fields-template.php
wordpress-popup / inc / providers / mailchimp / views Last commit date
front-fields-template.php 3 years ago
front-fields-template.php
128 lines
1 <?php
2 /**
3 * Front field template
4 *
5 * @package Hustle
6 */
7
8 global $wp_locale;
9
10 $is_rtl = $wp_locale->is_rtl();
11
12 $display_none = 'hidden' === $group_type ? ' style="display:none;"' : '';
13 ?>
14 <div class="hustle-form-options"<?php echo esc_html( $display_none ); ?>>
15
16 <input
17 type="hidden"
18 name="mailchimp_group_id"
19 class="mailchimp_group_id"
20 value="<?php echo esc_attr( $group_id ); ?>"
21 />
22
23 <?php if ( 'hidden' !== $group_type ) : ?>
24
25 <span class="hustle-group-title"><?php echo esc_html( $group_name ); ?></span>
26
27 <?php if ( 'checkboxes' === $group_type ) { ?>
28
29 <?php foreach ( $interest_options as $option_id => $option_name ) { ?>
30
31 <label
32 for="hustle-module-<?php echo esc_attr( $module_id ); ?>-checkbox-option-<?php echo esc_attr( $option_id ); ?>"
33 class="hustle-checkbox hustle-checkbox-inline"
34 >
35
36 <input
37 type="checkbox"
38 name="mailchimp_group_interest[]"
39 value="<?php echo esc_attr( $option_id ); ?>"
40 id="hustle-module-<?php echo esc_attr( $module_id ); ?>-checkbox-option-<?php echo esc_attr( $option_id ); ?>"
41 <?php checked( in_array( $option_id, $selected_interest, true ) ); ?>
42 />
43
44 <span aria-hidden="true"></span>
45
46 <span><?php echo esc_attr( $option_name ); ?></span>
47
48 </label>
49
50 <?php } ?>
51
52 <?php } elseif ( 'radio' === $group_type ) { ?>
53
54 <?php foreach ( $interest_options as $option_id => $option_name ) { ?>
55
56 <label
57 for="hustle-module-<?php echo esc_attr( $module_id ); ?>-radio-option-<?php echo esc_attr( $option_id ); ?>"
58 class="hustle-radio hustle-radio-inline"
59 >
60
61 <input
62 type="radio"
63 name="mailchimp_group_interest[]"
64 value="<?php echo esc_attr( $option_id ); ?>"
65 id="hustle-module-<?php echo esc_attr( $module_id ); ?>-radio-option-<?php echo esc_attr( $option_id ); ?>"
66 <?php checked( $option_id, $selected_interest ); ?>
67 />
68
69 <span aria-hidden="true"></span>
70
71 <span><?php echo esc_attr( $option_name ); ?></span>
72
73 </label>
74
75 <?php } ?>
76
77 <?php } elseif ( 'dropdown' === $group_type ) { ?>
78
79 <select
80 name="mailchimp_group_interest"
81 class="hustle-select2"
82 data-rtl-support=<?php echo ( ! $is_rtl ) ? 'false' : 'true'; ?>
83 data-language="en"
84 data-placeholder="<?php echo esc_attr( $dropdown_placeholder ); ?>"
85 >
86
87 <?php
88 /**
89 * Placeholder
90 * If no option is pre-selected a placeholder will be shown
91 *
92 * @since 4.0.3
93 */
94 ?>
95 <option value=""></option>
96
97 <?php foreach ( $interest_options as $option_id => $option_name ) { ?>
98
99 <option
100 value="<?php echo esc_attr( $option_id ); ?>"
101 id="hustle-module-<?php echo esc_attr( $module_id ); ?>-dropdown-option-<?php echo esc_attr( $option_id ); ?>"
102 <?php selected( $selected_interest, $option_id ); ?>
103 >
104 <?php echo esc_attr( $option_name ); ?>
105 </option>
106
107 <?php } ?>
108
109 </select>
110
111 <?php } ?>
112
113 <?php else : ?>
114
115 <?php if ( isset( $interest_options[ $selected_interest ] ) ) : ?>
116
117 <input
118 type="hidden"
119 name="mailchimp_group_interest"
120 value="<?php echo esc_attr( $selected_interest ); ?>"
121 />
122
123 <?php endif; ?>
124
125 <?php endif; ?>
126
127 </div>
128