PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.32.49
E2Pdf – Export Pdf Tool for WordPress v1.32.49
1.32.51 1.32.49 1.32.48 1.32.43 1.32.40 1.32.34 1.32.32 1.32.31 1.32.26 1.32.22 1.32.23 1.32.18 1.32.17 1.32.15 trunk 1.00.00 1.00.13 1.01.01 1.02.02 1.03.07 1.04.07 1.05.03 1.06.02 1.07.11 1.08.00 All 73 releases
← All changes | classes/extension/e2pdf-forminator.php +2985 -1270 1.02.02 → 1.32.49 View file →
@@ -1,14 +1,12 @@
1 1 <?php
2 2
3 3 /**
4 - * E2pdf Forminator Extension
5 - *
6 - * @copyright Copyright 2017 https://e2pdf.com
7 - * @license GPL v2
8 - * @version 1
9 - * @link https://e2pdf.com
10 - * @since 01.01.01
4 + * File: /extension/e2pdf-forminator.php
5 + *
6 + * @package E2Pdf
7 + * @license GPLv3
8 + * @link https://e2pdf.com
11 9 */
12 10 if (!defined('ABSPATH')) {
13 11 die('Access denied.');
14 12 }
@@ -15,361 +13,603 @@
15 13
16 14 class Extension_E2pdf_Forminator extends Model_E2pdf_Model {
17 15
18 16 private $options;
17 + private $info = array(
18 + 'key' => 'forminator',
19 + 'title' => 'Forminator Forms',
20 + );
19 21
20 - function __construct() {
21 - parent::__construct();
22 + // info
23 + public function info($key = false) {
24 + if ($key && isset($this->info[$key])) {
25 + return $this->info[$key];
26 + } else {
27 + return array(
28 + $this->info['key'] => $this->info['title'],
29 + );
30 + }
22 31 }
23 32
24 - /**
25 - * Get info about extension
26 - *
27 - * @return array() - Extension key and name
28 - */
29 - public function info() {
30 - return array(
31 - 'forminator' => __('Forminator', 'e2pdf')
32 - );
33 - }
34 -
33 + // active
35 34 public function active() {
36 -
37 - if (!function_exists('is_plugin_active')) {
38 - include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
39 - }
40 -
41 - if (is_plugin_active('forminator/forminator.php')) {
35 + if (defined('E2PDF_FORMINATOR_EXTENSION') || $this->helper->load('extension')->is_plugin_active('forminator/forminator.php') || $this->helper->load('extension')->is_plugin_active('forminator-pro/forminator.php')) {
42 36 return true;
43 37 }
44 38 return false;
45 39 }
46 40
47 - /**
48 - * Check if export item function available
49 - *
50 - * @return bool - Item export available/not available
51 - */
52 - public function export() {
53 - return false;
54 - }
55 -
56 - /**
57 - * Set option
58 - *
59 - * @param string $key - Key of option
60 - * @param string $value - Value of option
61 - *
62 - * @return bool - Status of setting option
63 - */
41 + // set
64 42 public function set($key, $value) {
65 43 if (!isset($this->options)) {
66 44 $this->options = new stdClass();
67 45 }
68 -
69 46 $this->options->$key = $value;
47 + switch ($key) {
48 + case 'item':
49 + $this->set('cached_form', false);
50 + if ($this->get('item') && class_exists('Forminator_API')) {
51 + $form = Forminator_API::get_form($this->get('item'));
52 + if (!is_wp_error($form)) {
53 + $this->set('cached_form', $form);
54 + }
55 + }
56 + break;
57 + case 'field_data_array':
58 + case 'dataset':
59 + $this->set('cached_entry', false);
60 + $this->set('cached_meta', array());
61 + $this->set('cached_data', array());
62 + if ($this->get('dataset') && class_exists('Forminator_Form_Entry_Model') && $this->get('cached_form')) {
63 + if ($this->get('dataset') == 'is_prevent_store') {
64 + $entry = new Forminator_Form_Entry_Model();
65 + $entry->set_fields($this->replace_values_to_labels($this->get('field_data_array'), $this->get('cached_form'), $entry));
66 + if (isset($entry->meta_data) && is_array($entry->meta_data)) {
67 + $entry->meta_data = $this->update_meta_data($entry->meta_data, $this->get('cached_form'));
68 + }
69 + $this->set('cached_entry', $entry);
70 + $this->set('cached_meta', $this->get('cached_entry')->meta_data);
71 + } else {
72 + $entry = Forminator_API::get_entry($this->get('item'), $this->get('dataset'));
73 + if (isset($entry->meta_data) && is_array($entry->meta_data)) {
74 + $entry->meta_data = $this->update_meta_data($entry->meta_data, $this->get('cached_form'));
75 + }
76 + $this->set('cached_entry', $entry);
77 + $this->set('cached_meta', $this->get('cached_entry')->meta_data);
78 + }
79 + $data = array();
80 + foreach ($this->get('cached_meta') as $key => $meta) {
81 + if (is_array($meta['value'])) {
82 + if (array_unique(array_map('is_int', array_keys($meta['value']))) === array(true)) {
83 + $data[$key] = $meta['value'];
84 + } else {
85 + if (isset($meta['value']['file']['file_url'])) {
86 + $data[$key] = $meta['value']['file']['file_url'];
87 + } else {
88 + foreach ($meta['value'] as $sub_key => $sub_meta) {
89 + $data[$key . '-' . $sub_key] = $sub_meta;
90 + }
91 + }
92 + }
93 + } else {
94 + $data[$key] = $meta['value'];
95 + }
96 + }
97 + $this->set('cached_data', $data);
98 + }
99 + break;
100 + default:
101 + break;
102 + }
70 103 return true;
71 104 }
72 105
73 - /**
74 - * Get option by key
75 - *
76 - * @param string $key - Key to get assigned option value
77 - *
78 - * @return mixed
79 - */
106 + // get
80 107 public function get($key) {
81 108 if (isset($this->options->$key)) {
82 109 $value = $this->options->$key;
83 - return $value;
84 110 } else {
85 - return false;
111 + switch ($key) {
112 + case 'args':
113 + case 'cached_meta':
114 + case 'cached_data':
115 + case 'field_data_array':
116 + $value = array();
117 + break;
118 + default:
119 + $value = false;
120 + break;
121 + }
86 122 }
123 + return $value;
87 124 }
88 125
89 - /**
90 - * Get items to work with
91 - *
92 - * @return array() - List of available items
93 - */
94 - public function get_items() {
95 - $content = array();
96 - if (class_exists("Forminator_API")) {
97 - $forms = Forminator_API::get_forms();
98 - foreach ($forms as $key => $value) {
99 - $content[] = array(
100 - 'key' => (string) $value->id,
101 - 'value' => $value->name
102 - );
126 + // items
127 + public function items() {
128 + $items = array();
129 + if (class_exists('Forminator_API')) {
130 + $forms = Forminator_API::get_forms(null, 1, 99999);
131 + foreach ($forms as $key => $form) {
132 + $items[] = $this->item($form->id);
103 133 }
104 134 }
105 - return $content;
135 + return $items;
106 136 }
107 137
108 - /**
109 - * Get entries for export
110 - *
111 - * @param int $item - Form ID
112 - * @param string $name - Entries names
113 - *
114 - * @return array() - Entries list
115 - */
116 - public function get_datasets($item = false, $name = false) {
117 -
138 + // datasets
139 + public function datasets($item_id = false, $name = false) {
118 140 $datasets = array();
119 -
120 - if (class_exists("Forminator_API") && $item) {
121 - $entries = Forminator_API::get_entries($item);
122 - foreach ($entries as $key => $dataset) {
123 - $this->set('item', $item);
124 - $this->set('dataset', $dataset->entry_id);
125 -
126 - $dataset_title = $this->render($name);
127 - if (!$dataset_title) {
128 - $dataset_title = $dataset->entry_id;
141 + if (class_exists('Forminator_API') && $item_id) {
142 + $entries = Forminator_API::get_entries($item_id);
143 + $this->set('item', $item_id);
144 + foreach ($entries as $key => $entry) {
145 + $this->set('dataset', $entry->entry_id);
146 + $entry_title = $this->render($name);
147 + if (!$entry_title) {
148 + $entry_title = $entry->entry_id;
129 149 }
130 150 $datasets[] = array(
131 - 'key' => $dataset->entry_id,
132 - 'value' => $dataset_title
151 + 'key' => $entry->entry_id,
152 + 'value' => $entry_title,
133 153 );
134 154 }
135 155 }
136 -
137 156 return $datasets;
138 157 }
139 158
140 - /**
141 - * Get dataset
142 - *
143 - * @param int $dataset - Dataset ID
144 - *
145 - * @return object - Dataset
146 - */
147 - public function get_dataset($dataset = false) {
148 - $dataset = (int) $dataset;
149 -
150 - if (!$dataset) {
159 + // get dataset actions
160 + public function get_dataset_actions($dataset_id = false) {
161 + $dataset_id = (int) $dataset_id;
162 + if (!$dataset_id) {
151 163 return false;
152 164 }
165 + $actions = new stdClass();
166 + $actions->view = false;
167 + $actions->delete = false;
168 + return $actions;
169 + }
153 170
154 - $data = new stdClass();
155 - $data->url = false;
156 -
157 - return $data;
171 + // get template actions
172 + public function get_template_actions($template = false) {
173 + $template = (int) $template;
174 + if (!$template) {
175 + return;
176 + }
177 + $actions = new stdClass();
178 + $actions->delete = false;
179 + return $actions;
158 180 }
159 181
160 - /**
161 - * Get item
162 - *
163 - * @param string $item - Item ID
164 - *
165 - * @return object - Item
166 - */
167 - public function get_item($item = false) {
168 -
169 - $form = new stdClass();
170 -
171 - $forminator_form = false;
172 - if (class_exists("Forminator_API")) {
173 - $forminator_form = Forminator_API::get_form($item);
182 + // item
183 + public function item($item_id = false) {
184 + if (!$item_id && $this->get('item')) {
185 + $item_id = $this->get('item');
174 186 }
175 -
176 - if (!is_wp_error($forminator_form)) {
177 - $form->url = $this->helper->get_url(array('page' => 'forminator-cform-wizard', 'id' => $forminator_form->id));
178 - $form->name = $forminator_form->name;
187 + $form = false;
188 + if (class_exists('Forminator_API')) {
189 + $form = Forminator_API::get_form($item_id);
190 + }
191 + $item = new stdClass();
192 + if ($form && !is_wp_error($form)) {
193 + $item->id = (string) $item_id;
194 + $item->url = $this->helper->get_url(
195 + array(
196 + 'page' => 'forminator-cform-wizard',
197 + 'id' => $form->id,
198 + )
199 + );
200 + $item->name = function_exists('forminator_get_form_name') ? forminator_get_form_name($item_id, 'custom_form') : $form->name;
179 201 } else {
180 - $form->url = 'javascript:void(0);';
181 - $form->name = '';
202 + $item->id = '';
203 + $item->url = '';
204 + $item->name = '';
182 205 }
183 - return $form;
206 + return $item;
184 207 }
185 208
186 - /**
187 - * Render value according to content
188 - *
189 - * @param string $value - Content
190 - * @param string $type - Type of rendering value
191 - * @param string $field - Field
192 - *
193 - * @return string - Fully rendered value
194 - */
195 - public function render($value, $type = false, $field = array()) {
209 + // render
210 + public function render($value, $field = array(), $convert_shortcodes = true, $raw = false) {
211 + $value = $this->render_shortcodes($value, $field);
212 + if (!$raw) {
213 + $value = $this->strip_shortcodes($value);
214 + $value = $this->convert_shortcodes($value, $convert_shortcodes, isset($field['type']) && $field['type'] == 'e2pdf-html' ? true : false);
215 + $value = $this->helper->load('field')->render_checkbox($value, $this, $field);
216 + }
217 + return $value;
218 + }
196 219
197 - $value = $this->render_shortcodes($value, $type, $field);
198 - $value = $this->strip_shortcodes($value);
199 -
200 - if ($type === 'value' && isset($field['type']) && $field['type'] === 'e2pdf-checkbox' && isset($field['properties']['option'])) {
201 - $option = $this->render($field['properties']['option']);
202 - $options = explode(', ', $value);
203 - $option_options = explode(', ', $option);
204 - if (is_array($options) && is_array($option_options) && !array_diff($option_options, $options)) {
205 - return $option;
206 - } else {
207 - return "";
220 + // render shortcodes
221 + public function render_shortcodes($value, $field = array()) {
222 + $element_id = isset($field['element_id']) ? $field['element_id'] : false;
223 + if ($this->verify() && function_exists('forminator_replace_form_data')) {
224 + if ($this->get('cached_entry')) {
225 + $cached_data = apply_filters('e2pdf_extension_render_forminator_data', $this->get('cached_data'), $element_id, $this->get('template_id'), $this->get('item'), $this->get('dataset'));
226 + $value = $this->replace_foreach($value, $this->get('cached_form'), $this->get('cached_entry'), $cached_data);
208 227 }
228 + if (false !== strpos($value, '[')) {
229 + $value = $this->helper->load('field')->pre_shortcodes($value, $this, $field);
230 + $value = $this->helper->load('field')->inner_shortcodes($value, $this, $field);
231 + $value = $this->helper->load('field')->wrapper_shortcodes($value, $this, $field);
232 + }
233 + $value = $this->helper->load('field')->do_shortcodes($value, $this, $field);
234 + if ($this->get('cached_entry')) {
235 + if (defined('FORMINATOR_VERSION') && version_compare(FORMINATOR_VERSION, '1.16.0', '>=')) {
236 + $prepared_data = Forminator_CForm_Front_Action::$prepared_data;
237 + Forminator_CForm_Front_Action::$prepared_data = $cached_data;
238 + $value = $this->forminator_replace_form_data($value, $this->get('cached_form'), $this->get('cached_entry'));
239 + $value = forminator_replace_form_data($value, $this->get('cached_form'), $this->get('cached_entry'));
240 + if (version_compare(FORMINATOR_VERSION, '1.17.2', '>=')) {
241 + $value = forminator_replace_variables($value, $this->get('item'), $this->get('cached_entry'));
242 + } else {
243 + $value = forminator_replace_variables($value, $this->get('item'));
244 + }
245 + if (function_exists('forminator_replace_custom_form_data')) {
246 + $value = forminator_replace_custom_form_data($value, $this->get('cached_form'), $this->get('cached_entry'));
247 + }
248 + Forminator_CForm_Front_Action::$prepared_data = $prepared_data;
249 + } else {
250 + $value = forminator_replace_form_data($value, $cached_data, $this->get('cached_form'), $this->get('cached_entry'));
251 + $value = forminator_replace_variables($value, $this->get('item'));
252 + if (function_exists('forminator_replace_custom_form_data')) {
253 + $value = forminator_replace_custom_form_data($value, $this->get('cached_form'), $cached_data, $this->get('cached_entry'), array());
254 + }
255 + }
256 + }
257 + $value = $this->helper->load('field')->render(
258 + apply_filters('e2pdf_extension_render_shortcodes_pre_value', $value, $element_id, $this->get('template_id'), $this->get('item'), $this->get('dataset'), false, false),
259 + $this,
260 + $field
261 + );
209 262 }
263 + return apply_filters(
264 + 'e2pdf_extension_render_shortcodes_value', $value, $element_id, $this->get('template_id'), $this->get('item'), $this->get('dataset'), false, false
265 + );
266 + }
210 267
211 - if ($type === 'value') {
212 - $value = str_replace("&#91;", "[", $value);
213 - }
268 + // replace foreach
269 + public function replace_foreach($content, $custom_form = null, $entry = null, $data = array()) {
214 270
215 - return $value;
216 - }
271 + if (strpos($content, '{foreach:') !== false && preg_match_all('/\{foreach:(group-\d+)\}(.*?)\{\/foreach:(group-\d+)\}/s', $content, $matches)) {
217 272
218 - /**
219 - * Render shortcodes which available in this extension
220 - *
221 - * @param string $type - Type of rendering value
222 - * @param string $value - Content
223 - *
224 - * @return string - Value with rendered shortcodes
225 - */
226 - public function render_shortcodes($value, $type = false, $field = array()) {
273 + $suffix_time = array('hours', 'minutes', 'ampm');
274 + $suffix_address = array('street_address', 'address_line', 'city', 'state', 'zip', 'country');
275 + $suffix_name = array('prefix', 'first-name', 'middle-name', 'last-name');
227 276
228 - $dataset = $this->get('dataset');
229 - $item = $this->get('item');
277 + if (isset($matches[0]) && is_array($matches[0])) {
278 + foreach ($matches[0] as $key => $match) {
230 279
231 - if ($this->verify() && function_exists("forminator_replace_form_data") && class_exists("Forminator_API")) {
280 + $group_id = isset($matches[1][$key]) ? $matches[1][$key] : '';
281 + $inner = isset($matches[2][$key]) ? $matches[2][$key] : '';
282 + $outer = '';
232 283
233 - $form = Forminator_API::get_form($item);
234 - $entry = Forminator_API::get_entry($item, $dataset);
235 - $data = array();
236 - foreach ($entry->meta_data as $key => $meta) {
237 - if (is_array($meta['value'])) {
238 - if (array_unique(array_map("is_int", array_keys($meta['value']))) === array(true)) {
239 - $data[$key] = $meta['value'];
240 - } else {
241 - if (isset($meta['value']['file']['file_url'])) {
242 - $data[$key] = $meta['value']['file']['file_url'];
284 + if ($group_id) {
285 + $group_fields = $custom_form->get_grouped_fields($group_id);
286 + $original_keys = wp_list_pluck($group_fields, 'slug');
287 + $repeater_keys = forminator_get_cloned_field_keys($entry, $original_keys);
288 +
289 + $num_entries = 0;
290 + if (count($repeater_keys) > 0) {
291 + $num_entries = count($repeater_keys) + 1;
243 292 } else {
244 - foreach ($meta['value'] as $sub_key => $sub_meta) {
245 - $data[$key . "-" . $sub_key] = $sub_meta;
293 + foreach ($original_keys as $original_key) {
294 + if (stripos($original_key, 'address') !== false) {
295 + foreach ($suffix_address as $sub_suffix) {
296 + if (isset($data[$original_key . '-' . $sub_suffix]) && $data[$original_key . '-' . $sub_suffix]) {
297 + $num_entries = 1;
298 + break;
299 + }
300 + }
301 + } elseif (stripos($original_key, 'time') !== false) {
302 + foreach ($suffix_time as $sub_suffix) {
303 + if (isset($data[$original_key . '-' . $sub_suffix]) && $data[$original_key . '-' . $sub_suffix]) {
304 + $num_entries = 1;
305 + break;
306 + }
307 + }
308 + } elseif (stripos($original_key, 'name') !== false) {
309 + foreach ($suffix_name as $sub_suffix) {
310 + if (isset($data[$original_key . '-' . $sub_suffix]) && $data[$original_key . '-' . $sub_suffix]) {
311 + $num_entries = 1;
312 + break;
313 + }
314 + }
315 + }
316 +
317 + if (isset($data[$original_key])) {
318 + $num_entries = 1;
319 + }
320 + if ($num_entries > 0) {
321 + break;
322 + }
246 323 }
247 324 }
325 +
326 + $i = 1;
327 + while ($i <= $num_entries) {
328 + $replace = array();
329 + foreach ($original_keys as $original_key) {
330 + if (stripos($original_key, 'address') !== false) {
331 + foreach ($suffix_address as $sub_suffix) {
332 + $replace['{' . $original_key . '-' . $sub_suffix . '}'] = '{' . $original_key . '-' . $sub_suffix . ':' . $i . '}';
333 + }
334 + } elseif (stripos($original_key, 'time') !== false) {
335 + foreach ($suffix_time as $sub_suffix) {
336 + $replace['{' . $original_key . '-' . $sub_suffix . '}'] = '{' . $original_key . '-' . $sub_suffix . ':' . $i . '}';
337 + }
338 + } elseif (stripos($original_key, 'name') !== false) {
339 + foreach ($suffix_name as $sub_suffix) {
340 + $replace['{' . $original_key . '-' . $sub_suffix . '}'] = '{' . $original_key . '-' . $sub_suffix . ':' . $i . '}';
341 + }
342 + }
343 + $replace['{' . $original_key . '}'] = '{' . $original_key . ':' . $i . '}';
344 + $replace['{foreach-index}'] = $i;
345 + }
346 +
347 + $outer .= str_replace(array_keys($replace), $replace, $inner);
348 + $i++;
349 + }
350 + $content = str_replace($match, $outer, $content);
248 351 }
249 - } else {
250 - $data[$key] = $meta['value'];
251 352 }
252 353 }
354 + }
355 + return $content;
356 + }
253 357
254 - if (false !== strpos($value, '[')) {
358 + // replace form data
359 + public function forminator_replace_form_data($content, $custom_form = null, $entry = null) {
360 + $matches = array();
361 + $data = Forminator_CForm_Front_Action::$prepared_data;
362 + $field_types = Forminator_Core::get_field_types();
363 + $suffix_time = array('hours', 'minutes', 'ampm');
364 + $suffix_address = array('street_address', 'address_line', 'city', 'state', 'zip', 'country');
365 + $randomed_field_pattern = 'field-\d+-\d+';
366 + $increment_field_pattern = sprintf('(%s)-\d+', implode('|', $field_types));
367 + if (preg_match_all('/\{((' . $randomed_field_pattern . ')|(' . $increment_field_pattern . '))(\-[A-Za-z-_]+)?(:\d+)?(:html)?\}/', $content, $matches)) {
368 + if (!isset($matches[0]) || !is_array($matches[0])) {
369 + return $content;
370 + }
371 + foreach ($matches[0] as $key => $match) {
372 + $element_id = forminator_clear_field_id($match);
255 373
256 - $shortcode_tags = array(
257 - 'e2pdf-format-number',
258 - 'e2pdf-format-date',
259 - 'e2pdf-format-output',
260 - );
261 - preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $value, $matches);
262 - $tagnames = array_intersect($shortcode_tags, $matches[1]);
374 + $suffix = isset($matches[5][$key]) ? $matches[5][$key] : null;
375 + $index = isset($matches[6][$key]) ? str_replace(':', '', $matches[6][$key]) : null;
376 + $filter = isset($matches[7][$key]) ? str_replace(':', '', $matches[7][$key]) : null;
263 377
264 - if (!empty($tagnames)) {
378 + if ($index) {
379 + $field_id = isset($matches[1][$key]) ? $matches[1][$key] : null;
380 + if (stripos($field_id, 'html') !== false) {
381 + $content = str_replace($match, '{' . $field_id . '}', $content);
382 + continue;
383 + } else {
384 + $field = $custom_form->get_field($field_id);
385 + if ($field && isset($field['parent_group'])) {
386 + $group_fields = $custom_form->get_grouped_fields($field['parent_group']);
387 + $original_keys = wp_list_pluck($group_fields, 'slug');
388 + $repeater_keys = array_values(forminator_get_cloned_field_keys($entry, $original_keys));
265 389
266 - $pattern = get_shortcode_regex($tagnames);
267 - preg_match_all("/$pattern/", $value, $shortcodes);
268 - foreach ($shortcodes[0] as $key => $shortcode_value) {
269 - $shortcode = array();
270 - $shortcode[1] = $shortcodes[1][$key];
271 - $shortcode[2] = $shortcodes[2][$key];
272 - $shortcode[3] = $shortcodes[3][$key];
273 - $shortcode[4] = $shortcodes[4][$key];
274 - $shortcode[5] = $shortcodes[5][$key];
275 - $shortcode[6] = $shortcodes[6][$key];
276 -
277 - if (isset($shortcode['5'])) {
278 - $shortcode['5'] = forminator_replace_form_data($shortcode['5'], $data, $form, $entry);
279 - $shortcode['5'] = forminator_replace_variables($shortcode['5'], $item);
280 - $sub_value = $this->strip_shortcodes($shortcode['5']);
281 - $value = str_replace($shortcode_value, "[" . $shortcode['2'] . $shortcode['3'] . "]" . $sub_value . "[/" . $shortcode['2'] . "]", $value);
390 + if ($index && $index >= '2') {
391 + if (isset($repeater_keys[$index - 2])) {
392 + $element_id = $field_id . $repeater_keys[$index - 2] . $suffix;
393 + } else {
394 + continue;
395 + }
396 + } else {
397 + $element_id = $field_id . $suffix;
398 + }
282 399 }
283 400 }
401 + } elseif ($filter && $filter == 'html') {
402 + $field_id = isset($matches[1][$key]) ? $matches[1][$key] : null;
403 + $content = str_replace($match, forminator_replace_form_data('{' . $field_id . '}', $custom_form, $entry), $content);
404 + continue;
284 405 }
285 - }
286 406
287 - $value = do_shortcode($value);
288 - $value = forminator_replace_form_data($value, $data, $form, $entry);
289 - $value = forminator_replace_variables($value, $item);
407 + if (isset($data[$element_id])) {
408 + if (stripos($element_id, 'currency') !== false || stripos($element_id, 'number') !== false) {
409 + $field = $custom_form->get_field($element_id, true);
410 + $value = Forminator_Field::forminator_number_formatting($field, $data[$element_id]);
411 + } elseif (
412 + false !== stripos($element_id, 'time') &&
413 + (false !== stripos($element_id, '-hours') || false !== stripos($element_id, '-minutes'))
414 + ) {
415 + $value = str_pad($data[$element_id], 2, '0', STR_PAD_LEFT);
416 + } elseif (!empty($entry->draft_id) &&
417 + function_exists('forminator_replace_field_data') &&
418 + (strpos($element_id, 'radio') === 0 || strpos($element_id, 'select') === 0 || strpos($element_id, 'checkbox') === 0)
419 + ) {
420 + $value = explode(', ', forminator_replace_field_data($custom_form, $element_id, $data));
421 + } else {
422 + $value = $data[$element_id];
423 + }
424 + if (is_array($value)) {
425 + $value = implode(', ', $value);
426 + }
427 + $content = str_replace($match, $value, $content);
428 + } elseif (stripos($element_id, 'calculation') !== false && $custom_form && $entry) {
429 + if ($index) {
430 + // incorrect value for repeater with default function
431 + $value = render_entry($entry, $element_id);
432 + } else {
433 + $value = forminator_get_field_from_form_entry($element_id, $custom_form, $entry);
434 + }
290 435
291 - if (isset($field['type']) && ($field['type'] === 'e2pdf-image' || $field['type'] === 'e2pdf-signature')) {
292 - $esig = isset($field['properties']['esig']) && $field['properties']['esig'] ? true : false;
293 - if ($esig) {
294 - //process e-signature
295 - $value = "";
296 - } else {
436 + if (is_array($value)) {
437 + $value = implode(', ', $value);
438 + }
439 + $content = str_replace($match, $value, $content);
440 + } elseif (stripos($element_id, 'address') !== false && !$suffix) {
297 441
298 - if (!$this->helper->load('image')->get_image($value)) {
299 - $value = $this->strip_shortcodes($value);
300 - if (
301 - $value &&
302 - trim($value) != "" &&
303 - extension_loaded('gd') &&
304 - function_exists('imagettftext')
305 - ) {
306 - if (isset($field['properties']['text_color']) && $field['properties']['text_color']) {
307 - $penColour = $this->helper->load('convert')->to_hex_color($field['properties']['text_color']);
442 + $address = array();
443 + foreach ($suffix_address as $sub_suffix) {
444 + if (isset($data[$element_id . '-' . $sub_suffix]) && $data[$element_id . '-' . $sub_suffix]) {
445 + $address[$sub_suffix] = $data[$element_id . '-' . $sub_suffix];
446 + }
447 + }
448 +
449 + $value = apply_filters('e2pdf_extension_forminator_replace_form_data_address', implode(', ', $address), $element_id, $address, $custom_form, $entry);
450 + $content = str_replace($match, $value, $content);
451 + } elseif (stripos($element_id, 'time') !== false && !$suffix) {
452 + $time = array();
453 + foreach ($suffix_time as $sub_suffix) {
454 + if (isset($data[$element_id . '-' . $sub_suffix])) {
455 + if ($sub_suffix == 'hours' || $sub_suffix == 'minutes') {
456 + $time[$sub_suffix] = str_pad($data[$element_id . '-' . $sub_suffix], 2, '0', STR_PAD_LEFT);
308 457 } else {
309 - $penColour = array(0x14, 0x53, 0x94);
458 + $time[$sub_suffix] = $data[$element_id . '-' . $sub_suffix];
310 459 }
460 + }
461 + }
462 + $value = apply_filters('e2pdf_extension_forminator_replace_form_data_time', implode(':', $time), $element_id, $time, $custom_form, $entry);
463 + $content = str_replace($match, $value, $content);
464 + } elseif (false !== stripos($element_id, 'postdata') && $suffix) {
465 + $field_id = isset($matches[1][$key]) ? $matches[1][$key] : null;
466 + $meta_value = isset($data[$field_id . '-value']) ? $data[$field_id . '-value'] : array();
311 467
312 - $default_options = array(
313 - 'imageSize' => array(isset($field['width']) ? $field['width'] : '400', isset($field['height']) ? $field['height'] : '150'),
314 - 'bgColour' => 'transparent',
315 - 'penColour' => $penColour
316 - );
317 -
318 - $options = array();
319 - $options = array_merge($default_options, $options);
320 -
321 - $model_e2pdf_font = new Model_E2pdf_Font();
322 -
323 - $font = false;
324 - if (isset($field['properties']['text_font']) && $field['properties']['text_font']) {
325 - $font = $model_e2pdf_font->get_font_path($field['properties']['text_font']);
468 + switch ($suffix) {
469 + case '-post-title':
470 + $value = isset($meta_value['post-title']) ? $meta_value['post-title'] : '';
471 + $content = str_replace($match, $value, $content);
472 + break;
473 + case '-post-content':
474 + $value = isset($meta_value['post-content']) ? $meta_value['post-content'] : '';
475 + $content = str_replace($match, $value, $content);
476 + break;
477 + case '-post-excerpt':
478 + $value = isset($meta_value['post-excerpt']) ? $meta_value['post-excerpt'] : '';
479 + $content = str_replace($match, $value, $content);
480 + break;
481 + case '-category':
482 + $post_category = isset($meta_value['category']) ? $meta_value['category'] : '';
483 + $categories = array();
484 + if (is_array($post_category)) {
485 + foreach ($post_category as $category) {
486 + $categories[] = get_the_category_by_ID($category);
487 + }
488 + } elseif ($post_category) {
489 + $categories[] = get_the_category_by_ID($post_category);
326 490 }
327 -
328 - if (!$font) {
329 - $font = $model_e2pdf_font->get_font_path('Noto Sans');
491 + $value = implode(', ', $categories);
492 + $content = str_replace($match, $value, $content);
493 + break;
494 + case '-post_tag':
495 + $post_tags = isset($meta_value['post_tag']) ? $meta_value['post_tag'] : '';
496 + $tags = array();
497 + if (is_array($post_tags)) {
498 + foreach ($post_tags as $post_tag) {
499 + $term = get_term_by('id', $post_tag, 'post_tag');
500 + if ($term) {
501 + $tags[] = $term->name;
502 + }
503 + }
504 + } elseif ($post_tags) {
505 + $term = get_term_by('id', $post_tag, 'post_tag');
506 + if ($term) {
507 + $tags[] = $term->name;
508 + }
330 509 }
510 + $value = implode(', ', $tags);
511 + $content = str_replace($match, $value, $content);
512 + break;
513 + case '-post-custom':
514 + $post_custom = isset($meta_value['post-custom']) && is_array($meta_value['post-custom']) ? $meta_value['post-custom'] : array();
515 + $customs = array();
516 + foreach ($post_custom as $custom) {
517 + $customs[] = $custom['key'] . ': ' . $custom['value'];
518 + }
519 + $value = implode(', ', $customs);
520 + $content = str_replace($match, $value, $content);
521 + break;
522 + case '-post-image':
523 + $value = !empty($meta_value['post-image']) && !empty($meta_value['post-image']['uploaded_file']) ? $meta_value['post-image']['uploaded_file'][0] : '';
524 + $content = str_replace($match, $value, $content);
525 + break;
526 + }
527 + }
528 + }
529 + }
530 + return $content;
531 + }
331 532
332 - $size = 150;
333 - if (isset($field['properties']['text_font_size']) && $field['properties']['text_font_size']) {
334 - $size = $field['properties']['text_font_size'];
335 - }
533 + // fields compatibility
534 + public function update_meta_data($meta_data, $form) {
535 + foreach ($meta_data as $meta_key => $meta) {
536 + // 1.48.x
537 + if ((false !== strpos($meta_key, 'checkbox') || false !== strpos($meta_key, 'select')) && !empty($meta['value']) && is_string($meta['value'])) {
538 + $meta_data[$meta_key]['value'] = implode(', ', explode('<br/>', $meta['value']));
539 + }
540 + // 1.53.x
541 + if (false !== strpos($meta_key, 'calculation') && isset($meta['value']) && !is_array($meta['value'])) {
542 + $field = $form->get_field($meta_key, true);
543 + $value = ('' === (string) $meta['value']) ? '0.0' : $meta['value'];
544 + $meta_data[$meta_key]['value'] = [
545 + 'result' => $value,
546 + 'formatting_result' => is_array($field) && !empty($field) ? Forminator_Field::forminator_number_formatting($field, $value) : $value,
547 + ];
548 + }
549 + }
550 + return $meta_data;
551 + }
336 552
337 - $model_e2pdf_signature = new Model_E2pdf_Signature();
338 - $value = $model_e2pdf_signature->ttf_signature($value, $size, $font, $options);
339 - } else {
340 - $value = "";
341 - }
342 - }
553 + // replace values to labels
554 + public function replace_values_to_labels($data, $form, $entry) {
555 + if (function_exists('forminator_replace_form_data')) {
556 + foreach ($data as $key => $value) {
557 + if (empty($value['name'])) {
558 + continue;
343 559 }
344 - } else {
345 - $value = str_replace("[", '&#91;', $value);
560 + $slug = $value['name'];
561 + if (strpos($slug, 'radio') !== false || strpos($slug, 'select') !== false || strpos($slug, 'checkbox') !== false
562 + ) {
563 + $data[$key]['value'] = forminator_replace_form_data('{' . $slug . '}', $form, $entry, true);
564 + }
346 565 }
347 566 }
567 + return $data;
568 + }
348 569
570 + // strip shortcodes
571 + public function strip_shortcodes($value) {
572 + $value = preg_replace('~(?:\[/?)[^/\]]+/?\]~s', '', $value);
573 + $value = preg_replace('~a\:\d+\:{[^}]*}(*SKIP)(*FAIL)|{[^}]*}~', '', $value);
349 574 return $value;
350 575 }
351 576
352 - /**
353 - * Strip unused shortcodes
354 - *
355 - * @param string $value - Content
356 - *
357 - * @return string - Value with removed unused shortcodes
358 - */
359 - public function strip_shortcodes($value) {
360 - $value = preg_replace('~(?:\[/?)[^/\]]+/?\]~s', "", $value);
361 - $value = preg_replace('~(?:{/?)[^/}]+/?}~s', "", $value);
577 + // strip math
578 + public function strip_math($value, &$replacements) {
579 + if ($value) {
580 + preg_match_all('/\{[^}]+\}/', $value, $matches);
581 + foreach ($matches[0] as $match) {
582 + $index = count($replacements) + 1;
583 + $replacements[] = $match;
584 + $value = str_replace($match, '%' . $index . '$s', $value);
585 + }
586 + }
362 587 return $value;
363 588 }
364 589
590 + // convert shortcodes
591 + public function convert_shortcodes($value, $to = false, $html = false) {
592 + if ($value) {
593 + if ($to) {
594 + $value = str_replace('&#91;', '[', $value);
595 + if (!$html) {
596 + $value = wp_specialchars_decode($value, ENT_QUOTES);
597 + }
598 + } else {
599 + $value = str_replace('[', '&#91;', $value);
600 + }
601 + }
602 + return $value;
603 + }
604 +
605 + // verify
365 606 public function verify() {
366 - $item = $this->get('item');
367 - $dataset = $this->get('dataset');
368 -
369 - if ($item && $dataset && class_exists("Forminator_API")) {
370 - $entry = Forminator_API::get_entry($item, $dataset);
371 - if ($entry) {
607 + if ($this->get('cached_form')) {
608 + if (
609 + ($this->get('cached_form')->is_prevent_store() && $this->get('dataset') == 'is_prevent_store') ||
610 + ($this->get('cached_entry') && $this->get('cached_entry')->form_id == $this->get('item'))
611 + ) {
372 612 return true;
373 613 }
374 614 }
375 615 return false;
@@ -374,37 +614,267 @@
374 614 }
375 615 return false;
376 616 }
377 617
378 - public function visual_mapper() {
618 + // auto form
619 + public function auto_form($template, $data = array()) {
379 620
380 - $item = $this->get('item');
621 + if ($template->get('ID')) {
381 622
382 - if ($item && function_exists("forminator_form_preview") && class_exists("Forminator_API")) {
623 + $auto_form_label = isset($data['auto_form_label']) && $data['auto_form_label'] ? $data['auto_form_label'] : false;
624 + $auto_form_shortcode = isset($data['auto_form_shortcode']) ? true : false;
625 + $wrappers = array();
626 + $pages = $template->get('pages');
627 + $checkboxes = array();
628 + $radios = array();
383 629
384 - ob_start();
385 - forminator_form_preview($item, true, array());
386 - $source = ob_get_clean();
630 + foreach ($pages as $page_key => $page) {
631 + if (isset($page['elements']) && !empty($page['elements'])) {
632 + foreach ($page['elements'] as $element_key => $element) {
633 + $type = false;
634 + $label = '';
635 + if ($element['type'] == 'e2pdf-input' || $element['type'] == 'e2pdf-signature') {
636 + $type = 'text';
637 + $label = 'Text';
638 + } elseif ($element['type'] == 'e2pdf-textarea') {
639 + $type = 'textarea';
640 + $label = 'Textarea';
641 + } elseif ($element['type'] == 'e2pdf-select') {
642 + $type = 'select';
643 + $label = 'Select';
644 + $options = array();
645 + $field_options = array();
646 + if (isset($element['properties']['options'])) {
647 + $field_options = explode("\n", $element['properties']['options']);
648 + foreach ($field_options as $option) {
649 + $options[] = array(
650 + 'label' => $option,
651 + 'value' => '',
652 + );
653 + }
654 + }
655 + } elseif ($element['type'] == 'e2pdf-checkbox') {
656 + $field_key = array_search($element['name'], array_column($checkboxes, 'name'), false);
657 + if ($field_key !== false) {
658 + $checkboxes[$field_key]['options'][] = array(
659 + 'label' => $element['properties']['option'],
660 + 'value' => $element['properties']['option'],
661 + );
662 + $pages[$page_key]['elements'][$element_key]['value'] = '{checkbox-' . $checkboxes[$field_key]['element_id'] . '}';
663 + } else {
664 + $type = 'checkbox';
665 + $label = 'Checkbox';
666 + $options = array(
667 + 'label' => $element['properties']['option'],
668 + 'value' => $element['properties']['option'],
669 + );
670 + }
671 + } elseif ($element['type'] == 'e2pdf-radio') {
672 + if (isset($element['properties']['group']) && $element['properties']['group']) {
673 + $element['name'] = $element['properties']['group'];
674 + } else {
675 + $element['name'] = $element['element_id'];
676 + }
677 + $field_key = array_search($element['name'], array_column($radios, 'name'), false);
678 + if ($field_key !== false) {
679 + $radios[$field_key]['options'][] = array(
680 + 'label' => $element['properties']['option'],
681 + 'value' => '',
682 + );
683 + $pages[$page_key]['elements'][$element_key]['value'] = '{radio-' . $radios[$field_key]['element_id'] . '}';
684 + } else {
685 + $type = 'radio';
686 + $label = 'Radio';
687 + $options = array(
688 + 'label' => $element['properties']['option'],
689 + 'value' => '',
690 + );
691 + }
692 + }
387 693
388 - $form = Forminator_API::get_form($item);
694 + if ($type) {
695 + $labels = array();
696 + if ($auto_form_shortcode) {
697 + $labels[] = '{' . $type . '-' . $element['element_id'] . '}';
698 + }
389 699
390 - if (is_wp_error($form)) {
700 + if ($auto_form_label && $auto_form_label == 'value' && isset($element['value']) && $element['value']) {
701 + $labels[] = $element['value'];
702 + } elseif ($auto_form_label && $auto_form_label == 'name' && isset($element['name']) && $element['name']) {
703 + $labels[] = $element['name'];
704 + }
705 +
706 + if ($type == 'checkbox' || $type == 'radio') {
707 +
708 + $field_data = array(
709 + 'name' => $element['name'],
710 + 'element_id' => $element['element_id'],
711 + 'field_label' => !empty($labels) ? implode(' ', $labels) : $label,
712 + 'options' => array(
713 + $options,
714 + ),
715 + );
716 +
717 + if ($type == 'checkbox') {
718 + $checkboxes[] = $field_data;
719 + } else {
720 + $radios[] = $field_data;
721 + }
722 + } else {
723 + $field_data = array(
724 + 'element_id' => $type . '-' . $element['element_id'],
725 + 'type' => $type,
726 + 'cols' => '12',
727 + 'required' => false,
728 + 'field_label' => !empty($labels) ? implode(' ', $labels) : $label,
729 + 'placeholder' => '',
730 + 'validation' => false,
731 + );
732 +
733 + if ($type == 'select') {
734 + $field_data['options'] = $options;
735 + }
736 +
737 + $wrappers[] = array(
738 + 'wrapper_id' => 'wrapper-' . wp_rand(1000000000000, 9999999999999) . '-' . wp_rand(1000, 9999),
739 + 'fields' => array(
740 + $field_data,
741 + ),
742 + );
743 + }
744 +
745 + $pages[$page_key]['elements'][$element_key]['value'] = '{' . $type . '-' . $element['element_id'] . '}';
746 + if (isset($element['properties']['esig'])) {
747 + unset($pages[$page_key]['elements'][$element_key]['properties']['esig']);
748 + }
749 + }
750 + }
751 + }
752 + }
753 +
754 + foreach ($checkboxes as $element) {
755 + $wrappers[] = array(
756 + 'wrapper_id' => 'wrapper-' . wp_rand(1000000000000, 9999999999999) . '-' . wp_rand(1000, 9999),
757 + 'fields' => array(
758 + array(
759 + 'element_id' => 'checkbox-' . $element['element_id'],
760 + 'type' => 'checkbox',
761 + 'cols' => '12',
762 + 'required' => false,
763 + 'options' => $element['options'],
764 + 'field_label' => $element['field_label'],
765 + 'placeholder' => '',
766 + 'validation' => false,
767 + ),
768 + ),
769 + );
770 + }
771 +
772 + foreach ($radios as $element) {
773 + $wrappers[] = array(
774 + 'wrapper_id' => 'wrapper-' . wp_rand(1000000000000, 9999999999999) . '-' . wp_rand(1000, 9999),
775 + 'fields' => array(
776 + array(
777 + 'element_id' => 'radio-' . $element['element_id'],
778 + 'type' => 'radio',
779 + 'cols' => '12',
780 + 'required' => false,
781 + 'options' => $element['options'],
782 + 'field_label' => $element['field_label'],
783 + 'placeholder' => '',
784 + 'validation' => false,
785 + ),
786 + ),
787 + );
788 + }
789 +
790 + $template->set('pages', $pages);
791 + $settings = array(
792 + 'formName' => $template->get('title'),
793 + 'thankyou' => 'true',
794 + /* translators: %d: E2Pdf Template ID */
795 + 'thankyou-message' => sprintf(__('Success. [e2pdf-download id="%d"]', 'e2pdf'), $template->get('ID')),
796 + 'use-custom-submit' => 'true',
797 + 'custom-submit-text' => __('Send Message', 'forminator'),
798 + 'use-custom-invalid-form' => 'true',
799 + 'custom-invalid-form-message' => __('Error: Your form is not valid, please fix the errors!', 'forminator'),
800 + 'enable-ajax' => 'true',
801 + 'validation' => 'on_submit',
802 + );
803 +
804 + if (class_exists('Forminator_API')) {
805 + $item = Forminator_API::add_form($template->get('title'), $wrappers, $settings);
806 + if ($item) {
807 + $template->set('item', $item);
808 + }
809 + }
810 + }
811 +
812 + return $template;
813 + }
814 +
815 + // visual mapper
816 + public function visual_mapper() {
817 +
818 + $item = $this->get('item');
819 + $html = '';
820 + $source = '';
821 +
822 + if ($item && class_exists('Forminator_API') && class_exists('Forminator_CForm_Front')) {
823 + $custom_form = Forminator_API::get_form($item);
824 + if (is_wp_error($custom_form)) {
391 825 return __('Form could not be found', 'e2pdf');
392 826 }
827 + $view = Forminator_CForm_Front::get_instance();
828 + if (class_exists('Forminator_Custom_Form_Model')) {
829 + $view->model = Forminator_Custom_Form_Model::model()->load($item);
830 + } elseif (class_exists('Forminator_Form_Model')) {
831 + $view->model = Forminator_Form_Model::model()->load($item);
832 + } else {
833 + return __('Something went wrong!', 'e2pdf');
834 + }
393 835
394 - libxml_use_internal_errors(true);
395 - $dom = new DOMDocument;
396 - $html = $dom->loadHTML($source);
397 - libxml_clear_errors();
836 + $fields = $view->get_fields();
837 + if (!empty($fields)) {
838 + foreach ($fields as $field_key => $field) {
839 + if ('page-break' === $field['type'] && isset($field['element_id'])) {
840 + $view->model->remove_field($field_key);
841 + }
842 + }
843 + }
398 844
399 - if (!$html) {
400 - return __('Form could not be parsed due incorrect HTML', 'e2pdf');
845 + $form = $view->get_html(true, true);
846 + ob_start();
847 + $view->print_styles();
848 + $styles = ob_get_clean();
849 + if ($form) {
850 + $source = $styles . $form;
851 + }
852 + if ($source) {
853 + $dom = new DOMDocument();
854 + $html = $this->helper->load('convert')->load_html($source, $dom, true);
855 + }
856 + if (!$source) {
857 + return '<div class="e2pdf-vm-error">' . __("The form source is empty or doesn't exist", 'e2pdf') . '</div>';
858 + } elseif (!$html) {
859 + return '<div class="e2pdf-vm-error">' . __('The form could not be parsed due the incorrect HTML', 'e2pdf') . '</div>';
401 860 } else {
402 861
862 + $use_labels = true;
863 + if ((defined('FORMINATOR_VERSION') && version_compare(FORMINATOR_VERSION, '1.14.10', '<')) || (!empty($custom_form->settings['print_value']) && filter_var($custom_form->settings['print_value'], FILTER_VALIDATE_BOOLEAN))) {
864 + $use_labels = false;
865 + }
866 +
867 + $xml = $this->helper->load('xml');
403 868 $xpath = new DomXPath($dom);
404 869
870 + // remove by class
405 871 $remove_by_class = array(
406 - 'forminator-pagination-submit'
872 + 'forminator-pagination-submit',
873 + 'forminator-response-message',
874 + 'forminator-save-draft-link',
875 + 'forminator-field-stripe',
876 + 'forminator-button-paypal',
407 877 );
408 878 foreach ($remove_by_class as $key => $class) {
409 879 $elements = $xpath->query("//*[contains(@class, '{$class}')]");
410 880 foreach ($elements as $element) {
@@ -411,68 +881,130 @@
411 881 $element->parentNode->removeChild($element);
412 882 }
413 883 }
414 884
415 - $inputs = $xpath->query("//*[contains(@class, 'forminator-input')]");
885 + // remove by tag
886 + $remove_by_tag = array(
887 + 'script',
888 + );
889 + foreach ($remove_by_tag as $key => $tag) {
890 + $elements = $xpath->query('//' . $tag);
891 + foreach ($elements as $element) {
892 + $element->parentNode->removeChild($element);
893 + }
894 + }
895 +
896 + $inputs = $xpath->query("//*[contains(@class, 'forminator-input') or contains(@class, 'forminator-calculation')]");
416 897 foreach ($inputs as $element) {
417 - if (!$element->attributes->getNamedItem("type")->nodeValue) {
418 - $element->setAttribute("type", "text");
419 - }
898 + $xml->set_node_value($element, 'type', 'text');
420 899 }
421 900
422 - //remove pagination
901 + // remove pagination
423 902 $pagination = $xpath->query("//*[contains(@class, 'forminator-pagination')]");
424 903 foreach ($pagination as $element) {
425 - $element->attributes->getNamedItem("style")->nodeValue = "";
904 + $xml->set_node_value($element, 'style', '');
426 905 }
427 906
428 - //remove buttons
429 - $remove_rows = $xpath->query("//*[contains(@class, 'forminator-row')][.//button[contains(@class, 'forminator-button') and not(contains(@class, 'forminator-upload-button'))]]");
907 + // remove buttons
908 + $remove_rows = $xpath->query("//*[contains(@class, 'forminator-row')][.//button[contains(concat(' ',@class,' '), ' forminator-button ') and not(contains(@class, 'forminator-upload-button')) and not(contains(@class, 'forminator-button-upload'))]]");
430 909 foreach ($remove_rows as $element) {
431 910 $element->parentNode->removeChild($element);
432 911 }
433 912
434 - //replace name on fileuploads
913 + // sliders support
914 + $sliders = $xpath->query("//*[contains(@class, 'forminator-slider-hidden-min') or contains(@class, 'forminator-slider-hidden-max')]");
915 + foreach ($sliders as $element) {
916 + $xml->set_node_value($element, 'type', 'text');
917 + }
918 +
919 + // replace name on fileuploads
435 920 $fileuploads = $xpath->query("//*[contains(@class, 'forminator-upload')]");
436 921 foreach ($fileuploads as $element) {
437 922 $file = $xpath->query(".//input[contains(@class, 'forminator-input-file')]", $element)->item(0);
438 - $button = $xpath->query(".//button[contains(@class, 'forminator-upload-button')]", $element)->item(0);
923 + $button = $xpath->query(".//button[contains(@class, 'forminator-upload-button') or contains(@class, 'forminator-button-upload')]", $element)->item(0);
439 924 if ($file && $button) {
440 - $button->attributes->getNamedItem("type")->nodeValue = "upload";
441 - $button->setAttribute("name", "{" . $file->attributes->getNamedItem("name")->nodeValue . "}");
925 + $xml->set_node_value($button, 'type', 'upload');
926 + $xml->set_node_value($button, 'name', $xml->get_node_value($file, 'name'));
442 927 }
443 928 }
444 929
445 - //replace names on inputs
446 - $inputs = $xpath->query("//input");
930 + // replace name on multi-fileuploads
931 + $fileuploads_multi = $xpath->query("//*[contains(@class, 'forminator-multi-upload')]");
932 + foreach ($fileuploads_multi as $element) {
933 + $file = $xpath->query(".//input[contains(@class, 'forminator-input-file')]", $element)->item(0);
934 + if ($file) {
935 + $xml->set_node_value($file, 'name', str_replace('[]', '', $xml->get_node_value($file, 'name')));
936 + }
937 + }
938 +
939 + // replace name on signatures
940 + $signatures = $xpath->query("//*[contains(@class, 'forminator-field-signature')]");
941 + foreach ($signatures as $element) {
942 + $button = $xpath->query(".//input[contains(@type, 'hidden')]", $element)->item(0);
943 + if ($button) {
944 + $xml->set_node_value($button, 'type', 'text');
945 + $xml->set_node_value($button, 'value', '');
946 + $xml->set_node_value($button, 'name', str_replace('field-', '', $xml->get_node_value($button, 'name')));
947 + }
948 + }
949 +
950 + // replace names on inputs
951 + $inputs = $xpath->query('//input|//textarea|//select');
447 952 foreach ($inputs as $element) {
448 - $type = $element->attributes->getNamedItem("type")->nodeValue;
449 - if ($type == 'checkbox') {
450 - $element->attributes->getNamedItem("name")->nodeValue = str_replace("[]", "", $element->attributes->getNamedItem("name")->nodeValue);
953 + if ($xml->get_node_value($element, 'type') == 'checkbox') {
954 + $xml->set_node_value($element, 'name', str_replace('[]', '', $xml->get_node_value($element, 'name')));
955 + /* Forminator 1.14.10 Checkbox "Option" Fix */
956 + if ($use_labels) {
957 + $parent = $xpath->query('.//parent::*', $element);
958 + if ($parent && $parent->item(0)) {
959 + if (strpos($xml->get_node_value($parent->item(0), 'class'), 'forminator-option') !== false) {
960 + $xml->set_node_value($element, 'value', $parent->item(0)->nodeValue);
961 + } else {
962 + $label = $xpath->query('.//parent::*/span[not(@aria-hidden)]', $element);
963 + if ($label && $label->item(0)) {
964 + $xml->set_node_value($element, 'value', $label->item(0)->nodeValue);
965 + }
966 + }
967 + }
968 + }
451 969 }
452 970
453 - $element->attributes->getNamedItem("name")->nodeValue = "{" . $element->attributes->getNamedItem("name")->nodeValue . "}";
454 - if (strpos($element->attributes->getNamedItem("class")->nodeValue, 'forminator-checkbox--input') !== false) {
455 - $element->attributes->getNamedItem("class")->nodeValue = $element->attributes->getNamedItem("class")->nodeValue . " forminator-checkbox--design";
971 + if ($use_labels) {
972 + // forminator 1.14.10 radio option fix
973 + if ($xml->get_node_value($element, 'type') == 'radio') {
974 + $label = $xpath->query('.//parent::*/span[not(@aria-hidden)]', $element);
975 + if ($label && $label->item(0)) {
976 + $xml->set_node_value($element, 'value', $label->item(0)->nodeValue);
977 + }
978 + }
979 +
980 + // forminator 1.14.10 select option fix
981 + if ($element->tagName == 'select') {
982 + $options = $xpath->query('.//option', $element);
983 + if ($options) {
984 + foreach ($options as $option) {
985 + $xml->set_node_value($option, 'value', $option->nodeValue);
986 + }
987 + }
988 + }
456 989 }
457 - if (strpos($element->attributes->getNamedItem("class")->nodeValue, 'forminator-radio--input') !== false) {
458 - $element->attributes->getNamedItem("class")->nodeValue = $element->attributes->getNamedItem("class")->nodeValue . " forminator-radio--design";
990 +
991 + $parent_repeater = $xpath->query("./ancestor::div[contains(@class, 'forminator-repeater-field')]", $element);
992 + if ($parent_repeater && $parent_repeater->item(0)) {
993 + $xml->set_node_value($element, 'name', $xml->get_node_value($element, 'name') . ':1');
459 994 }
460 - }
461 995
462 - //replace names on textareas
463 - $textareas = $xpath->query("//textarea");
464 - foreach ($textareas as $element) {
465 - $element->attributes->getNamedItem("name")->nodeValue = "{" . $element->attributes->getNamedItem("name")->nodeValue . "}";
466 - }
996 + $xml->set_node_value($element, 'name', '{' . $xml->get_node_value($element, 'name') . '}');
467 997
468 - //replace names on selects
469 - $selects = $xpath->query("//select");
470 - foreach ($selects as $element) {
471 - $element->attributes->getNamedItem("name")->nodeValue = "{" . $element->attributes->getNamedItem("name")->nodeValue . "}";
998 + if (strpos($xml->get_node_value($element, 'class'), 'forminator-checkbox--input') !== false) {
999 + $xml->set_node_value($element, 'class', $xml->get_node_value($element, 'class') . ' forminator-checkbox--design');
1000 + }
1001 + if (strpos($xml->get_node_value($element, 'class'), 'forminator-radio--input') !== false) {
1002 + $xml->set_node_value($element, 'class', $xml->get_node_value($element, 'class') . ' forminator-radio--design');
1003 + }
472 1004 }
473 1005
474 - //multiselects
1006 + // multiselects
475 1007 $multiselect = $xpath->query("//ul[contains(@class, 'forminator-multiselect')]");
476 1008 foreach ($multiselect as $element) {
477 1009 $name = '';
478 1010 $options = array();
@@ -478,20 +1010,20 @@
478 1010 $options = array();
479 1011 $inputs = $xpath->query(".//*[contains(@class, 'forminator-multiselect--item')]", $element);
480 1012
481 1013 foreach ($inputs as $sub_element) {
482 - $input = $xpath->query(".//input", $sub_element)->item(0);
483 - $label = $xpath->query(".//label", $sub_element)->item(0);
1014 + $input = $xpath->query('.//input', $sub_element)->item(0);
1015 + $label = $xpath->query('.//label', $sub_element)->item(0);
484 1016
485 1017 if ($input && $label) {
486 - $options[] = array(
487 - 'value' => $input->attributes->getNamedItem("value")->nodeValue,
488 - 'label' => $label->childNodes->item(0)->nodeValue
489 - );
490 -
491 - $name = $input->attributes->getNamedItem("name")->nodeValue;
1018 + if ($label->childNodes->item(0)) {
1019 + $options[] = array(
1020 + 'value' => $xml->get_node_value($input, 'value'),
1021 + 'label' => $label->childNodes->item(0)->nodeValue,
1022 + );
1023 + }
1024 + $name = $xml->get_node_value($input, 'name');
492 1025 }
493 -
494 1026 $sub_element->parentNode->removeChild($sub_element);
495 1027 }
496 1028
497 1029 $li = $dom->createElement('li');
@@ -504,9 +1036,8 @@
504 1036 $li->appendChild($attr);
505 1037 }
506 1038 $element->appendChild($li);
507 1039
508 -
509 1040 $field = $dom->createElement('select');
510 1041 $field_atts = array(
511 1042 'multiple' => 'multiple',
512 1043 'name' => $name,
@@ -535,9 +1066,28 @@
535 1066 $field->appendChild($option_field);
536 1067 }
537 1068 }
538 1069
1070 + // replace hidden
1071 + $elements = $xpath->query("//*[contains(@type, 'hidden')]");
1072 + foreach ($elements as $element) {
1073 + $parent = $xpath->query('.//parent::*', $element);
1074 + if ($parent && $parent->item(0)) {
1075 + if (false !== strpos($xml->get_node_value($parent->item(0), 'class'), 'forminator-row')) {
1076 + if (false !== strpos($xml->get_node_value($parent->item(0), 'class'), 'forminator-hidden')) {
1077 + $xml->set_node_value($element, 'value', $xml->get_node_value($element, 'name'));
1078 + }
1079 + $xml->set_node_value($parent->item(0), 'class', 'forminator-field');
1080 + } else {
1081 + $element->parentNode->removeChild($element);
1082 + }
1083 + }
1084 + }
539 1085
1086 + $elements = $xpath->query("//*[contains(@class, 'forminator-row') and not(.//text()[normalize-space()])]");
1087 + foreach ($elements as $element) {
1088 + $element->parentNode->removeChild($element);
1089 + }
540 1090
541 1091 return $dom->saveHTML();
542 1092 }
543 1093 }
@@ -543,13 +1093,9 @@
543 1093 }
544 1094 return false;
545 1095 }
546 1096
547 - /**
548 - * Auto Generate of Template for this extension
549 - *
550 - * @return array - List of elements
551 - */
1097 + // auto
552 1098 public function auto() {
553 1099
554 1100 $item = $this->get('item');
555 1101
@@ -554,258 +1100,399 @@
554 1100 $item = $this->get('item');
555 1101
556 1102 $response = array();
557 1103 $elements = array();
558 - $fields = array();
559 - $form = false;
1104 + $form_fields = array();
1105 + $custom_form = false;
560 1106
561 - if (class_exists("Forminator_API")) {
562 - $forminator_form = Forminator_API::get_form($item);
563 - if (!is_wp_error($forminator_form)) {
564 - $form = $forminator_form;
565 - $fields = $form->fields;
1107 + if (class_exists('Forminator_API')) {
1108 + $custom_form = Forminator_API::get_form($item);
1109 + if (!is_wp_error($custom_form)) {
1110 + $form_fields = $custom_form->fields;
566 1111 }
567 1112 }
568 1113
569 - if ($form && $fields) {
1114 + if ($custom_form && !empty($form_fields)) {
1115 + $fields = array();
1116 + foreach ($form_fields as $field_obj) {
1117 + $field = $field_obj->raw;
1118 + if (isset($field['type']) && $field['type'] == 'group') {
1119 + $fields[] = $field_obj;
1120 + if (isset($field['element_id']) && $field['element_id']) {
1121 + foreach ($form_fields as $sub_field_obj) {
1122 + if (isset($sub_field_obj->parent_group) && $sub_field_obj->parent_group == $field['element_id']) {
1123 + $fields[] = $sub_field_obj;
1124 + }
1125 + }
1126 + }
1127 + } elseif (isset($field_obj->parent_group) && $field_obj->parent_group) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedElseif
1128 + } else {
1129 + $fields[] = $field_obj;
1130 + }
1131 + }
570 1132
1133 + $use_labels = true;
1134 + if ((defined('FORMINATOR_VERSION') && version_compare(FORMINATOR_VERSION, '1.14.10', '<')) || (!empty($custom_form->settings['print_value']) && filter_var($custom_form->settings['print_value'], FILTER_VALIDATE_BOOLEAN))) {
1135 + $use_labels = false;
1136 + }
1137 +
571 1138 foreach ($fields as $field_obj) {
572 1139 $field = $field_obj->raw;
573 - $float = true;
574 1140 $width = 100 / (12 / $field['cols']);
1141 + $repeater = '';
1142 + if (isset($field_obj->parent_group) && $field_obj->parent_group) {
1143 + $parent_field = $custom_form->get_field($field_obj->parent_group);
1144 + if ($parent_field) {
1145 + if (isset($parent_field['is_repeater']) && $parent_field['is_repeater']) {
1146 + $repeater = ':1';
1147 + }
1148 + }
1149 + }
575 1150
576 1151 switch ($field['type']) {
1152 + case 'group':
1153 + if ($field['field_label']) {
1154 + $elements[] = $this->auto_field(
1155 + $field,
1156 + array(
1157 + 'type' => 'e2pdf-html',
1158 + 'block' => true,
1159 + 'properties' => array(
1160 + 'top' => '20',
1161 + 'left' => '20',
1162 + 'right' => '20',
1163 + 'width' => $width . '%',
1164 + 'height' => 'auto',
1165 + 'value' => '<h2>' . $field['field_label'] . '</h2>',
1166 + ),
1167 + )
1168 + );
1169 + }
1170 + break;
577 1171 case 'name':
578 1172 case 'email':
579 1173 case 'phone':
580 1174 case 'url':
581 - case 'upload':
582 1175 case 'number':
1176 + case 'calculation':
583 1177 case 'date':
1178 + case 'currency':
1179 + // multiple name field
1180 + if ($field['type'] == 'name' && isset($field['multiple_name']) && $field['multiple_name'] === 'true') {
584 1181
585 - //multiple name field
586 - if ($field['type'] == 'name' && isset($field['multiple_name']) && $field['multiple_name']) {
1182 + if (!$field['prefix'] && !$field['fname']) {
1183 + if ($field['mname']) {
1184 + $elements[] = $this->auto_field(
1185 + $field,
1186 + array(
1187 + 'type' => 'e2pdf-html',
1188 + 'block' => true,
1189 + 'float' => true,
1190 + 'properties' => array(
1191 + 'top' => '20',
1192 + 'left' => '20',
1193 + 'right' => '20',
1194 + 'width' => $field['lname'] ? $width / 2 . '%' : $width . '%',
1195 + 'height' => 'auto',
1196 + 'value' => $field['mname_label'],
1197 + ),
1198 + )
1199 + );
587 1200
588 - if ($field['prefix']) {
589 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
590 - 'top' => '20',
591 - 'left' => '20',
592 - 'right' => '20',
593 - 'block' => true,
594 - 'float' => true,
595 - 'width' => $field['fname'] ? $width / 2 . '%' : $width . '%',
596 - 'properties' => array(
597 - 'value' => $field['prefix_label'],
598 - )
599 - ));
600 -
601 - $options_tmp = array();
602 - if (function_exists('forminator_get_name_prefixes')) {
603 - $options = forminator_get_name_prefixes();
604 - foreach ($options as $key => $option) {
605 - $options_tmp[] = $key;
606 - }
1201 + $elements[] = $this->auto_field(
1202 + $field,
1203 + array(
1204 + 'type' => 'e2pdf-input',
1205 + 'properties' => array(
1206 + 'top' => '5',
1207 + 'width' => '100%',
1208 + 'height' => 'auto',
1209 + 'value' => '{' . $field['element_id'] . '-middle-name' . $repeater . '}',
1210 + ),
1211 + )
1212 + );
607 1213 }
608 1214
609 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
610 - 'properties' => array(
611 - 'options' => implode("\n", $options_tmp),
612 - 'value' => "{" . $field['element_id'] . "-prefix" . "}",
613 - )
614 - ));
615 - }
1215 + if ($field['lname']) {
1216 + $elements[] = $this->auto_field(
1217 + $field,
1218 + array(
1219 + 'type' => 'e2pdf-html',
1220 + 'block' => true,
1221 + 'float' => true,
1222 + 'properties' => array(
1223 + 'top' => '20',
1224 + 'left' => '20',
1225 + 'right' => '20',
1226 + 'width' => $field['mname'] ? $width / 2 . '%' : $width . '%',
1227 + 'height' => 'auto',
1228 + 'value' => $field['lname_label'],
1229 + ),
1230 + )
1231 + );
616 1232
617 - if ($field['fname']) {
618 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
619 - 'top' => '20',
620 - 'left' => '20',
621 - 'right' => '20',
622 - 'block' => true,
623 - 'float' => true,
624 - 'width' => $field['prefix'] ? ($width / 2) . '%' : $width . '%',
625 - 'properties' => array(
626 - 'value' => $field['fname_label'],
627 - )
628 - ));
1233 + $elements[] = $this->auto_field(
1234 + $field,
1235 + array(
1236 + 'type' => 'e2pdf-input',
1237 + 'properties' => array(
1238 + 'top' => '5',
1239 + 'width' => '100%',
1240 + 'height' => 'auto',
1241 + 'value' => '{' . $field['element_id'] . '-last-name' . $repeater . '}',
1242 + ),
1243 + )
1244 + );
1245 + }
1246 + } else {
1247 + if ($field['prefix']) {
1248 + $elements[] = $this->auto_field(
1249 + $field,
1250 + array(
1251 + 'type' => 'e2pdf-html',
1252 + 'block' => true,
1253 + 'float' => true,
1254 + 'properties' => array(
1255 + 'top' => '20',
1256 + 'left' => '20',
1257 + 'right' => '20',
1258 + 'width' => $field['fname'] ? $width / 2 . '%' : $width . '%',
1259 + 'height' => 'auto',
1260 + 'value' => $field['prefix_label'],
1261 + ),
1262 + )
1263 + );
629 1264
1265 + $options_tmp = array();
1266 + if (function_exists('forminator_get_name_prefixes')) {
1267 + $options = forminator_get_name_prefixes();
1268 + foreach ($options as $key => $option) {
1269 + $options_tmp[] = $key;
1270 + }
1271 + }
630 1272
631 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
632 - 'properties' => array(
633 - 'value' => "{" . $field['element_id'] . "-first-name" . "}",
634 - )
635 - ));
636 - }
1273 + $elements[] = $this->auto_field(
1274 + $field,
1275 + array(
1276 + 'type' => 'e2pdf-select',
1277 + 'properties' => array(
1278 + 'top' => '5',
1279 + 'width' => '100%',
1280 + 'height' => 'auto',
1281 + 'options' => implode("\n", $options_tmp),
1282 + 'value' => '{' . $field['element_id'] . '-prefix' . $repeater . '}',
1283 + ),
1284 + )
1285 + );
637 1286
638 - $block = false;
639 - if (!$field['prefix'] && !$field['fname']) {
640 - $block = true;
641 - }
1287 + if ($field['mname'] && $field['fname']) {
1288 + $elements[] = $this->auto_field(
1289 + $field,
1290 + array(
1291 + 'type' => 'e2pdf-html',
1292 + 'properties' => array(
1293 + 'top' => '20',
1294 + 'width' => $field['lname'] ? '100%' : '200%',
1295 + 'right' => $field['lname'] ? '0' : '-40',
1296 + 'height' => 'auto',
1297 + 'value' => $field['mname_label'],
1298 + ),
1299 + )
1300 + );
642 1301
643 - if ($field['mname']) {
644 - $settings = array(
645 - 'block' => array(
646 - 'width' => $width,
647 - 'top' => '0',
648 - 'left' => '0',
649 - 'right' => '0',
650 - 'add_width' => '0',
651 - 'margin_left' => '0'
652 - ),
653 - 'field' => array(
654 - 'width' => '100%',
655 - 'top' => '0',
656 - 'left' => '0',
657 - 'right' => '0',
658 - 'add_width' => '0',
659 - 'margin_left' => '0'
660 - )
661 - );
1302 + $elements[] = $this->auto_field(
1303 + $field,
1304 + array(
1305 + 'type' => 'e2pdf-input',
1306 + 'properties' => array(
1307 + 'top' => '5',
1308 + 'width' => $field['lname'] ? '100%' : '200%',
1309 + 'height' => 'auto',
1310 + 'right' => $field['lname'] ? '0' : '-40',
1311 + 'value' => '{' . $field['element_id'] . '-middle-name' . $repeater . '}',
1312 + ),
1313 + )
1314 + );
1315 + } elseif ($field['lname'] && !$field['mname'] && $field['fname']) {
662 1316
663 - if ($block) {
664 - $settings['block']['top'] = '20';
665 - $settings['block']['left'] = '20';
666 - $settings['block']['right'] = '20';
667 - $settings['block']['width'] = ($field['lname'] ? ($width / 2) : $width) . '%';
668 - } else {
669 - $settings['block']['top'] = '40';
670 - $settings['field']['top'] = '60';
671 - if ($field['prefix'] && $field['fname']) {
672 - $settings['block']['left'] = '-100%';
673 - $settings['block']['margin_left'] = '-40';
674 - if (!$field['lname']) {
675 - $settings['block']['add_width'] = '40';
676 - }
677 - }
1317 + $elements[] = $this->auto_field(
1318 + $field,
1319 + array(
1320 + 'type' => 'e2pdf-html',
1321 + 'properties' => array(
1322 + 'top' => '20',
1323 + 'width' => $field['mname'] ? '100%' : '200%',
1324 + 'height' => 'auto',
1325 + 'right' => $field['mname'] ? '0' : '-40',
1326 + 'value' => $field['lname_label'],
1327 + ),
1328 + )
1329 + );
678 1330
679 - if ($field['prefix'] && $field['fname'] && !$field['lname']) {
680 - $settings['block']['width'] = '200%';
681 - } elseif ($field['lname'] && (!$field['prefix'] || !$field['fname'])) {
682 - $settings['block']['width'] = '45%';
683 - } else {
684 - $settings['block']['width'] = '100%';
1331 + $elements[] = $this->auto_field(
1332 + $field,
1333 + array(
1334 + 'type' => 'e2pdf-input',
1335 + 'properties' => array(
1336 + 'top' => '5',
1337 + 'width' => $field['mname'] ? '100%' : '200%',
1338 + 'height' => 'auto',
1339 + 'right' => $field['mname'] ? '0' : '-40',
1340 + 'value' => '{' . $field['element_id'] . '-last-name' . $repeater . '}',
1341 + ),
1342 + )
1343 + );
685 1344 }
686 -
687 - $settings['field']['width'] = $settings['block']['width'];
688 - $settings['field']['left'] = $settings['block']['left'];
689 - $settings['field']['right'] = $settings['block']['right'];
690 - $settings['field']['add_width'] = $settings['block']['add_width'];
691 - $settings['field']['margin_left'] = $settings['block']['margin_left'];
692 1345 }
693 1346
694 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
695 - 'top' => $settings['block']['top'],
696 - 'left' => $settings['block']['left'],
697 - 'right' => $settings['block']['right'],
698 - 'add_width' => $settings['block']['add_width'],
699 - 'margin_left' => $settings['block']['margin_left'],
700 - 'block' => $block,
701 - 'float' => true,
702 - 'width' => $settings['block']['width'],
703 - 'properties' => array(
704 - 'value' => $field['mname_label'],
705 - )
706 - ));
1347 + if ($field['fname']) {
1348 + $elements[] = $this->auto_field(
1349 + $field,
1350 + array(
1351 + 'type' => 'e2pdf-html',
1352 + 'block' => true,
1353 + 'float' => true,
1354 + 'properties' => array(
1355 + 'top' => '20',
1356 + 'left' => '20',
1357 + 'right' => '20',
1358 + 'width' => $field['prefix'] ? ($width / 2) . '%' : $width . '%',
1359 + 'height' => 'auto',
1360 + 'value' => $field['fname_label'],
1361 + ),
1362 + )
1363 + );
707 1364
708 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
709 - 'top' => $settings['field']['top'],
710 - 'left' => $settings['field']['left'],
711 - 'add_width' => $settings['field']['add_width'],
712 - 'margin_left' => $settings['field']['margin_left'],
713 - 'width' => $settings['field']['width'],
714 - 'properties' => array(
715 - 'value' => "{" . $field['element_id'] . "-middle-name" . "}",
716 - )
717 - ));
718 - }
1365 + $elements[] = $this->auto_field(
1366 + $field,
1367 + array(
1368 + 'type' => 'e2pdf-input',
1369 + 'properties' => array(
1370 + 'top' => '5',
1371 + 'width' => '100%',
1372 + 'height' => 'auto',
1373 + 'value' => '{' . $field['element_id'] . '-first-name' . $repeater . '}',
1374 + ),
1375 + )
1376 + );
719 1377
720 - if ($field['lname']) {
1378 + if ($field['lname'] && $field['mname'] && $field['prefix']) {
1379 + $elements[] = $this->auto_field(
1380 + $field,
1381 + array(
1382 + 'type' => 'e2pdf-html',
1383 + 'properties' => array(
1384 + 'top' => '20',
1385 + 'width' => $field['mname'] ? '100%' : '200%',
1386 + 'height' => 'auto',
1387 + 'right' => $field['mname'] ? '0' : '-40',
1388 + 'value' => $field['lname_label'],
1389 + ),
1390 + )
1391 + );
721 1392
722 - $settings = array(
723 - 'block' => array(
724 - 'width' => $width,
725 - 'top' => '0',
726 - 'left' => '0',
727 - 'right' => '0',
728 - 'add_width' => '0',
729 - 'margin_left' => '0'
730 - ),
731 - 'field' => array(
732 - 'width' => '100%',
733 - 'top' => '0',
734 - 'left' => '0',
735 - 'right' => '0',
736 - 'add_width' => '0',
737 - 'margin_left' => '0'
738 - )
739 - );
1393 + $elements[] = $this->auto_field(
1394 + $field,
1395 + array(
1396 + 'type' => 'e2pdf-input',
1397 + 'properties' => array(
1398 + 'top' => '5',
1399 + 'width' => $field['mname'] ? '100%' : '200%',
1400 + 'height' => 'auto',
1401 + 'right' => $field['mname'] ? '0' : '-40',
1402 + 'value' => '{' . $field['element_id'] . '-last-name' . $repeater . '}',
1403 + ),
1404 + )
1405 + );
1406 + }
1407 + }
740 1408
741 - if ($block) {
742 - $settings['block']['top'] = '20';
743 - $settings['block']['left'] = '20';
744 - $settings['block']['right'] = '20';
745 - $settings['block']['width'] = ($field['mname'] ? ($width / 2) : $width) . '%';
746 - } else {
747 - $settings['block']['top'] = '40';
748 - $settings['field']['top'] = '60';
1409 + if (!$field['prefix'] || !$field['fname']) {
1410 + if ($field['mname']) {
1411 + $elements[] = $this->auto_field(
1412 + $field,
1413 + array(
1414 + 'type' => 'e2pdf-html',
1415 + 'properties' => array(
1416 + 'top' => '20',
1417 + 'right' => $field['lname'] ? '20' : '0',
1418 + 'width' => $field['lname'] ? '50%' : '100%',
1419 + 'height' => 'auto',
1420 + 'value' => $field['mname_label'],
1421 + ),
1422 + )
1423 + );
1424 + }
749 1425
1426 + if ($field['lname']) {
1427 + $elements[] = $this->auto_field(
1428 + $field,
1429 + array(
1430 + 'type' => 'e2pdf-html',
1431 + 'float' => $field['mname'] ? true : false,
1432 + 'properties' => array(
1433 + 'top' => '20',
1434 + 'left' => $field['mname'] ? '20' : '0',
1435 + 'width' => $field['mname'] ? '50%' : '100%',
1436 + 'height' => 'auto',
1437 + 'value' => $field['lname_label'],
1438 + ),
1439 + )
1440 + );
1441 + }
750 1442
751 - if ($field['prefix'] && $field['fname'] && !$field['mname']) {
752 - $settings['block']['width'] = '200%';
753 - $settings['block']['add_width'] = '40';
754 - $settings['block']['margin_left'] = '-40';
755 - $settings['block']['left'] = '-100%';
756 - } elseif ($field['mname'] && (!$field['prefix'] || !$field['fname'])) {
757 - $settings['block']['width'] = '45%';
758 - $settings['block']['left'] = '55%';
759 - } else {
760 - $settings['block']['width'] = '100%';
1443 + if ($field['mname']) {
1444 + $elements[] = $this->auto_field(
1445 + $field,
1446 + array(
1447 + 'type' => 'e2pdf-input',
1448 + 'properties' => array(
1449 + 'top' => '5',
1450 + 'right' => $field['lname'] ? '20' : '0',
1451 + 'width' => $field['lname'] ? '50%' : '100%',
1452 + 'height' => 'auto',
1453 + 'value' => '{' . $field['element_id'] . '-middle-name' . $repeater . '}',
1454 + ),
1455 + )
1456 + );
761 1457 }
762 1458
763 - $settings['field']['width'] = $settings['block']['width'];
764 - $settings['field']['left'] = $settings['block']['left'];
765 - $settings['field']['right'] = $settings['block']['right'];
766 - $settings['field']['add_width'] = $settings['block']['add_width'];
767 - $settings['field']['margin_left'] = $settings['block']['margin_left'];
1459 + if ($field['lname']) {
1460 + $elements[] = $this->auto_field(
1461 + $field,
1462 + array(
1463 + 'type' => 'e2pdf-input',
1464 + 'float' => $field['mname'] ? true : false,
1465 + 'properties' => array(
1466 + 'top' => '5',
1467 + 'left' => $field['mname'] ? '20' : '0',
1468 + 'width' => $field['mname'] ? '50%' : '100%',
1469 + 'height' => 'auto',
1470 + 'value' => '{' . $field['element_id'] . '-last-name' . $repeater . '}',
1471 + ),
1472 + )
1473 + );
1474 + }
768 1475 }
769 -
770 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
771 - 'top' => $settings['block']['top'],
772 - 'left' => $settings['block']['left'],
773 - 'right' => $settings['block']['right'],
774 - 'add_width' => $settings['block']['add_width'],
775 - 'margin_left' => $settings['block']['margin_left'],
776 - 'block' => $block,
777 - 'float' => true,
778 - 'width' => $settings['block']['width'],
779 - 'properties' => array(
780 - 'value' => $field['lname_label'],
781 - )
782 - ));
783 -
784 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
785 - 'top' => $settings['field']['top'],
786 - 'left' => $settings['field']['left'],
787 - 'add_width' => $settings['field']['add_width'],
788 - 'margin_left' => $settings['field']['margin_left'],
789 - 'width' => $settings['field']['width'],
790 - 'properties' => array(
791 - 'value' => "{" . $field['element_id'] . "-last-name" . "}",
792 - )
793 - ));
794 1476 }
795 1477 } elseif ($field['type'] == 'date' && $field['field_type'] == 'select') {
796 1478
797 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
798 - 'top' => '20',
799 - 'left' => '20',
800 - 'right' => '20',
801 - 'block' => true,
802 - 'float' => $float,
803 - 'width' => $width . "%",
804 - 'properties' => array(
805 - 'value' => $field['field_label'],
806 - )
807 - ));
1479 + $elements[] = $this->auto_field(
1480 + $field,
1481 + array(
1482 + 'type' => 'e2pdf-html',
1483 + 'block' => true,
1484 + 'float' => true,
1485 + 'properties' => array(
1486 + 'top' => '20',
1487 + 'left' => '20',
1488 + 'right' => '20',
1489 + 'width' => $width . '%',
1490 + 'height' => 'auto',
1491 + 'value' => $field['field_label'],
1492 + ),
1493 + )
1494 + );
808 1495
809 1496 $days = array();
810 1497 $months = array();
811 1498 $years = array();
@@ -820,752 +1507,1730 @@
820 1507 foreach ($options as $option) {
821 1508 $months[] = $option['value'];
822 1509 }
823 1510
824 - $options = $forminator_date->get_years($field['min_year'], $field['max_year']);
1511 + $options = $forminator_date->get_years(isset($field['min_year']) ? $field['min_year'] : '', isset($field['max_year']) ? $field['max_year'] : '');
825 1512 foreach ($options as $option) {
826 1513 $years[] = $option['value'];
827 1514 }
828 1515 }
829 1516
830 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
831 - 'left' => '0',
832 - 'width' => '30%',
833 - 'properties' => array(
834 - 'options' => implode("\n", $days),
835 - 'value' => "{" . $field['element_id'] . "-month" . "}",
836 - )
837 - ));
1517 + $elements[] = $this->auto_field(
1518 + $field,
1519 + array(
1520 + 'type' => 'e2pdf-select',
1521 + 'properties' => array(
1522 + 'top' => '5',
1523 + 'width' => '30%',
1524 + 'height' => 'auto',
1525 + 'options' => implode("\n", $days),
1526 + 'value' => '{' . $field['element_id'] . '-month' . $repeater . '}',
1527 + ),
1528 + )
1529 + );
838 1530
839 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
840 - 'left' => '35%',
841 - 'width' => '30%',
842 - 'properties' => array(
843 - 'options' => implode("\n", $months),
844 - 'value' => "{" . $field['element_id'] . "-day" . "}",
845 - )
846 - ));
1531 + $elements[] = $this->auto_field(
1532 + $field,
1533 + array(
1534 + 'type' => 'e2pdf-select',
1535 + 'float' => true,
1536 + 'properties' => array(
1537 + 'top' => '5',
1538 + 'left' => '5%',
1539 + 'right' => '5%',
1540 + 'width' => '40%',
1541 + 'height' => 'auto',
1542 + 'options' => implode("\n", $months),
1543 + 'value' => '{' . $field['element_id'] . '-day' . $repeater . '}',
1544 + ),
1545 + )
1546 + );
847 1547
848 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
849 - 'left' => '70%',
850 - 'width' => '30%',
851 - 'properties' => array(
852 - 'options' => implode("\n", $years),
853 - 'value' => "{" . $field['element_id'] . "-year" . "}",
854 - )
855 - ));
1548 + $elements[] = $this->auto_field(
1549 + $field,
1550 + array(
1551 + 'type' => 'e2pdf-select',
1552 + 'float' => true,
1553 + 'properties' => array(
1554 + 'top' => '5',
1555 + 'width' => '30%',
1556 + 'height' => 'auto',
1557 + 'options' => implode("\n", $years),
1558 + 'value' => '{' . $field['element_id'] . '-year' . $repeater . '}',
1559 + ),
1560 + )
1561 + );
856 1562 } elseif ($field['type'] == 'date' && $field['field_type'] == 'input') {
857 1563
858 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
859 - 'top' => '20',
860 - 'left' => '20',
861 - 'right' => '20',
862 - 'block' => true,
863 - 'float' => $float,
864 - 'width' => $width . "%",
865 - 'properties' => array(
866 - 'value' => $field['field_label'],
867 - )
868 - ));
1564 + $elements[] = $this->auto_field(
1565 + $field,
1566 + array(
1567 + 'type' => 'e2pdf-html',
1568 + 'block' => true,
1569 + 'float' => true,
1570 + 'properties' => array(
1571 + 'top' => '20',
1572 + 'left' => '20',
1573 + 'right' => '20',
1574 + 'width' => $width . '%',
1575 + 'height' => 'auto',
1576 + 'value' => $field['field_label'],
1577 + ),
1578 + )
1579 + );
869 1580
870 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
871 - 'left' => '0',
872 - 'width' => '30%',
873 - 'properties' => array(
874 - 'value' => "{" . $field['element_id'] . "-month" . "}",
875 - )
876 - ));
1581 + $elements[] = $this->auto_field(
1582 + $field,
1583 + array(
1584 + 'type' => 'e2pdf-input',
1585 + 'properties' => array(
1586 + 'top' => '5',
1587 + 'width' => '30%',
1588 + 'height' => 'auto',
1589 + 'value' => '{' . $field['element_id'] . '-month' . $repeater . '}',
1590 + ),
1591 + )
1592 + );
877 1593
878 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
879 - 'left' => '35%',
880 - 'width' => '30%',
881 - 'properties' => array(
882 - 'value' => "{" . $field['element_id'] . "-day" . "}",
883 - )
884 - ));
1594 + $elements[] = $this->auto_field(
1595 + $field,
1596 + array(
1597 + 'type' => 'e2pdf-input',
1598 + 'float' => true,
1599 + 'properties' => array(
1600 + 'top' => '5',
1601 + 'left' => '5%',
1602 + 'right' => '5%',
1603 + 'width' => '40%',
1604 + 'height' => 'auto',
1605 + 'value' => '{' . $field['element_id'] . '-day' . $repeater . '}',
1606 + ),
1607 + )
1608 + );
885 1609
886 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
887 - 'left' => '70%',
888 - 'width' => '30%',
889 - 'properties' => array(
890 - 'value' => "{" . $field['element_id'] . "-year" . "}",
891 - )
892 - ));
1610 + $elements[] = $this->auto_field(
1611 + $field,
1612 + array(
1613 + 'float' => true,
1614 + 'type' => 'e2pdf-input',
1615 + 'properties' => array(
1616 + 'top' => '5',
1617 + 'width' => '30%',
1618 + 'height' => 'auto',
1619 + 'value' => '{' . $field['element_id'] . '-year' . $repeater . '}',
1620 + ),
1621 + )
1622 + );
893 1623 } else {
894 1624
895 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
896 - 'top' => '20',
897 - 'left' => '20',
898 - 'right' => '20',
899 - 'block' => true,
900 - 'float' => $float,
901 - 'width' => $width . "%",
902 - 'properties' => array(
903 - 'value' => $field['field_label'],
904 - )
905 - ));
1625 + $elements[] = $this->auto_field(
1626 + $field,
1627 + array(
1628 + 'type' => 'e2pdf-html',
1629 + 'block' => true,
1630 + 'float' => true,
1631 + 'properties' => array(
1632 + 'top' => '20',
1633 + 'left' => '20',
1634 + 'right' => '20',
1635 + 'width' => $width . '%',
1636 + 'height' => 'auto',
1637 + 'value' => $field['field_label'],
1638 + ),
1639 + )
1640 + );
906 1641
907 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
908 - 'properties' => array(
909 - 'value' => "{" . $field['element_id'] . "}",
910 - )
911 - ));
1642 + $elements[] = $this->auto_field(
1643 + $field,
1644 + array(
1645 + 'type' => 'e2pdf-input',
1646 + 'properties' => array(
1647 + 'top' => '5',
1648 + 'width' => '100%',
1649 + 'height' => 'auto',
1650 + 'value' => '{' . $field['element_id'] . $repeater . '}',
1651 + ),
1652 + )
1653 + );
1654 +
1655 + if (isset($field['description']) && $field['description']) {
1656 + $elements[] = $this->auto_field(
1657 + $field,
1658 + array(
1659 + 'type' => 'e2pdf-html',
1660 + 'float' => false,
1661 + 'properties' => array(
1662 + 'top' => '5',
1663 + 'width' => '100%',
1664 + 'height' => 'auto',
1665 + 'value' => $field['description'],
1666 + ),
1667 + )
1668 + );
1669 + }
912 1670 }
913 1671 break;
1672 + case 'postdata':
1673 + if (isset($field['post_title']) && $field['post_title']) {
1674 + if (isset($field['post_title_label']) && $field['post_title_label']) {
1675 + $elements[] = $this->auto_field(
1676 + $field,
1677 + array(
1678 + 'type' => 'e2pdf-html',
1679 + 'block' => true,
1680 + 'float' => true,
1681 + 'properties' => array(
1682 + 'top' => '20',
1683 + 'left' => '20',
1684 + 'right' => '20',
1685 + 'width' => '100%',
1686 + 'height' => 'auto',
1687 + 'value' => $field['post_title_label'],
1688 + ),
1689 + )
1690 + );
1691 + }
1692 + $elements[] = $this->auto_field(
1693 + $field,
1694 + array(
1695 + 'type' => 'e2pdf-input',
1696 + 'properties' => array(
1697 + 'top' => '5',
1698 + 'width' => '100%',
1699 + 'height' => 'auto',
1700 + 'value' => '{' . $field['element_id'] . '-post-title}',
1701 + ),
1702 + )
1703 + );
1704 + }
914 1705
1706 + if (isset($field['post_content']) && $field['post_content']) {
1707 + if (isset($field['post_content_label']) && $field['post_content_label']) {
1708 + $elements[] = $this->auto_field(
1709 + $field,
1710 + array(
1711 + 'type' => 'e2pdf-html',
1712 + 'block' => true,
1713 + 'float' => true,
1714 + 'properties' => array(
1715 + 'top' => '20',
1716 + 'left' => '20',
1717 + 'right' => '20',
1718 + 'width' => '100%',
1719 + 'height' => 'auto',
1720 + 'value' => $field['post_content_label'],
1721 + ),
1722 + )
1723 + );
1724 + }
915 1725
916 - case 'address':
1726 + $elements[] = $this->auto_field(
1727 + $field,
1728 + array(
1729 + 'type' => 'e2pdf-textarea',
1730 + 'properties' => array(
1731 + 'top' => '5',
1732 + 'width' => '100%',
1733 + 'height' => 'auto',
1734 + 'value' => '{' . $field['element_id'] . '-post-content}',
1735 + ),
1736 + )
1737 + );
1738 + }
917 1739
918 - $block = true;
919 - $top = 0;
1740 + if (isset($field['post_excerpt']) && $field['post_excerpt']) {
1741 + if (isset($field['post_excerpt_label']) && $field['post_excerpt_label']) {
1742 + $elements[] = $this->auto_field(
1743 + $field,
1744 + array(
1745 + 'type' => 'e2pdf-html',
1746 + 'block' => true,
1747 + 'float' => true,
1748 + 'properties' => array(
1749 + 'top' => '20',
1750 + 'left' => '20',
1751 + 'right' => '20',
1752 + 'width' => '100%',
1753 + 'height' => 'auto',
1754 + 'value' => $field['post_excerpt_label'],
1755 + ),
1756 + )
1757 + );
1758 + }
920 1759
921 - if ($field['street_address']) {
922 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
923 - 'top' => '20',
924 - 'left' => '20',
925 - 'right' => '20',
926 - 'block' => $block,
927 - 'float' => true,
928 - 'width' => $width . '%',
929 - 'properties' => array(
930 - 'value' => $field['street_address_label'],
931 - )
932 - ));
1760 + $elements[] = $this->auto_field(
1761 + $field,
1762 + array(
1763 + 'type' => 'e2pdf-textarea',
1764 + 'properties' => array(
1765 + 'top' => '5',
1766 + 'width' => '100%',
1767 + 'height' => 'auto',
1768 + 'value' => '{' . $field['element_id'] . '-post-excerpt}',
1769 + ),
1770 + )
1771 + );
1772 + }
933 1773
1774 + if (isset($field['post_image']) && $field['post_image']) {
1775 + if (isset($field['post_image_label']) && $field['post_image_label']) {
1776 + $elements[] = $this->auto_field(
1777 + $field,
1778 + array(
1779 + 'type' => 'e2pdf-html',
1780 + 'block' => true,
1781 + 'float' => true,
1782 + 'properties' => array(
1783 + 'top' => '20',
1784 + 'left' => '20',
1785 + 'right' => '20',
1786 + 'width' => '100%',
1787 + 'height' => 'auto',
1788 + 'value' => $field['post_image_label'],
1789 + ),
1790 + )
1791 + );
1792 + }
1793 + $elements[] = $this->auto_field(
1794 + $field,
1795 + array(
1796 + 'type' => 'e2pdf-input',
1797 + 'properties' => array(
1798 + 'top' => '5',
1799 + 'width' => '100%',
1800 + 'height' => 'auto',
1801 + 'value' => '{' . $field['element_id'] . '-post-image}',
1802 + ),
1803 + )
1804 + );
1805 + }
934 1806
935 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
936 - 'properties' => array(
937 - 'value' => "{" . $field['element_id'] . "-street_address" . "}",
938 - )
939 - ));
1807 + if (isset($field['category']) && $field['category']) {
1808 + if (isset($field['category_label']) && $field['category_label']) {
1809 + $elements[] = $this->auto_field(
1810 + $field,
1811 + array(
1812 + 'type' => 'e2pdf-html',
1813 + 'block' => true,
1814 + 'float' => true,
1815 + 'properties' => array(
1816 + 'top' => '20',
1817 + 'left' => '20',
1818 + 'right' => '20',
1819 + 'width' => '100%',
1820 + 'height' => 'auto',
1821 + 'value' => $field['category_label'],
1822 + ),
1823 + )
1824 + );
1825 + }
1826 + $elements[] = $this->auto_field(
1827 + $field,
1828 + array(
1829 + 'type' => 'e2pdf-input',
1830 + 'properties' => array(
1831 + 'top' => '5',
1832 + 'width' => '100%',
1833 + 'height' => 'auto',
1834 + 'value' => '{' . $field['element_id'] . '-category}',
1835 + ),
1836 + )
1837 + );
1838 + }
940 1839
941 - $block = false;
942 - $top += 40;
1840 + if (isset($field['post_tag']) && $field['post_tag']) {
1841 + if (isset($field['post_tag_label']) && $field['post_tag_label']) {
1842 + $elements[] = $this->auto_field(
1843 + $field,
1844 + array(
1845 + 'type' => 'e2pdf-html',
1846 + 'block' => true,
1847 + 'float' => true,
1848 + 'properties' => array(
1849 + 'top' => '20',
1850 + 'left' => '20',
1851 + 'right' => '20',
1852 + 'width' => '100%',
1853 + 'height' => 'auto',
1854 + 'value' => $field['post_tag_label'],
1855 + ),
1856 + )
1857 + );
1858 + }
1859 + $elements[] = $this->auto_field(
1860 + $field,
1861 + array(
1862 + 'type' => 'e2pdf-input',
1863 + 'properties' => array(
1864 + 'top' => '5',
1865 + 'width' => '100%',
1866 + 'height' => 'auto',
1867 + 'value' => '{' . $field['element_id'] . '-post_tag}',
1868 + ),
1869 + )
1870 + );
943 1871 }
944 1872
945 - if ($field['address_line']) {
1873 + if (isset($field['post_custom_fields']) && $field['post_custom_fields']) {
1874 + $elements[] = $this->auto_field(
1875 + $field,
1876 + array(
1877 + 'type' => 'e2pdf-html',
1878 + 'block' => true,
1879 + 'float' => true,
1880 + 'properties' => array(
1881 + 'top' => '20',
1882 + 'left' => '20',
1883 + 'right' => '20',
1884 + 'width' => '100%',
1885 + 'height' => 'auto',
1886 + 'value' => __('Custom Fields', 'forminator'),
1887 + ),
1888 + )
1889 + );
946 1890
947 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
948 - 'top' => $block ? '20' : $top,
949 - 'left' => $block ? '20' : '0',
950 - 'right' => $block ? '20' : '0',
951 - 'block' => $block,
952 - 'float' => true,
953 - 'width' => $block ? $width . '%' : '100%',
954 - 'properties' => array(
955 - 'value' => $field['address_line_label'],
956 - )
957 - ));
1891 + $elements[] = $this->auto_field(
1892 + $field,
1893 + array(
1894 + 'type' => 'e2pdf-input',
1895 + 'properties' => array(
1896 + 'top' => '5',
1897 + 'width' => '100%',
1898 + 'height' => 'auto',
1899 + 'value' => '{' . $field['element_id'] . '-post-custom}',
1900 + ),
1901 + )
1902 + );
1903 + }
1904 + break;
958 1905
959 - if (!$block) {
960 - $top += 20;
961 - }
1906 + case 'address':
1907 + if (!$field['street_address'] && !$field['address_line']) {
962 1908
963 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
964 - 'top' => $block ? '0' : $top,
965 - 'width' => $block ? $width . '%' : '100%',
966 - 'properties' => array(
967 - 'value' => "{" . $field['element_id'] . "-address_line" . "}",
968 - )
969 - ));
1909 + if (!$field['address_city'] && !$field['address_state']) {
1910 + if ($field['address_zip']) {
1911 + $elements[] = $this->auto_field(
1912 + $field,
1913 + array(
1914 + 'type' => 'e2pdf-html',
1915 + 'block' => true,
1916 + 'float' => true,
1917 + 'properties' => array(
1918 + 'top' => '20',
1919 + 'left' => '20',
1920 + 'right' => '20',
1921 + 'width' => $field['address_country'] ? $width / 2 . '%' : $width . '%',
1922 + 'height' => 'auto',
1923 + 'value' => $field['address_zip_label'],
1924 + ),
1925 + )
1926 + );
970 1927
971 - $top += 40;
972 - $block = false;
973 - }
1928 + $elements[] = $this->auto_field(
1929 + $field,
1930 + array(
1931 + 'type' => 'e2pdf-input',
1932 + 'properties' => array(
1933 + 'top' => '5',
1934 + 'width' => '100%',
1935 + 'height' => 'auto',
1936 + 'value' => '{' . $field['element_id'] . '-zip' . $repeater . '}',
1937 + ),
1938 + )
1939 + );
1940 + }
974 1941
975 - if ($field['address_city']) {
1942 + if ($field['address_country']) {
1943 + $elements[] = $this->auto_field(
1944 + $field,
1945 + array(
1946 + 'type' => 'e2pdf-html',
1947 + 'block' => true,
1948 + 'float' => true,
1949 + 'properties' => array(
1950 + 'top' => '20',
1951 + 'left' => '20',
1952 + 'right' => '20',
1953 + 'width' => $field['address_zip'] ? $width / 2 . '%' : $width . '%',
1954 + 'height' => 'auto',
1955 + 'value' => $field['address_country_label'],
1956 + ),
1957 + )
1958 + );
976 1959
977 - $settings = array(
978 - 'block' => array(
979 - 'width' => $width,
980 - 'top' => '0',
981 - 'left' => '0',
982 - 'right' => '0',
983 - 'add_width' => '0',
984 - 'margin_left' => '0'
985 - ),
986 - 'field' => array(
987 - 'width' => '100%',
988 - 'top' => '0',
989 - 'left' => '0',
990 - 'right' => '0',
991 - 'add_width' => '0',
992 - 'margin_left' => '0'
993 - )
994 - );
1960 + $options_tmp = array();
1961 + if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
1962 + $options = forminator_to_field_array(forminator_get_countries_list(), true);
1963 + foreach ($options as $option) {
1964 + $options_tmp[] = $option['value'];
1965 + }
1966 + }
995 1967
996 - if ($block) {
997 - $settings['block']['top'] = '20';
998 - $settings['block']['left'] = '20';
999 - $settings['block']['right'] = '20';
1000 - $settings['block']['width'] = ($field['address_state'] ? ($width / 2) : $width) . '%';
1968 + $elements[] = $this->auto_field(
1969 + $field,
1970 + array(
1971 + 'type' => 'e2pdf-select',
1972 + 'properties' => array(
1973 + 'top' => '5',
1974 + 'width' => '100%',
1975 + 'height' => 'auto',
1976 + 'options' => implode("\n", $options_tmp),
1977 + 'value' => '{' . $field['element_id'] . '-country' . $repeater . '}',
1978 + ),
1979 + )
1980 + );
1981 + }
1982 + } else {
1001 1983
1002 - $top += 40;
1003 - } else {
1004 - $settings['block']['top'] = $top;
1005 - $settings['field']['top'] = $top + 20;
1984 + if ($field['address_city']) {
1985 + $elements[] = $this->auto_field(
1986 + $field,
1987 + array(
1988 + 'type' => 'e2pdf-html',
1989 + 'block' => true,
1990 + 'float' => true,
1991 + 'properties' => array(
1992 + 'top' => '20',
1993 + 'left' => '20',
1994 + 'right' => '20',
1995 + 'width' => $field['address_state'] ? $width / 2 . '%' : $width . '%',
1996 + 'height' => 'auto',
1997 + 'value' => $field['address_city_label'],
1998 + ),
1999 + )
2000 + );
1006 2001
2002 + $elements[] = $this->auto_field(
2003 + $field,
2004 + array(
2005 + 'type' => 'e2pdf-input',
2006 + 'properties' => array(
2007 + 'top' => '5',
2008 + 'width' => '100%',
2009 + 'height' => 'auto',
2010 + 'value' => '{' . $field['element_id'] . '-city' . $repeater . '}',
2011 + ),
2012 + )
2013 + );
1007 2014
1008 - if ($field['address_state']) {
1009 - $settings['block']['width'] = '45%';
1010 - } else {
1011 - $settings['block']['width'] = '100%';
1012 - }
2015 + if ($field['address_zip'] && $field['address_state']) {
2016 + $elements[] = $this->auto_field(
2017 + $field,
2018 + array(
2019 + 'type' => 'e2pdf-html',
2020 + 'properties' => array(
2021 + 'top' => '20',
2022 + 'right' => $field['address_country'] ? '0' : '-40',
2023 + 'width' => $field['address_country'] ? '100%' : '200%',
2024 + 'height' => 'auto',
2025 + 'value' => $field['address_zip_label'],
2026 + ),
2027 + )
2028 + );
1013 2029
1014 - $settings['field']['width'] = $settings['block']['width'];
1015 - $settings['field']['left'] = $settings['block']['left'];
1016 - $settings['field']['right'] = $settings['block']['right'];
1017 - $settings['field']['add_width'] = $settings['block']['add_width'];
1018 - $settings['field']['margin_left'] = $settings['block']['margin_left'];
2030 + $elements[] = $this->auto_field(
2031 + $field,
2032 + array(
2033 + 'type' => 'e2pdf-input',
2034 + 'properties' => array(
2035 + 'top' => '5',
2036 + 'right' => $field['address_country'] ? '0' : '-40',
2037 + 'width' => $field['address_country'] ? '100%' : '200%',
2038 + 'height' => 'auto',
2039 + 'value' => '{' . $field['element_id'] . '-zip' . $repeater . '}',
2040 + ),
2041 + )
2042 + );
2043 + } elseif ($field['address_country'] && !$field['address_zip'] && $field['address_state']) {
1019 2044
2045 + $elements[] = $this->auto_field(
2046 + $field,
2047 + array(
2048 + 'type' => 'e2pdf-html',
2049 + 'properties' => array(
2050 + 'top' => '20',
2051 + 'right' => $field['address_zip'] ? '0' : '-40',
2052 + 'width' => $field['address_zip'] ? '100%' : '200%',
2053 + 'height' => 'auto',
2054 + 'value' => $field['address_country_label'],
2055 + ),
2056 + )
2057 + );
1020 2058
1021 - if (!$field['address_state']) {
1022 - $top += 60;
2059 + $options_tmp = array();
2060 + if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
2061 + $options = forminator_to_field_array(forminator_get_countries_list(), true);
2062 + foreach ($options as $option) {
2063 + $options_tmp[] = $option['value'];
2064 + }
2065 + }
2066 +
2067 + $elements[] = $this->auto_field(
2068 + $field,
2069 + array(
2070 + 'type' => 'e2pdf-select',
2071 + 'properties' => array(
2072 + 'top' => '5',
2073 + 'right' => $field['address_zip'] ? '0' : '-40',
2074 + 'width' => $field['address_zip'] ? '100%' : '200%',
2075 + 'height' => 'auto',
2076 + 'options' => implode("\n", $options_tmp),
2077 + 'value' => '{' . $field['element_id'] . '-country' . $repeater . '}',
2078 + ),
2079 + )
2080 + );
2081 + }
1023 2082 }
1024 - }
1025 2083
1026 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1027 - 'top' => $settings['block']['top'],
1028 - 'left' => $settings['block']['left'],
1029 - 'right' => $settings['block']['right'],
1030 - 'block' => $block,
1031 - 'float' => true,
1032 - 'width' => $settings['block']['width'],
1033 - 'properties' => array(
1034 - 'value' => $field['address_city_label'],
1035 - )
1036 - ));
2084 + if ($field['address_state']) {
2085 + $elements[] = $this->auto_field(
2086 + $field,
2087 + array(
2088 + 'type' => 'e2pdf-html',
2089 + 'block' => true,
2090 + 'float' => true,
2091 + 'properties' => array(
2092 + 'top' => '20',
2093 + 'left' => '20',
2094 + 'right' => '20',
2095 + 'width' => $field['address_city'] ? ($width / 2) . '%' : $width . '%',
2096 + 'height' => 'auto',
2097 + 'value' => $field['address_state_label'],
2098 + ),
2099 + )
2100 + );
1037 2101
1038 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
1039 - 'top' => $settings['field']['top'],
1040 - 'left' => $settings['field']['left'],
1041 - 'right' => $settings['field']['right'],
1042 - 'width' => $settings['field']['width'],
1043 - 'properties' => array(
1044 - 'value' => "{" . $field['element_id'] . "-city" . "}",
1045 - )
1046 - ));
2102 + $elements[] = $this->auto_field(
2103 + $field,
2104 + array(
2105 + 'type' => 'e2pdf-input',
2106 + 'properties' => array(
2107 + 'top' => '5',
2108 + 'width' => '100%',
2109 + 'height' => 'auto',
2110 + 'value' => '{' . $field['element_id'] . '-state' . $repeater . '}',
2111 + ),
2112 + )
2113 + );
1047 2114
1048 - if ($block && $field['address_state']) {
1049 - $block = true;
1050 - } else {
1051 - $block = false;
1052 - }
1053 - }
2115 + if ($field['address_country'] && $field['address_zip'] && $field['address_city']) {
1054 2116
1055 - if ($field['address_state']) {
1056 - $settings = array(
1057 - 'block' => array(
1058 - 'width' => $width,
1059 - 'top' => '0',
1060 - 'left' => '0',
1061 - 'right' => '0',
1062 - 'add_width' => '0',
1063 - 'margin_left' => '0'
1064 - ),
1065 - 'field' => array(
1066 - 'width' => '100%',
1067 - 'top' => '0',
1068 - 'left' => '0',
1069 - 'right' => '0',
1070 - 'add_width' => '0',
1071 - 'margin_left' => '0'
1072 - )
1073 - );
2117 + $elements[] = $this->auto_field(
2118 + $field,
2119 + array(
2120 + 'type' => 'e2pdf-html',
2121 + 'properties' => array(
2122 + 'top' => '20',
2123 + 'right' => $field['address_zip'] ? '0' : '-40',
2124 + 'width' => $field['address_zip'] ? '100%' : '200%',
2125 + 'height' => 'auto',
2126 + 'value' => $field['address_country_label'],
2127 + ),
2128 + )
2129 + );
1074 2130
1075 - if ($block) {
1076 - $settings['block']['top'] = '20';
1077 - $settings['block']['left'] = '20';
1078 - $settings['block']['right'] = '20';
1079 - $settings['block']['width'] = ($field['address_city'] ? ($width / 2) : $width) . '%';
1080 - } else {
1081 - $settings['block']['top'] = $top;
1082 - $settings['field']['top'] = $top + 20;
2131 + $options_tmp = array();
2132 + if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
2133 + $options = forminator_to_field_array(forminator_get_countries_list(), true);
2134 + foreach ($options as $option) {
2135 + $options_tmp[] = $option['value'];
2136 + }
2137 + }
1083 2138
1084 -
1085 - if ($field['address_city']) {
1086 - $settings['block']['width'] = '45%';
1087 - $settings['block']['left'] = '55%';
1088 - } else {
1089 - $settings['block']['width'] = '100%';
2139 + $elements[] = $this->auto_field(
2140 + $field,
2141 + array(
2142 + 'type' => 'e2pdf-select',
2143 + 'properties' => array(
2144 + 'top' => '5',
2145 + 'right' => $field['address_zip'] ? '0' : '-40',
2146 + 'width' => $field['address_zip'] ? '100%' : '200%',
2147 + 'height' => 'auto',
2148 + 'options' => implode("\n", $options_tmp),
2149 + 'value' => '{' . $field['element_id'] . '-country' . $repeater . '}',
2150 + ),
2151 + )
2152 + );
2153 + }
1090 2154 }
1091 2155
1092 - $settings['field']['width'] = $settings['block']['width'];
1093 - $settings['field']['left'] = $settings['block']['left'];
1094 - $settings['field']['right'] = $settings['block']['right'];
1095 - $settings['field']['add_width'] = $settings['block']['add_width'];
1096 - $settings['field']['margin_left'] = $settings['block']['margin_left'];
2156 + if (!$field['address_city'] || !$field['address_state']) {
2157 + if ($field['address_zip']) {
2158 + $elements[] = $this->auto_field(
2159 + $field,
2160 + array(
2161 + 'type' => 'e2pdf-html',
2162 + 'properties' => array(
2163 + 'top' => '20',
2164 + 'right' => $field['address_country'] ? '20' : '0',
2165 + 'width' => $field['address_country'] ? '50%' : '100%',
2166 + 'height' => 'auto',
2167 + 'value' => $field['address_zip_label'],
2168 + ),
2169 + )
2170 + );
2171 + }
1097 2172
1098 - $top += 60;
1099 - }
2173 + if ($field['address_country']) {
1100 2174
1101 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1102 - 'top' => $settings['block']['top'],
1103 - 'left' => $settings['block']['left'],
1104 - 'right' => $settings['block']['right'],
1105 - 'block' => $block,
1106 - 'float' => true,
1107 - 'width' => $settings['block']['width'],
1108 - 'properties' => array(
1109 - 'value' => $field['address_state_label'],
1110 - )
1111 - ));
2175 + $elements[] = $this->auto_field(
2176 + $field,
2177 + array(
2178 + 'type' => 'e2pdf-html',
2179 + 'float' => $field['address_zip'] ? true : false,
2180 + 'properties' => array(
2181 + 'top' => '20',
2182 + 'left' => $field['address_zip'] ? '20' : '0',
2183 + 'width' => $field['address_zip'] ? '50%' : '100%',
2184 + 'height' => 'auto',
2185 + 'value' => $field['address_country_label'],
2186 + ),
2187 + )
2188 + );
2189 + }
1112 2190
1113 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
1114 - 'top' => $settings['field']['top'],
1115 - 'left' => $settings['field']['left'],
1116 - 'right' => $settings['field']['right'],
1117 - 'width' => $settings['field']['width'],
1118 - 'properties' => array(
1119 - 'value' => "{" . $field['element_id'] . "-state" . "}",
1120 - )
1121 - ));
2191 + if ($field['address_zip']) {
2192 + $elements[] = $this->auto_field(
2193 + $field,
2194 + array(
2195 + 'type' => 'e2pdf-input',
2196 + 'properties' => array(
2197 + 'top' => '5',
2198 + 'right' => $field['address_country'] ? '20' : '0',
2199 + 'width' => $field['address_country'] ? '50%' : '100%',
2200 + 'height' => 'auto',
2201 + 'value' => '{' . $field['element_id'] . '-zip' . $repeater . '}',
2202 + ),
2203 + )
2204 + );
2205 + }
1122 2206
1123 - $block = false;
1124 - }
2207 + if ($field['address_country']) {
2208 + $options_tmp = array();
2209 + if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
2210 + $options = forminator_to_field_array(forminator_get_countries_list(), true);
2211 + foreach ($options as $option) {
2212 + $options_tmp[] = $option['value'];
2213 + }
2214 + }
1125 2215
1126 - if ($field['address_zip']) {
1127 - $settings = array(
1128 - 'block' => array(
1129 - 'width' => $width,
1130 - 'top' => '0',
1131 - 'left' => '0',
1132 - 'right' => '0',
1133 - 'add_width' => '0',
1134 - 'margin_left' => '0'
1135 - ),
1136 - 'field' => array(
1137 - 'width' => '100%',
1138 - 'top' => '0',
1139 - 'left' => '0',
1140 - 'right' => '0',
1141 - 'add_width' => '0',
1142 - 'margin_left' => '0'
1143 - )
1144 - );
1145 -
1146 - if ($block) {
1147 - $settings['block']['top'] = '20';
1148 - $settings['block']['left'] = '20';
1149 - $settings['block']['right'] = '20';
1150 - $settings['block']['width'] = ($field['address_country'] ? ($width / 2) : $width) . '%';
1151 - } else {
1152 - $settings['block']['top'] = $top;
1153 - $settings['field']['top'] = $top + 20;
1154 - if ($field['address_city'] && $field['address_state'] && !$field['street_address'] && !$field['address_line']) {
1155 - $settings['block']['left'] = '-100%';
1156 - $settings['block']['margin_left'] = '-40';
1157 - if (!$field['address_country']) {
1158 - $settings['block']['add_width'] = '40';
2216 + $elements[] = $this->auto_field(
2217 + $field,
2218 + array(
2219 + 'type' => 'e2pdf-select',
2220 + 'float' => $field['address_zip'] ? true : false,
2221 + 'properties' => array(
2222 + 'top' => '5',
2223 + 'left' => $field['address_zip'] ? '20' : '0',
2224 + 'width' => $field['address_zip'] ? '50%' : '100%',
2225 + 'height' => 'auto',
2226 + 'options' => implode("\n", $options_tmp),
2227 + 'value' => '{' . $field['element_id'] . '-country' . $repeater . '}',
2228 + ),
2229 + )
2230 + );
1159 2231 }
1160 2232 }
2233 + }
2234 + } else {
1161 2235
1162 - if ($field['address_city'] && $field['address_state'] && !$field['address_country'] && !$field['street_address'] && !$field['address_line']) {
1163 - $settings['block']['width'] = '200%';
1164 - } elseif ($field['address_country'] && ($field['street_address'] || $field['address_line'] || (!$field['address_city'] || !$field['address_state']))) {
1165 - $settings['block']['width'] = '45%';
1166 - } else {
1167 - $settings['block']['width'] = '100%';
2236 + if ($field['street_address']) {
2237 + $elements[] = $this->auto_field(
2238 + $field,
2239 + array(
2240 + 'type' => 'e2pdf-html',
2241 + 'block' => true,
2242 + 'float' => true,
2243 + 'properties' => array(
2244 + 'top' => '20',
2245 + 'left' => '20',
2246 + 'right' => '20',
2247 + 'width' => $width . '%',
2248 + 'height' => 'auto',
2249 + 'value' => $field['street_address_label'],
2250 + ),
2251 + )
2252 + );
2253 +
2254 + $elements[] = $this->auto_field(
2255 + $field,
2256 + array(
2257 + 'type' => 'e2pdf-input',
2258 + 'properties' => array(
2259 + 'top' => '5',
2260 + 'width' => '100%',
2261 + 'height' => 'auto',
2262 + 'value' => '{' . $field['element_id'] . '-street_address' . $repeater . '}',
2263 + ),
2264 + )
2265 + );
2266 + }
2267 +
2268 + if ($field['address_line']) {
2269 +
2270 + if ($field['address_line_label']) {
2271 + $elements[] = $this->auto_field(
2272 + $field,
2273 + array(
2274 + 'type' => 'e2pdf-html',
2275 + 'block' => $field['street_address'] ? false : true,
2276 + 'float' => $field['street_address'] ? false : true,
2277 + 'properties' => array(
2278 + 'top' => '20',
2279 + 'left' => $field['street_address'] ? '0' : '20',
2280 + 'right' => $field['street_address'] ? '0' : '20',
2281 + 'width' => $field['street_address'] ? '100%' : $width . '%',
2282 + 'height' => 'auto',
2283 + 'value' => $field['address_line_label'],
2284 + ),
2285 + )
2286 + );
1168 2287 }
1169 2288
1170 - $settings['field']['width'] = $settings['block']['width'];
1171 - $settings['field']['left'] = $settings['block']['left'];
1172 - $settings['field']['right'] = $settings['block']['right'];
1173 - $settings['field']['add_width'] = $settings['block']['add_width'];
1174 - $settings['field']['margin_left'] = $settings['block']['margin_left'];
2289 + $elements[] = $this->auto_field(
2290 + $field,
2291 + array(
2292 + 'type' => 'e2pdf-input',
2293 + 'properties' => array(
2294 + 'top' => $field['address_line_label'] ? '0' : '20',
2295 + 'width' => '100%',
2296 + 'height' => 'auto',
2297 + 'value' => '{' . $field['element_id'] . '-address_line' . $repeater . '}',
2298 + ),
2299 + )
2300 + );
1175 2301 }
1176 2302
1177 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1178 - 'top' => $settings['block']['top'],
1179 - 'left' => $settings['block']['left'],
1180 - 'right' => $settings['block']['right'],
1181 - 'add_width' => $settings['block']['add_width'],
1182 - 'margin_left' => $settings['block']['margin_left'],
1183 - 'block' => $block,
1184 - 'float' => true,
1185 - 'width' => $settings['block']['width'],
1186 - 'properties' => array(
1187 - 'value' => $field['address_zip_label'],
1188 - )
1189 - ));
2303 + if ($field['address_city']) {
1190 2304
2305 + $elements[] = $this->auto_field(
2306 + $field,
2307 + array(
2308 + 'type' => 'e2pdf-html',
2309 + 'properties' => array(
2310 + 'top' => '20',
2311 + 'right' => $field['address_state'] ? '20' : '0',
2312 + 'width' => $field['address_state'] ? '50%' : '100%',
2313 + 'height' => 'auto',
2314 + 'value' => $field['address_city_label'],
2315 + ),
2316 + )
2317 + );
2318 + }
1191 2319
1192 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
1193 - 'top' => $settings['field']['top'],
1194 - 'left' => $settings['field']['left'],
1195 - 'add_width' => $settings['field']['add_width'],
1196 - 'margin_left' => $settings['field']['margin_left'],
1197 - 'width' => $settings['field']['width'],
1198 - 'properties' => array(
1199 - 'value' => "{" . $field['element_id'] . "-zip" . "}",
1200 - )
1201 - ));
1202 - }
2320 + if ($field['address_state']) {
2321 + $elements[] = $this->auto_field(
2322 + $field,
2323 + array(
2324 + 'type' => 'e2pdf-html',
2325 + 'float' => $field['address_city'] ? true : false,
2326 + 'properties' => array(
2327 + 'top' => $field['address_city'] ? '0' : '20',
2328 + 'left' => $field['address_city'] ? '20' : '0',
2329 + 'width' => $field['address_city'] ? '50%' : '100%',
2330 + 'height' => 'auto',
2331 + 'value' => $field['address_state_label'],
2332 + ),
2333 + )
2334 + );
2335 + }
1203 2336
1204 - if ($field['address_country']) {
1205 - $settings = array(
1206 - 'block' => array(
1207 - 'width' => $width,
1208 - 'top' => '0',
1209 - 'left' => '0',
1210 - 'right' => '0',
1211 - 'add_width' => '0',
1212 - 'margin_left' => '0'
1213 - ),
1214 - 'field' => array(
1215 - 'width' => '100%',
1216 - 'top' => '0',
1217 - 'left' => '0',
1218 - 'right' => '0',
1219 - 'add_width' => '0',
1220 - 'margin_left' => '0'
1221 - )
1222 - );
2337 + if ($field['address_city']) {
2338 + $elements[] = $this->auto_field(
2339 + $field,
2340 + array(
2341 + 'type' => 'e2pdf-input',
2342 + 'properties' => array(
2343 + 'top' => '5',
2344 + 'right' => $field['address_state'] ? '20' : '0',
2345 + 'width' => $field['address_state'] ? '50%' : '100%',
2346 + 'height' => 'auto',
2347 + 'value' => '{' . $field['element_id'] . '-city' . $repeater . '}',
2348 + ),
2349 + )
2350 + );
2351 + }
1223 2352
1224 - if ($block) {
1225 - $settings['block']['top'] = '20';
1226 - $settings['block']['left'] = '20';
1227 - $settings['block']['right'] = '20';
1228 - $settings['block']['width'] = ($field['address_zip'] ? ($width / 2) : $width) . '%';
1229 - } else {
1230 - $settings['block']['top'] = $top;
1231 - $settings['field']['top'] = $top + 20;
2353 + if ($field['address_state']) {
2354 + $elements[] = $this->auto_field(
2355 + $field,
2356 + array(
2357 + 'type' => 'e2pdf-input',
2358 + 'float' => $field['address_city'] ? true : false,
2359 + 'properties' => array(
2360 + 'top' => '5',
2361 + 'left' => $field['address_city'] ? '20' : '0',
2362 + 'width' => $field['address_city'] ? '50%' : '100%',
2363 + 'height' => 'auto',
2364 + 'value' => '{' . $field['element_id'] . '-state' . $repeater . '}',
2365 + ),
2366 + )
2367 + );
2368 + }
1232 2369
1233 - if ($field['address_city'] && $field['address_state'] && !$field['address_zip'] && !$field['street_address'] && !$field['address_line']) {
1234 - $settings['block']['width'] = '200%';
1235 - $settings['block']['add_width'] = '40';
1236 - $settings['block']['margin_left'] = '-40';
1237 - $settings['block']['left'] = '-100%';
1238 - } elseif ($field['address_zip'] && ($field['street_address'] || $field['address_line'] || (!$field['address_city'] || !$field['address_state']))) {
1239 - $settings['block']['width'] = '45%';
1240 - $settings['block']['left'] = '55%';
1241 - } else {
1242 - $settings['block']['width'] = '100%';
1243 - }
2370 + if ($field['address_zip']) {
1244 2371
1245 - $settings['field']['width'] = $settings['block']['width'];
1246 - $settings['field']['left'] = $settings['block']['left'];
1247 - $settings['field']['right'] = $settings['block']['right'];
1248 - $settings['field']['add_width'] = $settings['block']['add_width'];
1249 - $settings['field']['margin_left'] = $settings['block']['margin_left'];
2372 + $elements[] = $this->auto_field(
2373 + $field,
2374 + array(
2375 + 'type' => 'e2pdf-html',
2376 + 'properties' => array(
2377 + 'top' => '20',
2378 + 'right' => $field['address_country'] ? '20' : '0',
2379 + 'width' => $field['address_country'] ? '50%' : '100%',
2380 + 'height' => 'auto',
2381 + 'value' => $field['address_zip_label'],
2382 + ),
2383 + )
2384 + );
1250 2385 }
1251 2386
1252 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1253 - 'top' => $settings['block']['top'],
1254 - 'left' => $settings['block']['left'],
1255 - 'right' => $settings['block']['right'],
1256 - 'add_width' => $settings['block']['add_width'],
1257 - 'margin_left' => $settings['block']['margin_left'],
1258 - 'block' => $block,
1259 - 'float' => true,
1260 - 'width' => $settings['block']['width'],
1261 - 'properties' => array(
1262 - 'value' => $field['address_country_label'],
1263 - )
1264 - ));
2387 + if ($field['address_country']) {
2388 + $elements[] = $this->auto_field(
2389 + $field,
2390 + array(
2391 + 'type' => 'e2pdf-html',
2392 + 'float' => $field['address_zip'] ? true : false,
2393 + 'properties' => array(
2394 + 'top' => '20',
2395 + 'left' => $field['address_zip'] ? '20' : '0',
2396 + 'width' => $field['address_zip'] ? '50%' : '100%',
2397 + 'height' => 'auto',
2398 + 'value' => $field['address_country_label'],
2399 + ),
2400 + )
2401 + );
2402 + }
1265 2403
1266 - $options_tmp = array();
1267 - if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
1268 - $options = forminator_to_field_array(forminator_get_countries_list(), true);
1269 - foreach ($options as $option) {
1270 - $options_tmp[] = $option['value'];
2404 + if ($field['address_zip']) {
2405 + $elements[] = $this->auto_field(
2406 + $field,
2407 + array(
2408 + 'type' => 'e2pdf-input',
2409 + 'properties' => array(
2410 + 'top' => '5',
2411 + 'right' => $field['address_country'] ? '20' : '0',
2412 + 'width' => $field['address_country'] ? '50%' : '100%',
2413 + 'height' => 'auto',
2414 + 'value' => '{' . $field['element_id'] . '-zip' . $repeater . '}',
2415 + ),
2416 + )
2417 + );
2418 + }
2419 +
2420 + if ($field['address_country']) {
2421 + $options_tmp = array();
2422 + if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
2423 + $options = forminator_to_field_array(forminator_get_countries_list(), true);
2424 + foreach ($options as $option) {
2425 + $options_tmp[] = $option['value'];
2426 + }
1271 2427 }
1272 - //can be value or label
2428 +
2429 + $elements[] = $this->auto_field(
2430 + $field,
2431 + array(
2432 + 'type' => 'e2pdf-select',
2433 + 'float' => $field['address_zip'] ? true : false,
2434 + 'properties' => array(
2435 + 'top' => '5',
2436 + 'left' => $field['address_zip'] ? '20' : '0',
2437 + 'width' => $field['address_zip'] ? '50%' : '100%',
2438 + 'height' => 'auto',
2439 + 'options' => implode("\n", $options_tmp),
2440 + 'value' => '{' . $field['element_id'] . '-country' . $repeater . '}',
2441 + ),
2442 + )
2443 + );
1273 2444 }
1274 -
1275 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
1276 - 'top' => $settings['field']['top'],
1277 - 'left' => $settings['field']['left'],
1278 - 'add_width' => $settings['field']['add_width'],
1279 - 'margin_left' => $settings['field']['margin_left'],
1280 - 'width' => $settings['field']['width'],
1281 - 'properties' => array(
1282 - 'options' => implode("\n", $options_tmp),
1283 - 'value' => "{" . $field['element_id'] . "-country" . "}",
1284 - )
1285 - ));
1286 2445 }
1287 2446 break;
1288 2447 case 'time':
1289 -
1290 2448 $hours = array();
1291 2449 $minutes = array();
1292 2450
1293 2451 if (class_exists('Forminator_Time')) {
1294 2452 $forminator_time = new Forminator_Time();
1295 - $options = $forminator_time->get_hours($field['time_type']);
2453 + $options = $forminator_time->get_hours($field['time_type'], '', '', false);
1296 2454 foreach ($options as $option) {
1297 2455 $hours[] = $option['value'];
1298 2456 }
1299 2457
1300 - $options = $forminator_time->get_minutes();
2458 + $options = $forminator_time->get_minutes($field['time_type'], '', '', false);
1301 2459 foreach ($options as $option) {
1302 2460 $minutes[] = $option['value'];
1303 2461 }
1304 2462 }
1305 2463
1306 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1307 - 'top' => '20',
1308 - 'left' => '20',
1309 - 'right' => '20',
1310 - 'block' => true,
1311 - 'float' => true,
1312 - 'width' => ($field['time_type'] == 'twelve' ? $width / 3 : $width / 2) . '%',
1313 - 'properties' => array(
1314 - 'value' => $field['hh_label'],
1315 - )
1316 - ));
2464 + $elements[] = $this->auto_field(
2465 + $field,
2466 + array(
2467 + 'type' => 'e2pdf-html',
2468 + 'block' => true,
2469 + 'float' => true,
2470 + 'properties' => array(
2471 + 'top' => '20',
2472 + 'left' => '20',
2473 + 'right' => '20',
2474 + 'width' => ($field['time_type'] == 'twelve' ? $width / 3 : $width / 2) . '%',
2475 + 'height' => 'auto',
2476 + 'value' => $field['hh_label'],
2477 + ),
2478 + )
2479 + );
1317 2480
1318 2481 if ($field['field_type'] == 'select') {
1319 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
1320 - 'properties' => array(
1321 - 'options' => implode("\n", $hours),
1322 - 'value' => "{" . $field['element_id'] . "-hours" . "}",
1323 - )
1324 - ));
2482 + $elements[] = $this->auto_field(
2483 + $field,
2484 + array(
2485 + 'type' => 'e2pdf-select',
2486 + 'properties' => array(
2487 + 'top' => '5',
2488 + 'width' => '100%',
2489 + 'height' => 'auto',
2490 + 'options' => implode("\n", $hours),
2491 + 'value' => '{' . $field['element_id'] . '-hours' . $repeater . '}',
2492 + ),
2493 + )
2494 + );
1325 2495 } else {
1326 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
1327 - 'properties' => array(
1328 - 'value' => "{" . $field['element_id'] . "-hours" . "}",
1329 - )
1330 - ));
2496 + $elements[] = $this->auto_field(
2497 + $field,
2498 + array(
2499 + 'type' => 'e2pdf-input',
2500 + 'properties' => array(
2501 + 'top' => '5',
2502 + 'width' => '100%',
2503 + 'height' => 'auto',
2504 + 'value' => '{' . $field['element_id'] . '-hours' . $repeater . '}',
2505 + ),
2506 + )
2507 + );
1331 2508 }
1332 2509
1333 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1334 - 'top' => '20',
1335 - 'left' => '20',
1336 - 'right' => '20',
1337 - 'block' => true,
1338 - 'float' => true,
1339 - 'width' => ($field['time_type'] == 'twelve' ? $width / 3 : $width / 2) . '%',
1340 - 'properties' => array(
1341 - 'value' => $field['mm_label'],
1342 - )
1343 - ));
2510 + $elements[] = $this->auto_field(
2511 + $field,
2512 + array(
2513 + 'type' => 'e2pdf-html',
2514 + 'block' => true,
2515 + 'float' => true,
2516 + 'properties' => array(
2517 + 'top' => '20',
2518 + 'left' => '20',
2519 + 'right' => '20',
2520 + 'width' => ($field['time_type'] == 'twelve' ? $width / 3 : $width / 2) . '%',
2521 + 'height' => 'auto',
2522 + 'value' => $field['mm_label'],
2523 + ),
2524 + )
2525 + );
1344 2526
1345 2527 if ($field['field_type'] == 'select') {
1346 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
1347 - 'properties' => array(
1348 - 'options' => implode("\n", $minutes),
1349 - 'value' => "{" . $field['element_id'] . "-minutes" . "}",
1350 - )
1351 - ));
2528 + $elements[] = $this->auto_field(
2529 + $field,
2530 + array(
2531 + 'type' => 'e2pdf-select',
2532 + 'properties' => array(
2533 + 'top' => '5',
2534 + 'width' => '100%',
2535 + 'height' => 'auto',
2536 + 'options' => implode("\n", $minutes),
2537 + 'value' => '{' . $field['element_id'] . '-minutes' . $repeater . '}',
2538 + ),
2539 + )
2540 + );
1352 2541 } else {
1353 - $elements[] = $this->auto_field($field, 'e2pdf-input', array(
1354 - 'properties' => array(
1355 - 'value' => "{" . $field['element_id'] . "-minutes" . "}",
1356 - )
1357 - ));
2542 + $elements[] = $this->auto_field(
2543 + $field,
2544 + array(
2545 + 'type' => 'e2pdf-input',
2546 + 'properties' => array(
2547 + 'top' => '5',
2548 + 'width' => '100%',
2549 + 'height' => 'auto',
2550 + 'value' => '{' . $field['element_id'] . '-minutes' . $repeater . '}',
2551 + ),
2552 + )
2553 + );
1358 2554 }
1359 2555
1360 2556 if ($field['time_type'] == 'twelve') {
1361 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1362 - 'top' => '20',
1363 - 'left' => '20',
1364 - 'right' => '20',
1365 - 'block' => true,
1366 - 'float' => $float,
1367 - 'width' => ($width / 3) . '%',
1368 - 'properties' => array(
1369 - 'value' => '',
1370 - )
1371 - ));
2557 + $elements[] = $this->auto_field(
2558 + $field,
2559 + array(
2560 + 'type' => 'e2pdf-html',
2561 + 'block' => true,
2562 + 'float' => true,
2563 + 'properties' => array(
2564 + 'top' => '20',
2565 + 'left' => '20',
2566 + 'right' => '20',
2567 + 'width' => ($width / 3) . '%',
2568 + 'height' => 'auto',
2569 + 'value' => '',
2570 + ),
2571 + )
2572 + );
1372 2573
1373 2574 $ampm = array(
1374 - 'am', 'pm'
2575 + 'am', 'pm',
1375 2576 );
1376 2577
1377 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
1378 - 'properties' => array(
1379 - 'options' => implode("\n", $ampm),
1380 - 'value' => "{" . $field['element_id'] . "-ampm" . "}",
1381 - )
1382 - ));
2578 + $elements[] = $this->auto_field(
2579 + $field,
2580 + array(
2581 + 'type' => 'e2pdf-select',
2582 + 'properties' => array(
2583 + 'top' => '5',
2584 + 'width' => '100%',
2585 + 'height' => 'auto',
2586 + 'options' => implode("\n", $ampm),
2587 + 'value' => '{' . $field['element_id'] . '-ampm' . $repeater . '}',
2588 + ),
2589 + )
2590 + );
1383 2591 }
1384 2592 break;
1385 - case 'html': {
2593 + case 'html':
2594 + if ($field['field_label']) {
2595 + $elements[] = $this->auto_field(
2596 + $field,
2597 + array(
2598 + 'type' => 'e2pdf-html',
2599 + 'block' => true,
2600 + 'properties' => array(
2601 + 'top' => '20',
2602 + 'left' => '20',
2603 + 'right' => '20',
2604 + 'width' => $width . '%',
2605 + 'height' => 'auto',
2606 + 'value' => $field['field_label'],
2607 + ),
2608 + )
2609 + );
1386 2610
1387 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1388 - 'top' => '20',
1389 - 'left' => '20',
1390 - 'right' => '20',
1391 - 'width' => $width . '%',
1392 - 'block' => true,
1393 - 'properties' => array(
1394 - 'value' => $field['field_label'],
2611 + $elements[] = $this->auto_field(
2612 + $field,
2613 + array(
2614 + 'type' => 'e2pdf-html',
2615 + 'properties' => array(
2616 + 'top' => '5',
2617 + 'width' => '100%',
2618 + 'height' => 'auto',
2619 + 'value' => $field['variations'],
2620 + ),
2621 + )
2622 + );
2623 + } else {
2624 + $elements[] = $this->auto_field(
2625 + $field,
2626 + array(
2627 + 'type' => 'e2pdf-html',
2628 + 'block' => true,
2629 + 'properties' => array(
2630 + 'top' => '20',
2631 + 'left' => '20',
2632 + 'right' => '20',
2633 + 'width' => $width . '%',
2634 + 'height' => 'auto',
2635 + 'value' => $field['variations'],
2636 + ),
2637 + )
2638 + );
2639 + }
2640 + break;
2641 + case 'section':
2642 + $section = '';
2643 + if ($field['section_title']) {
2644 + $section .= '<h2>' . $field['section_title'] . '</h2>';
2645 + }
2646 + if (isset($field['section_subtitle']) && $field['section_subtitle']) {
2647 + $section .= $field['section_subtitle'];
2648 + }
2649 + if ($section) {
2650 + $elements[] = $this->auto_field(
2651 + $field,
2652 + array(
2653 + 'type' => 'e2pdf-html',
2654 + 'block' => true,
2655 + 'properties' => array(
2656 + 'top' => '20',
2657 + 'left' => '20',
2658 + 'right' => '20',
2659 + 'width' => $width . '%',
2660 + 'height' => 'auto',
2661 + 'value' => $section,
2662 + ),
2663 + )
2664 + );
2665 + }
2666 + break;
2667 + case 'text':
2668 + $elements[] = $this->auto_field(
2669 + $field,
2670 + array(
2671 + 'type' => 'e2pdf-html',
2672 + 'block' => true,
2673 + 'float' => true,
2674 + 'properties' => array(
2675 + 'top' => '20',
2676 + 'left' => '20',
2677 + 'right' => '20',
2678 + 'width' => $width . '%',
2679 + 'height' => 'auto',
2680 + 'value' => $field['field_label'],
2681 + ),
1395 2682 )
1396 - ));
2683 + );
1397 2684
1398 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1399 - 'properties' => array(
1400 - 'height' => '100',
1401 - 'value' => $field['variations'],
2685 + if (isset($field['input_type']) && $field['input_type'] == 'line') {
2686 + $elements[] = $this->auto_field(
2687 + $field,
2688 + array(
2689 + 'type' => 'e2pdf-input',
2690 + 'properties' => array(
2691 + 'top' => '5',
2692 + 'width' => '100%',
2693 + 'height' => 'auto',
2694 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2695 + ),
2696 + )
2697 + );
2698 + } else {
2699 + $elements[] = $this->auto_field(
2700 + $field,
2701 + array(
2702 + 'type' => 'e2pdf-textarea',
2703 + 'properties' => array(
2704 + 'top' => '5',
2705 + 'width' => '100%',
2706 + 'height' => 'auto',
2707 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2708 + ),
2709 + )
2710 + );
2711 + }
2712 +
2713 + if (isset($field['description']) && $field['description']) {
2714 + $elements[] = $this->auto_field(
2715 + $field,
2716 + array(
2717 + 'type' => 'e2pdf-html',
2718 + 'float' => false,
2719 + 'properties' => array(
2720 + 'top' => '5',
2721 + 'width' => '100%',
2722 + 'height' => 'auto',
2723 + 'value' => $field['description'],
2724 + ),
2725 + )
2726 + );
2727 + }
2728 + break;
2729 + case 'upload':
2730 + case 'textarea':
2731 + $elements[] = $this->auto_field(
2732 + $field,
2733 + array(
2734 + 'type' => 'e2pdf-html',
2735 + 'block' => true,
2736 + 'float' => true,
2737 + 'properties' => array(
2738 + 'top' => '20',
2739 + 'left' => '20',
2740 + 'right' => '20',
2741 + 'width' => $width . '%',
2742 + 'height' => 'auto',
2743 + 'value' => $field['field_label'],
2744 + ),
1402 2745 )
1403 - ));
2746 + );
2747 + $elements[] = $this->auto_field(
2748 + $field,
2749 + array(
2750 + 'type' => 'e2pdf-textarea',
2751 + 'properties' => array(
2752 + 'top' => '5',
2753 + 'width' => '100%',
2754 + 'height' => 'auto',
2755 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2756 + 'text_auto_font_size' => '1',
2757 + ),
2758 + )
2759 + );
1404 2760
2761 + if (isset($field['description']) && $field['description']) {
2762 + $elements[] = $this->auto_field(
2763 + $field,
2764 + array(
2765 + 'type' => 'e2pdf-html',
2766 + 'float' => false,
2767 + 'properties' => array(
2768 + 'top' => '5',
2769 + 'width' => '100%',
2770 + 'height' => 'auto',
2771 + 'value' => $field['description'],
2772 + ),
2773 + )
2774 + );
2775 + }
2776 + break;
2777 + case 'slider':
2778 + $elements[] = $this->auto_field(
2779 + $field,
2780 + array(
2781 + 'type' => 'e2pdf-html',
2782 + 'block' => true,
2783 + 'float' => true,
2784 + 'properties' => array(
2785 + 'top' => '20',
2786 + 'left' => '20',
2787 + 'right' => '20',
2788 + 'width' => $width . '%',
2789 + 'height' => 'auto',
2790 + 'value' => $field['field_label'],
2791 + ),
2792 + )
2793 + );
1405 2794
1406 - break;
2795 + if (isset($field['slider_type']) && $field['slider_type'] == 'range') {
2796 + $elements[] = $this->auto_field(
2797 + $field,
2798 + array(
2799 + 'float' => true,
2800 + 'type' => 'e2pdf-input',
2801 + 'properties' => array(
2802 + 'top' => '5',
2803 + 'right' => '20',
2804 + 'width' => '50%',
2805 + 'height' => 'auto',
2806 + 'value' => '{' . $field['element_id'] . '-min' . $repeater . '}',
2807 + ),
2808 + )
2809 + );
2810 + $elements[] = $this->auto_field(
2811 + $field,
2812 + array(
2813 + 'float' => true,
2814 + 'type' => 'e2pdf-input',
2815 + 'properties' => array(
2816 + 'top' => '5',
2817 + 'left' => '20',
2818 + 'width' => '50%',
2819 + 'height' => 'auto',
2820 + 'value' => '{' . $field['element_id'] . '-max' . $repeater . '}',
2821 + ),
2822 + )
2823 + );
2824 + } else {
2825 + $elements[] = $this->auto_field(
2826 + $field,
2827 + array(
2828 + 'type' => 'e2pdf-input',
2829 + 'properties' => array(
2830 + 'top' => '5',
2831 + 'width' => '100%',
2832 + 'height' => 'auto',
2833 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2834 + ),
2835 + )
2836 + );
1407 2837 }
1408 - case 'text':
1409 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1410 - 'top' => '20',
1411 - 'left' => '20',
1412 - 'right' => '20',
1413 - 'width' => $width . '%',
1414 - 'block' => true,
1415 - 'properties' => array(
1416 - 'value' => $field['field_label'],
1417 - )
1418 - ));
2838 + if (isset($field['description']) && $field['description']) {
2839 + $elements[] = $this->auto_field(
2840 + $field,
2841 + array(
2842 + 'type' => 'e2pdf-html',
2843 + 'float' => false,
2844 + 'properties' => array(
2845 + 'top' => '5',
2846 + 'width' => '100%',
2847 + 'height' => 'auto',
2848 + 'value' => $field['description'],
2849 + ),
2850 + )
2851 + );
2852 + }
2853 + break;
2854 + case 'signature':
2855 + $elements[] = $this->auto_field(
2856 + $field,
2857 + array(
2858 + 'type' => 'e2pdf-html',
2859 + 'block' => true,
2860 + 'float' => true,
2861 + 'properties' => array(
2862 + 'top' => '20',
2863 + 'left' => '20',
2864 + 'right' => '20',
2865 + 'width' => $width . '%',
2866 + 'height' => 'auto',
2867 + 'value' => $field['field_label'],
2868 + ),
2869 + )
2870 + );
2871 + $elements[] = $this->auto_field(
2872 + $field,
2873 + array(
2874 + 'type' => 'e2pdf-signature',
2875 + 'properties' => array(
2876 + 'top' => '5',
2877 + 'width' => '100%',
2878 + 'height' => '150',
2879 + 'dimension' => '1',
2880 + 'block_dimension' => '1',
2881 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2882 + ),
2883 + )
2884 + );
1419 2885
1420 - $elements[] = $this->auto_field($field, 'e2pdf-textarea', array(
1421 - 'properties' => array(
1422 - 'value' => "{" . $field['element_id'] . "}",
1423 - )
1424 - ));
2886 + if (isset($field['description']) && $field['description']) {
2887 + $elements[] = $this->auto_field(
2888 + $field,
2889 + array(
2890 + 'type' => 'e2pdf-html',
2891 + 'float' => false,
2892 + 'properties' => array(
2893 + 'top' => '5',
2894 + 'width' => '100%',
2895 + 'height' => 'auto',
2896 + 'value' => $field['description'],
2897 + ),
2898 + )
2899 + );
2900 + }
1425 2901 break;
1426 - case 'select': {
1427 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1428 - 'top' => '20',
1429 - 'left' => '20',
1430 - 'right' => '20',
1431 - 'block' => true,
1432 - 'float' => true,
1433 - 'width' => $width . '%',
1434 - 'properties' => array(
1435 - 'value' => $field['field_label'],
2902 + case 'select':
2903 + $elements[] = $this->auto_field(
2904 + $field,
2905 + array(
2906 + 'type' => 'e2pdf-html',
2907 + 'block' => true,
2908 + 'float' => true,
2909 + 'properties' => array(
2910 + 'top' => '20',
2911 + 'left' => '20',
2912 + 'right' => '20',
2913 + 'width' => $width . '%',
2914 + 'height' => 'auto',
2915 + 'value' => $field['field_label'],
2916 + ),
1436 2917 )
1437 - ));
2918 + );
1438 2919
1439 - if ($field['value_type'] == 'radio') {
1440 - $top = 0;
1441 - foreach ($field['options'] as $opt_key => $option) {
1442 - if (is_array($option)) {
1443 - $elements[] = $this->auto_field($field, 'e2pdf-radio', array(
1444 - 'top' => $top,
1445 - 'properties' => array(
1446 - 'width' => '15',
1447 - 'height' => '15',
1448 - 'value' => "{" . $field['element_id'] . "}",
1449 - 'option' => $option['value'] ? $option['value'] : $option['label'],
1450 - 'group' => "group_" . $field['element_id']
2920 + if ($field['value_type'] == 'radio') {
2921 + foreach ($field['options'] as $opt_key => $option) {
2922 + if (is_array($option)) {
2923 + $elements[] = $this->auto_field(
2924 + $field,
2925 + array(
2926 + 'type' => 'e2pdf-radio',
2927 + 'properties' => array(
2928 + 'top' => '5',
2929 + 'width' => 'auto',
2930 + 'height' => 'auto',
2931 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2932 + 'option' => $option['value'] && !$use_labels ? $option['value'] : $option['label'],
2933 + 'group' => '{' . $field['element_id'] . $repeater . '}',
2934 + ),
1451 2935 )
1452 - ));
1453 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1454 - 'top' => $top,
1455 - 'left' => '20',
1456 - 'properties' => array(
1457 - 'value' => $option['label']
2936 + );
2937 + $elements[] = $this->auto_field(
2938 + $field,
2939 + array(
2940 + 'type' => 'e2pdf-html',
2941 + 'float' => true,
2942 + 'properties' => array(
2943 + 'left' => '5',
2944 + 'width' => '100%',
2945 + 'height' => 'auto',
2946 + 'value' => $option['label'],
2947 + ),
1458 2948 )
1459 - ));
1460 - }
1461 - $top = $top + 20;
2949 + );
1462 2950 }
1463 - } else {
2951 + }
2952 + } else {
2953 + $options_tmp = array();
2954 + foreach ($field['options'] as $option) {
2955 + $options_tmp[] = $option['value'] && !$use_labels ? $option['value'] : $option['label'];
2956 + }
2957 + $elements[] = $this->auto_field(
2958 + $field,
2959 + array(
2960 + 'type' => 'e2pdf-select',
2961 + 'properties' => array(
2962 + 'top' => '5',
2963 + 'width' => '100%',
2964 + 'height' => 'auto',
2965 + 'options' => implode("\n", $options_tmp),
2966 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2967 + ),
2968 + )
2969 + );
2970 + }
1464 2971
1465 - $options_tmp = array();
1466 - foreach ($field['options'] as $option) {
1467 - $options_tmp[] = $option['value'] ? $option['value'] : $option['label'];
1468 - }
2972 + if (isset($field['description']) && $field['description']) {
2973 + $elements[] = $this->auto_field(
2974 + $field,
2975 + array(
2976 + 'type' => 'e2pdf-html',
2977 + 'float' => false,
2978 + 'properties' => array(
2979 + 'top' => '5',
2980 + 'width' => '100%',
2981 + 'height' => 'auto',
2982 + 'value' => $field['description'],
2983 + ),
2984 + )
2985 + );
2986 + }
2987 + break;
2988 + case 'consent':
2989 + $elements[] = $this->auto_field(
2990 + $field,
2991 + array(
2992 + 'type' => 'e2pdf-html',
2993 + 'block' => true,
2994 + 'float' => true,
2995 + 'properties' => array(
2996 + 'top' => '20',
2997 + 'left' => '20',
2998 + 'right' => '20',
2999 + 'width' => $width . '%',
3000 + 'height' => 'auto',
3001 + 'value' => $field['field_label'],
3002 + ),
3003 + )
3004 + );
1469 3005
1470 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
3006 + $elements[] = $this->auto_field(
3007 + $field,
3008 + array(
3009 + 'type' => 'e2pdf-checkbox',
1471 3010 'properties' => array(
1472 - 'options' => implode("\n", $options_tmp),
1473 - 'value' => "{" . $field['element_id'] . "}",
3011 + 'top' => '5',
3012 + 'width' => 'auto',
3013 + 'height' => 'auto',
3014 + 'value' => '{' . $field['element_id'] . $repeater . '}',
3015 + 'option' => 'checked',
3016 + ),
3017 + )
3018 + );
3019 +
3020 + $elements[] = $this->auto_field(
3021 + $field,
3022 + array(
3023 + 'type' => 'e2pdf-html',
3024 + 'float' => true,
3025 + 'properties' => array(
3026 + 'left' => '5',
3027 + 'width' => '100%',
3028 + 'height' => 'auto',
3029 + 'value' => $field['consent_description'],
3030 + ),
3031 + )
3032 + );
3033 + break;
3034 + case 'checkbox':
3035 + $elements[] = $this->auto_field(
3036 + $field,
3037 + array(
3038 + 'type' => 'e2pdf-html',
3039 + 'block' => true,
3040 + 'float' => true,
3041 + 'properties' => array(
3042 + 'top' => '20',
3043 + 'left' => '20',
3044 + 'right' => '20',
3045 + 'width' => $width . '%',
3046 + 'height' => 'auto',
3047 + 'value' => $field['field_label'],
3048 + ),
3049 + )
3050 + );
3051 +
3052 + if ($field['value_type'] == 'multiselect') {
3053 + $options_tmp = array();
3054 + foreach ($field['options'] as $opt_key => $option) {
3055 + $options_tmp[] = $option['value'] && !$use_labels ? $option['value'] : $option['label'];
3056 + }
3057 + $elements[] = $this->auto_field(
3058 + $field,
3059 + array(
3060 + 'type' => 'e2pdf-select',
3061 + 'properties' => array(
3062 + 'top' => '5',
3063 + 'width' => '100%',
3064 + 'height' => '44',
3065 + 'multiline' => '1',
3066 + 'options' => implode("\n", $options_tmp),
3067 + 'value' => '{' . $field['element_id'] . $repeater . '}',
3068 + ),
1474 3069 )
1475 - ));
3070 + );
3071 + } else {
3072 + foreach ($field['options'] as $opt_key => $option) {
3073 + if (is_array($option)) {
3074 + $elements[] = $this->auto_field(
3075 + $field,
3076 + array(
3077 + 'type' => 'e2pdf-checkbox',
3078 + 'properties' => array(
3079 + 'top' => '5',
3080 + 'width' => 'auto',
3081 + 'height' => 'auto',
3082 + 'value' => '{' . $field['element_id'] . $repeater . '}',
3083 + 'option' => $option['value'] && !$use_labels ? $option['value'] : $option['label'],
3084 + ),
3085 + )
3086 + );
3087 + $elements[] = $this->auto_field(
3088 + $field,
3089 + array(
3090 + 'type' => 'e2pdf-html',
3091 + 'float' => true,
3092 + 'properties' => array(
3093 + 'left' => '5',
3094 + 'width' => '100%',
3095 + 'height' => 'auto',
3096 + 'value' => $option['label'],
3097 + ),
3098 + )
3099 + );
3100 + }
1476 3101 }
1477 - break;
1478 3102 }
1479 - case 'checkbox': {
1480 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1481 - 'top' => '20',
1482 - 'left' => '20',
1483 - 'right' => '20',
1484 - 'block' => true,
1485 - 'float' => true,
1486 - 'width' => $width . '%',
1487 - 'properties' => array(
1488 - 'value' => $field['field_label'],
1489 - )
1490 - ));
1491 3103
1492 - if ($field['value_type'] == 'multiselect') {
1493 - $options_tmp = array();
1494 - foreach ($field['options'] as $opt_key => $option) {
1495 - $options_tmp[] = $option['value'] ? $option['value'] : $option['label'];
1496 - }
1497 - $elements[] = $this->auto_field($field, 'e2pdf-select', array(
3104 + if (isset($field['description']) && $field['description']) {
3105 + $elements[] = $this->auto_field(
3106 + $field,
3107 + array(
3108 + 'type' => 'e2pdf-html',
3109 + 'float' => false,
3110 + 'properties' => array(
3111 + 'top' => '5',
3112 + 'width' => '100%',
3113 + 'height' => 'auto',
3114 + 'value' => $field['description'],
3115 + ),
3116 + )
3117 + );
3118 + }
3119 + break;
3120 +
3121 + case 'radio':
3122 + $elements[] = $this->auto_field(
3123 + $field,
3124 + array(
3125 + 'type' => 'e2pdf-html',
3126 + 'block' => true,
3127 + 'float' => true,
1498 3128 'properties' => array(
1499 - 'height' => '44',
1500 - 'multiline' => '1',
1501 - 'options' => implode("\n", $options_tmp),
1502 - 'value' => "{" . $field['element_id'] . "}",
1503 - )
1504 - ));
1505 - } else {
3129 + 'top' => '20',
3130 + 'left' => '20',
3131 + 'right' => '20',
3132 + 'width' => $width . '%',
3133 + 'height' => 'auto',
3134 + 'value' => $field['field_label'],
3135 + ),
3136 + )
3137 + );
1506 3138
1507 - $top = 0;
1508 - foreach ($field['options'] as $opt_key => $option) {
1509 - if (is_array($option)) {
1510 - $elements[] = $this->auto_field($field, 'e2pdf-checkbox', array(
1511 - 'top' => $top,
3139 + foreach ($field['options'] as $opt_key => $option) {
3140 + if (is_array($option)) {
3141 + $elements[] = $this->auto_field(
3142 + $field,
3143 + array(
3144 + 'type' => 'e2pdf-radio',
1512 3145 'properties' => array(
1513 - 'width' => '15',
1514 - 'height' => '15',
1515 - 'value' => "{" . $field['element_id'] . "}",
1516 - 'option' => $option['value'] ? $option['value'] : $option['label']
1517 - )
1518 - ));
1519 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1520 - 'top' => $top,
1521 - 'left' => '20',
3146 + 'top' => '5',
3147 + 'width' => 'auto',
3148 + 'height' => 'auto',
3149 + 'value' => '{' . $field['element_id'] . $repeater . '}',
3150 + 'option' => $option['value'] && !$use_labels ? $option['value'] : $option['label'],
3151 + 'group' => '{' . $field['element_id'] . $repeater . '}',
3152 + ),
3153 + )
3154 + );
3155 + $elements[] = $this->auto_field(
3156 + $field,
3157 + array(
3158 + 'type' => 'e2pdf-html',
3159 + 'float' => true,
1522 3160 'properties' => array(
1523 - 'value' => $option['label']
1524 - )
1525 - ));
1526 - }
1527 - $top = $top + 20;
1528 - }
3161 + 'left' => '5',
3162 + 'width' => '100%',
3163 + 'height' => 'auto',
3164 + 'value' => $option['label'],
3165 + ),
3166 + )
3167 + );
1529 3168 }
1530 - break;
1531 3169 }
1532 3170
3171 + if (isset($field['description']) && $field['description']) {
3172 + $elements[] = $this->auto_field(
3173 + $field,
3174 + array(
3175 + 'type' => 'e2pdf-html',
3176 + 'float' => false,
3177 + 'properties' => array(
3178 + 'top' => '5',
3179 + 'width' => '100%',
3180 + 'height' => 'auto',
3181 + 'value' => $field['description'],
3182 + ),
3183 + )
3184 + );
3185 + }
3186 + break;
1533 3187
1534 - case 'gdprcheckbox': {
1535 -
1536 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1537 - 'top' => '20',
1538 - 'left' => '20',
1539 - 'right' => '20',
1540 - 'block' => true,
1541 - 'float' => true,
1542 - 'width' => $width . '%',
1543 - 'properties' => array(
1544 - 'value' => '',
3188 + case 'gdprcheckbox':
3189 + $elements[] = $this->auto_field(
3190 + $field,
3191 + array(
3192 + 'type' => 'e2pdf-html',
3193 + 'block' => true,
3194 + 'float' => true,
3195 + 'properties' => array(
3196 + 'top' => '20',
3197 + 'left' => '20',
3198 + 'right' => '20',
3199 + 'width' => $width . '%',
3200 + 'height' => 'auto',
3201 + 'value' => '',
3202 + ),
1545 3203 )
1546 - ));
3204 + );
1547 3205
1548 - $elements[] = $this->auto_field($field, 'e2pdf-checkbox', array(
1549 - 'top' => '0',
1550 - 'properties' => array(
1551 - 'width' => '15',
1552 - 'height' => '15',
1553 - 'value' => "{" . $field['element_id'] . "}",
1554 - 'option' => 'true'
3206 + $elements[] = $this->auto_field(
3207 + $field,
3208 + array(
3209 + 'type' => 'e2pdf-checkbox',
3210 + 'properties' => array(
3211 + 'top' => '5',
3212 + 'width' => 'auto',
3213 + 'height' => 'auto',
3214 + 'value' => '{' . $field['element_id'] . $repeater . '}',
3215 + 'option' => 'true',
3216 + ),
1555 3217 )
1556 - ));
1557 - $elements[] = $this->auto_field($field, 'e2pdf-html', array(
1558 - 'top' => '0',
1559 - 'left' => '20',
1560 - 'properties' => array(
1561 - 'value' => $field['gdpr_description']
3218 + );
3219 + $elements[] = $this->auto_field(
3220 + $field,
3221 + array(
3222 + 'type' => 'e2pdf-html',
3223 + 'float' => true,
3224 + 'properties' => array(
3225 + 'left' => '5',
3226 + 'width' => '100%',
3227 + 'height' => 'auto',
3228 + 'value' => $field['gdpr_description'],
3229 + ),
1562 3230 )
1563 - ));
1564 - break;
1565 - }
1566 -
1567 -
3231 + );
3232 + break;
1568 3233 default:
1569 3234 break;
1570 3235 }
1571 3236 }
@@ -1573,8 +3238,10 @@
1573 3238
1574 3239 $response['page'] = array(
1575 3240 'bottom' => '20',
1576 3241 'top' => '20',
3242 + 'left' => '20',
3243 + 'right' => '20',
1577 3244 );
1578 3245
1579 3246 $response['elements'] = $elements;
1580 3247 return $response;
@@ -1579,127 +3246,139 @@
1579 3246 $response['elements'] = $elements;
1580 3247 return $response;
1581 3248 }
1582 3249
1583 - public function auto_field($field = false, $type = false, $options = array()) {
1584 -
1585 - if (!$field || !$type) {
3250 + // auto field
3251 + public function auto_field($field = false, $element = array()) {
3252 + if (!$field) {
1586 3253 return false;
1587 3254 }
1588 -
1589 - $element = array(
1590 - 'type' => $type,
1591 - 'properties' => isset($options['properties']) ? $options['properties'] : array(),
1592 - );
1593 -
1594 - $element['top'] = isset($options['top']) ? $options['top'] : '0';
1595 - $element['left'] = isset($options['left']) ? $options['left'] : '0';
1596 - $element['right'] = isset($options['right']) ? $options['right'] : '0';
1597 - $element['block'] = isset($options['block']) ? $options['block'] : false;
1598 - $element['float'] = isset($options['float']) ? $options['float'] : false;
1599 - $element['margin_left'] = isset($options['margin_left']) ? $options['margin_left'] : '0';
1600 - $element['margin_right'] = isset($options['margin_right']) ? $options['margin_right'] : '0';
1601 - $element['add_width'] = isset($options['add_width']) ? $options['add_width'] : '0';
1602 -
1603 - if (isset($options['width'])) {
1604 - $element['width'] = $options['width'];
3255 + if (!isset($element['block'])) {
3256 + $element['block'] = false;
1605 3257 }
1606 -
3258 + if (!isset($element['float'])) {
3259 + $element['float'] = false;
3260 + }
1607 3261 return $element;
1608 3262 }
1609 3263
1610 - /**
1611 - * Load actions for this extension
1612 - */
3264 + // load actions
1613 3265 public function load_actions() {
1614 3266 add_action('forminator_custom_form_submit_before_set_fields', array($this, 'action_forminator_custom_form_submit_before_set_fields'), 30, 3);
1615 - add_action('forminator_custom_form_mail_admin_message', array($this, 'action_forminator_mail_message'), 30, 5);
1616 - add_action('forminator_custom_form_mail_user_message', array($this, 'action_forminator_mail_message'), 30, 5);
1617 - add_action('forminator_custom_form_mail_before_send_mail', array($this, 'action_forminator_custom_form_mail_before_send_mail'), 30, 4);
1618 - add_action('forminator_custom_form_mail_after_send_mail', array($this, 'action_forminator_custom_form_mail_after_send_mail'), 30, 3);
3267 + add_action('forminator_custom_form_mail_admin_sent', array($this, 'action_forminator_custom_form_mail_admin_sent'), 30, 5);
1619 3268 }
1620 3269
1621 - /**
1622 - * Load filters for this extension
1623 - */
3270 + // load filters
1624 3271 public function load_filters() {
1625 - add_filter('forminator_custom_form_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30, 2);
1626 - add_filter('forminator_custom_form_ajax_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30, 2);
3272 + add_filter('forminator_custom_form_mail_admin_message', array($this, 'filter_forminator_mail_message'), 30, 5);
3273 + add_filter('forminator_custom_form_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30);
3274 + add_filter('forminator_custom_form_ajax_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30);
3275 +
3276 + // forminator 1.14.11 compatibility fix
3277 + add_filter('forminator_form_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30);
3278 + add_filter('forminator_form_ajax_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30);
1627 3279 }
1628 3280
3281 + // before set fields action
1629 3282 public function action_forminator_custom_form_submit_before_set_fields($entry, $form_id, $field_data_array) {
1630 - if ($entry && is_object($entry) && property_exists($entry, 'entry_id') && isset($entry->entry_id)) {
1631 - $this->set('dataset', $entry->entry_id);
3283 + if (class_exists('Forminator_API')) {
3284 + $form = Forminator_API::get_form($form_id);
3285 + if (!is_wp_error($form)) {
3286 + if ($form->is_prevent_store()) {
3287 + $this->set('field_data_array', $field_data_array);
3288 + $this->set('item', $form_id);
3289 + $this->set('dataset', 'is_prevent_store');
3290 + } elseif ($entry && isset($entry->entry_id)) {
3291 + $this->set('dataset', $entry->entry_id);
3292 + foreach ($field_data_array as $key => $field) {
3293 + if (isset($field['field_array']['custom_value']) && is_string($field['field_array']['custom_value']) && false !== strpos($field['field_array']['custom_value'], '[e2pdf-download')) {
3294 + Forminator_Front_Action::$info['field_data_array'][$key]['value'] = $this->filter_content($field['field_array']['custom_value']);
3295 + }
3296 + }
3297 + }
3298 + }
1632 3299 }
1633 3300 }
1634 3301
1635 - public function action_forminator_custom_form_mail_before_send_mail($mail, $custom_form, $data, $entry) {
1636 - add_filter('wp_mail', array($this, 'filter_wp_mail'), 30, 1);
1637 - }
1638 -
1639 - public function action_forminator_custom_form_mail_after_send_mail($mail, $custom_form, $data) {
3302 + // mail admin sent action
3303 + public function action_forminator_custom_form_mail_admin_sent($mail, $custom_form, $data, $entry, $recipients) {
1640 3304 remove_filter('wp_mail', array($this, 'filter_wp_mail'), 30);
1641 3305 $files = $this->helper->get('forminator_attachments');
1642 3306 if (is_array($files) && !empty($files)) {
3307 +
3308 + $saved = $this->helper->get('forminator_saved_attachments');
3309 + if (!is_array($saved)) {
3310 + $saved = array();
3311 + }
1643 3312 foreach ($files as $key => $file) {
1644 - $this->helper->delete_dir(dirname($file) . '/');
3313 + if (!in_array($file, $saved, false)) {
3314 + $this->helper->delete_dir(dirname($file) . '/');
3315 + }
1645 3316 }
1646 3317 $this->helper->deset('forminator_attachments');
3318 + $this->helper->deset('forminator_saved_attachments');
1647 3319 }
1648 3320 }
1649 3321
1650 - public function action_forminator_mail_message($message, $custom_form, $data, $entry, $mail) {
3322 + // mail message filter
3323 + public function filter_forminator_mail_message($message, $custom_form, $data, $entry, $mail) {
1651 3324 if (isset($message) && false !== strpos($message, '[')) {
1652 3325 $shortcode_tags = array(
1653 3326 'e2pdf-download',
1654 3327 'e2pdf-save',
1655 3328 'e2pdf-attachment',
1656 - 'e2pdf-adobesign'
3329 + 'e2pdf-adobesign',
3330 + 'e2pdf-zapier',
1657 3331 );
1658 3332
1659 3333 preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $message, $matches);
1660 -
1661 3334 $tagnames = array_intersect($shortcode_tags, $matches[1]);
1662 -
1663 3335 if (!empty($tagnames)) {
1664 - $pattern = get_shortcode_regex($tagnames);
1665 -
1666 - preg_match_all("/$pattern/", $message, $shortcodes);
3336 + preg_match_all('/' . $this->helper->load('shortcode')->get_shortcode_regex($tagnames) . '/', $message, $shortcodes);
1667 3337 foreach ($shortcodes[0] as $key => $shortcode_value) {
1668 - $shortcode = array();
1669 - $shortcode[1] = $shortcodes[1][$key];
1670 - $shortcode[2] = $shortcodes[2][$key];
1671 - $shortcode[3] = $shortcodes[3][$key];
1672 - $shortcode[4] = $shortcodes[4][$key];
1673 - $shortcode[5] = $shortcodes[5][$key];
1674 - $shortcode[6] = $shortcodes[6][$key];
1675 -
3338 + $shortcode = $this->helper->load('shortcode')->get_shortcode($shortcodes, $key);
1676 3339 $atts = shortcode_parse_atts($shortcode[3]);
1677 -
1678 - if (!array_key_exists('dataset', $atts) && array_key_exists('id', $atts)) {
3340 + $file = false;
3341 + if (!isset($atts['dataset']) && isset($atts['id'])) {
1679 3342 $template = new Model_E2pdf_Template();
1680 3343 $template->load($atts['id']);
1681 3344 if ($template->get('extension') === 'forminator') {
1682 - $entry_id = false;
1683 - if ($entry && is_object($entry) && property_exists($entry, 'entry_id') && isset($entry->entry_id)) {
1684 - $entry_id = $entry->entry_id;
3345 + if ($this->get('dataset')) {
3346 + $entry_id = $this->get('dataset');
3347 + } else {
3348 + $entry_id = isset($entry->entry_id) ? $entry->entry_id : false;
1685 3349 }
1686 3350 if ($entry_id) {
1687 - $atts['dataset'] = $entry_id;
1688 - $shortcode[3] .= " dataset=\"{$entry_id}\"";
3351 + if (($shortcode[2] === 'e2pdf-download' || $shortcode[2] === 'e2pdf-view' || $shortcode[2] === 'e2pdf-zapier') && $entry_id == 'is_prevent_store') { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedIf
3352 + } else {
3353 + if ($entry_id == 'is_prevent_store') {
3354 + add_filter('e2pdf_model_shortcode_extension_options', array($this, 'filter_e2pdf_model_shortcode_extension_options'), 30);
3355 + }
3356 + $atts['dataset'] = $entry_id;
3357 + $shortcode[3] .= ' dataset="' . $entry_id . '"';
3358 + }
1689 3359 }
1690 3360 }
1691 3361 }
1692 -
1693 - if ($shortcode[2] === 'e2pdf-save' || $shortcode[2] === 'e2pdf-attachment' || $shortcode[2] === 'e2pdf-adobesign') {
1694 - $shortcode[3] .= " apply=\"true\"";
3362 + if (!isset($atts['apply'])) {
3363 + $shortcode[3] .= ' apply="true"';
1695 3364 }
1696 -
1697 - $shortcode[3] .= " filter=\"true\"";
1698 -
1699 - if ($shortcode[2] === 'e2pdf-attachment') {
3365 + if (!isset($atts['filter'])) {
3366 + $shortcode[3] .= ' filter="true"';
3367 + }
3368 + if ($this->helper->load('shortcode')->is_attachment($shortcode, $atts)) {
1700 3369 $file = do_shortcode_tag($shortcode);
1701 3370 if ($file) {
3371 + $tmp = false;
3372 + if (substr($file, 0, 4) === 'tmp:') {
3373 + $file = substr($file, 4);
3374 + $tmp = true;
3375 + }
3376 + if ($shortcode[2] === 'e2pdf-save' || isset($atts['pdf'])) {
3377 + if (!$tmp) {
3378 + $this->helper->add('forminator_saved_attachments', $file);
3379 + }
3380 + }
1702 3381 $this->helper->add('forminator_attachments', $file);
1703 3382 }
1704 3383 $message = str_replace($shortcode_value, '', $message);
1705 3384 } else {
@@ -1704,74 +3383,90 @@
1704 3383 $message = str_replace($shortcode_value, '', $message);
1705 3384 } else {
1706 3385 $message = str_replace($shortcode_value, do_shortcode_tag($shortcode), $message);
1707 3386 }
3387 + remove_filter('e2pdf_model_shortcode_extension_options', array($this, 'filter_e2pdf_model_shortcode_extension_options'), 30);
1708 3388 }
3389 +
3390 + add_filter('wp_mail', array($this, 'filter_wp_mail'), 30);
1709 3391 }
1710 3392 }
1711 -
1712 3393 return $message;
1713 3394 }
1714 3395
1715 - public function filter_forminator_custom_form_submit_response($response, $form_id) {
3396 + // extension options filter
3397 + public function filter_e2pdf_model_shortcode_extension_options($options) {
3398 + if ($this->get('dataset') && $this->get('dataset') == 'is_prevent_store') {
3399 + $options['field_data_array'] = $this->get('field_data_array');
3400 + }
3401 + return $options;
3402 + }
1716 3403
3404 + // submit response filter
3405 + public function filter_forminator_custom_form_submit_response($response) {
1717 3406 if (isset($response['message']) && false !== strpos($response['message'], '[') && isset($response['success']) && $response['success']) {
3407 + $response['message'] = $this->filter_content($response['message'], 'message');
3408 + }
3409 + return $response;
3410 + }
3411 +
3412 + // content filter
3413 + public function filter_content($content, $type = '') {
3414 +
3415 + if (false !== strpos($content, '[')) {
1718 3416 $shortcode_tags = array(
1719 3417 'e2pdf-download',
1720 3418 'e2pdf-save',
1721 3419 'e2pdf-view',
1722 - 'e2pdf-adobesign'
3420 + 'e2pdf-adobesign',
3421 + 'e2pdf-zapier',
1723 3422 );
1724 -
1725 - preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $response['message'], $matches);
1726 -
3423 + preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $content, $matches);
1727 3424 $tagnames = array_intersect($shortcode_tags, $matches[1]);
1728 -
1729 3425 if (!empty($tagnames)) {
1730 - $pattern = get_shortcode_regex($tagnames);
1731 -
1732 - preg_match_all("/$pattern/", $response['message'], $shortcodes);
3426 + preg_match_all('/' . $this->helper->load('shortcode')->get_shortcode_regex($tagnames) . '/', $content, $shortcodes);
1733 3427 foreach ($shortcodes[0] as $key => $shortcode_value) {
1734 - $shortcode = array();
1735 - $shortcode[1] = $shortcodes[1][$key];
1736 - $shortcode[2] = $shortcodes[2][$key];
1737 - $shortcode[3] = $shortcodes[3][$key];
1738 - $shortcode[4] = $shortcodes[4][$key];
1739 - $shortcode[5] = $shortcodes[5][$key];
1740 - $shortcode[6] = $shortcodes[6][$key];
1741 -
3428 + $shortcode = $this->helper->load('shortcode')->get_shortcode($shortcodes, $key);
1742 3429 $atts = shortcode_parse_atts($shortcode[3]);
1743 -
1744 - if (!array_key_exists('dataset', $atts) && array_key_exists('id', $atts)) {
1745 - $template = new Model_E2pdf_Template();
1746 - $template->load($atts['id']);
1747 - if ($template->get('extension') === 'forminator') {
1748 - $entry_id = $this->get('dataset');
1749 - if ($entry_id) {
1750 - $atts['dataset'] = $entry_id;
1751 - $shortcode[3] .= " dataset=\"{$entry_id}\"";
3430 + if ($this->helper->load('shortcode')->is_attachment($shortcode, $atts)) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedIf
3431 + } else {
3432 + if (!isset($atts['dataset']) && isset($atts['id'])) {
3433 + $template = new Model_E2pdf_Template();
3434 + $template->load($atts['id']);
3435 + if ($template->get('extension') === 'forminator') {
3436 + $entry_id = $this->get('dataset');
3437 + if ($entry_id) {
3438 + if (($shortcode[2] === 'e2pdf-download' || $shortcode[2] === 'e2pdf-view' || $shortcode[2] === 'e2pdf-zapier') && $entry_id == 'is_prevent_store') { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedIf
3439 + } else {
3440 + if ($entry_id == 'is_prevent_store') {
3441 + add_filter('e2pdf_model_shortcode_extension_options', array($this, 'filter_e2pdf_model_shortcode_extension_options'), 30);
3442 + }
3443 + $atts['dataset'] = $entry_id;
3444 + $shortcode[3] .= ' dataset="' . $entry_id . '"';
3445 + }
3446 + }
1752 3447 }
1753 3448 }
1754 - }
1755 3449
1756 - if ($shortcode[2] === 'e2pdf-save' || $shortcode[2] === 'e2pdf-adobesign') {
1757 - $shortcode[3] .= " apply=\"true\"";
3450 + if (!isset($atts['apply'])) {
3451 + $shortcode[3] .= ' apply="true"';
3452 + }
3453 + if (!isset($atts['filter'])) {
3454 + $shortcode[3] .= ' filter="true"';
3455 + }
3456 + if (!isset($atts['iframe_download']) && $type == 'message') {
3457 + $shortcode[3] .= ' iframe_download="true"';
3458 + }
3459 + $content = str_replace($shortcode_value, do_shortcode_tag($shortcode), $content);
3460 + remove_filter('e2pdf_model_shortcode_extension_options', array($this, 'filter_e2pdf_model_shortcode_extension_options'), 30);
1758 3461 }
1759 -
1760 - $shortcode[3] .= " filter=\"true\"";
1761 -
1762 - if ($shortcode['2'] === 'e2pdf-view') {
1763 - $response['message'] = str_replace($shortcode_value, do_shortcode_tag($shortcode), $response['message']);
1764 - } else {
1765 - $response['message'] = str_replace($shortcode_value, do_shortcode_tag($shortcode), $response['message']);
1766 - }
1767 3462 }
1768 3463 }
1769 3464 }
1770 - $this->set('dataset', false);
1771 - return $response;
3465 + return $content;
1772 3466 }
1773 3467
3468 + // wp mail filter
1774 3469 public function filter_wp_mail($args = array()) {
1775 3470 $files = $this->helper->get('forminator_attachments');
1776 3471 if (is_array($files) && !empty($files)) {
1777 3472 foreach ($files as $file) {
@@ -1788,26 +3483,46 @@
1788 3483
1789 3484 return $wp_mail;
1790 3485 }
1791 3486
1792 - /**
1793 - * Get styles for generating Map Field function
1794 - *
1795 - * @return array - List of css files to load
1796 - */
1797 - public function get_styles() {
3487 + // styles
3488 + public function styles($item_id = false) {
1798 3489 $styles = array();
1799 - if (function_exists(forminator_plugin_url)) {
1800 - if (defined("FORMINATOR_VERSION")) {
3490 + if (function_exists('forminator_plugin_url') && class_exists('Forminator_API')) {
3491 + if (defined('FORMINATOR_VERSION')) {
1801 3492 $version = FORMINATOR_VERSION;
1802 3493 } else {
1803 3494 $version = '0';
1804 3495 }
1805 - $styles = array(
1806 - forminator_plugin_url() . 'assets/css/front.min.css?v=' . $version,
1807 - plugins_url('css/extension/forminator.css?v=' . time(), $this->helper->get('plugin_file_path'))
1808 - );
3496 + $styles = array();
3497 + if ($item_id) {
3498 + $forminator_form = Forminator_API::get_form($item_id);
3499 + if (!is_wp_error($forminator_form)) {
3500 + $form_settings = isset($forminator_form->settings) ? $forminator_form->settings : array();
3501 + if (isset($form_settings['form-style']) && $form_settings['form-style']) {
3502 + $form_design = $form_settings['form-style'];
3503 + } else {
3504 + $form_design = 'default';
3505 + }
3506 +
3507 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/forminator-icons.min.css?v=' . $version;
3508 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/forminator-utilities.min.css?v=' . $version;
3509 +
3510 + if (isset($form_settings['fields-style']) && 'open' === $form_settings['fields-style']) {
3511 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/grid/forminator-grid.open.min.css?v=' . $version;
3512 + } elseif (isset($form_settings['fields-style']) && 'enclosed' === $form_settings['fields-style']) {
3513 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/grid/forminator-grid.enclosed.min.css?v=' . $version;
3514 + }
3515 + if ('none' !== $form_design) {
3516 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/form/forminator-form-' . $form_design . '.base.min.css?v=' . $version;
3517 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/form/forminator-form-' . $form_design . '.full.min.css?v=' . $version;
3518 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/form/forminator-form-' . $form_design . '.pagination.min.css?v=' . $version;
3519 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/form/select2.min.css?v=' . $version;
3520 + $styles[] = forminator_plugin_url() . 'assets/forminator-ui/css/src/form/forminator-authentication.min.css?v=' . $version;
3521 + }
3522 + $styles[] = plugins_url('css/extension/forminator.css?v=' . time(), $this->helper->get('plugin_file_path'));
3523 + }
3524 + }
1809 3525 }
1810 3526 return $styles;
1811 3527 }
1812 -
1813 3528 }