PluginProbe
E2Pdf – Export Pdf Tool for WordPress / 1.32.51
E2Pdf – Export Pdf Tool for WordPress v1.32.51
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 +2792 -1377 1.03.071.32.51 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 }
@@ -17,378 +15,601 @@
17 15
18 16 private $options;
19 17 private $info = array(
20 18 'key' => 'forminator',
21 - 'title' => 'Forminator'
19 + 'title' => 'Forminator Forms',
22 20 );
23 21
24 - function __construct() {
25 - parent::__construct();
26 - }
27 -
28 - /**
29 - * Get info about extension
30 - *
31 - * @param string $key - Key to get assigned extension info value
32 - *
33 - * @return array|string - Extension Key and Title or Assigned extension info value
34 - */
22 + // info
35 23 public function info($key = false) {
36 24 if ($key && isset($this->info[$key])) {
37 25 return $this->info[$key];
38 26 } else {
39 27 return array(
40 - $this->info['key'] => $this->info['title']
28 + $this->info['key'] => $this->info['title'],
41 29 );
42 30 }
43 31 }
44 32
33 + // active
45 34 public function active() {
46 -
47 - if (!function_exists('is_plugin_active')) {
48 - include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
49 - }
50 -
51 - 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')) {
52 36 return true;
53 37 }
54 38 return false;
55 39 }
56 40
57 - /**
58 - * Set option
59 - *
60 - * @param string $key - Key of option
61 - * @param string $value - Value of option
62 - *
63 - * @return bool - Status of setting option
64 - */
41 + // set
65 42 public function set($key, $value) {
66 43 if (!isset($this->options)) {
67 44 $this->options = new stdClass();
68 45 }
69 -
70 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 + }
71 103 return true;
72 104 }
73 105
74 - /**
75 - * Get option by key
76 - *
77 - * @param string $key - Key to get assigned option value
78 - *
79 - * @return mixed
80 - */
106 + // get
81 107 public function get($key) {
82 108 if (isset($this->options->$key)) {
83 109 $value = $this->options->$key;
84 - return $value;
85 110 } else {
86 - 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 + }
87 122 }
123 + return $value;
88 124 }
89 125
90 - /**
91 - * Get items to work with
92 - *
93 - * @return array() - List of available items
94 - */
126 + // items
95 127 public function items() {
96 - $content = array();
97 - if (class_exists("Forminator_API")) {
98 - $forms = Forminator_API::get_forms();
99 - foreach ($forms as $key => $value) {
100 - $content[] = $this->item($value->id);
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);
101 133 }
102 134 }
103 - return $content;
135 + return $items;
104 136 }
105 137
106 - /**
107 - * Get entries for export
108 - *
109 - * @param int $item - Form ID
110 - * @param string $name - Entries names
111 - *
112 - * @return array() - Entries list
113 - */
114 - public function datasets($item = false, $name = false) {
115 -
138 + // datasets
139 + public function datasets($item_id = false, $name = false) {
116 140 $datasets = array();
117 -
118 - if (class_exists("Forminator_API") && $item) {
119 - $entries = Forminator_API::get_entries($item);
120 - foreach ($entries as $key => $dataset) {
121 - $this->set('item', $item);
122 - $this->set('dataset', $dataset->entry_id);
123 -
124 - $dataset_title = $this->render($name);
125 - if (!$dataset_title) {
126 - $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;
127 149 }
128 150 $datasets[] = array(
129 - 'key' => $dataset->entry_id,
130 - 'value' => $dataset_title
151 + 'key' => $entry->entry_id,
152 + 'value' => $entry_title,
131 153 );
132 154 }
133 155 }
134 -
135 156 return $datasets;
136 157 }
137 158
138 - /**
139 - * Get dataset
140 - *
141 - * @param int $dataset - Dataset ID
142 - *
143 - * @return object - Dataset
144 - */
145 - public function dataset($dataset = false) {
146 - $dataset = (int) $dataset;
147 -
148 - 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) {
149 163 return false;
150 164 }
165 + $actions = new stdClass();
166 + $actions->view = false;
167 + $actions->delete = false;
168 + return $actions;
169 + }
151 170
152 - $data = new stdClass();
153 - $data->url = false;
154 -
155 - 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;
156 180 }
157 181
158 - /**
159 - * Get item
160 - *
161 - * @param string $item - Item ID
162 - *
163 - * @return object - Item
164 - */
165 - public function item($item = false) {
166 -
167 - $form = new stdClass();
168 -
169 - if (!$item && $this->get('item')) {
170 - $item = $this->get('item');
182 + // item
183 + public function item($item_id = false) {
184 + if (!$item_id && $this->get('item')) {
185 + $item_id = $this->get('item');
171 186 }
172 -
173 - $forminator_form = false;
174 - if (class_exists("Forminator_API")) {
175 - $forminator_form = Forminator_API::get_form($item);
187 + $form = false;
188 + if (class_exists('Forminator_API')) {
189 + $form = Forminator_API::get_form($item_id);
176 190 }
177 -
178 - if (!is_wp_error($forminator_form)) {
179 - $form->id = (string) $item;
180 - $form->url = $this->helper->get_url(array('page' => 'forminator-cform-wizard', 'id' => $forminator_form->id));
181 - $form->name = $forminator_form->name;
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;
182 201 } else {
183 - $form->id = '';
184 - $form->url = 'javascript:void(0);';
185 - $form->name = '';
202 + $item->id = '';
203 + $item->url = '';
204 + $item->name = '';
186 205 }
187 - return $form;
206 + return $item;
188 207 }
189 208
190 - /**
191 - * Render value according to content
192 - *
193 - * @param string $value - Content
194 - * @param string $type - Type of rendering value
195 - * @param string $field - Field
196 - *
197 - * @return string - Fully rendered value
198 - */
199 - 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 + }
200 219
201 - $value = $this->render_shortcodes($value, $type, $field);
202 - $value = $this->strip_shortcodes($value);
203 -
204 - if ($type === 'value' && isset($field['type']) && $field['type'] === 'e2pdf-checkbox' && isset($field['properties']['option'])) {
205 - $option = $this->render($field['properties']['option']);
206 - $options = explode(', ', $value);
207 - $option_options = explode(', ', $option);
208 - if (is_array($options) && is_array($option_options) && !array_diff($option_options, $options)) {
209 - return $option;
210 - } else {
211 - 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);
212 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 + );
213 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 + }
214 267
215 - if ($type === 'value') {
216 - $value = $this->convert_shortcodes($value, true);
217 - }
268 + // replace foreach
269 + public function replace_foreach($content, $custom_form = null, $entry = null, $data = array()) {
218 270
219 - return $value;
220 - }
271 + if (strpos($content, '{foreach:') !== false && preg_match_all('/\{foreach:(group-\d+)\}(.*?)\{\/foreach:(group-\d+)\}/s', $content, $matches)) {
221 272
222 - /**
223 - * Render shortcodes which available in this extension
224 - *
225 - * @param string $type - Type of rendering value
226 - * @param string $value - Content
227 - *
228 - * @return string - Value with rendered shortcodes
229 - */
230 - 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');
231 276
232 - $dataset = $this->get('dataset');
233 - $item = $this->get('item');
277 + if (isset($matches[0]) && is_array($matches[0])) {
278 + foreach ($matches[0] as $key => $match) {
234 279
235 - 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 = '';
236 283
237 - $form = Forminator_API::get_form($item);
238 - $entry = Forminator_API::get_entry($item, $dataset);
239 - $data = array();
240 - foreach ($entry->meta_data as $key => $meta) {
241 - if (is_array($meta['value'])) {
242 - if (array_unique(array_map("is_int", array_keys($meta['value']))) === array(true)) {
243 - $data[$key] = $meta['value'];
244 - } else {
245 - if (isset($meta['value']['file']['file_url'])) {
246 - $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;
247 292 } else {
248 - foreach ($meta['value'] as $sub_key => $sub_meta) {
249 - $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 + }
250 323 }
251 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);
252 351 }
253 - } else {
254 - $data[$key] = $meta['value'];
255 352 }
256 353 }
354 + }
355 + return $content;
356 + }
257 357
258 - 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);
259 373
260 - $shortcode_tags = array(
261 - 'e2pdf-format-number',
262 - 'e2pdf-format-date',
263 - 'e2pdf-format-output',
264 - );
265 - preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $value, $matches);
266 - $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;
267 377
268 - 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));
269 389
270 - $pattern = get_shortcode_regex($tagnames);
271 - preg_match_all("/$pattern/", $value, $shortcodes);
272 - foreach ($shortcodes[0] as $key => $shortcode_value) {
273 - $shortcode = array();
274 - $shortcode[1] = $shortcodes[1][$key];
275 - $shortcode[2] = $shortcodes[2][$key];
276 - $shortcode[3] = $shortcodes[3][$key];
277 - $shortcode[4] = $shortcodes[4][$key];
278 - $shortcode[5] = $shortcodes[5][$key];
279 - $shortcode[6] = $shortcodes[6][$key];
280 -
281 - if (isset($shortcode['5'])) {
282 - if (isset($field['type']) && ($field['type'] === 'e2pdf-image' || $field['type'] === 'e2pdf-signature')) {
283 - $sub_value = $this->render($shortcode['5'], $type);
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 + }
284 396 } else {
285 - $sub_value = $this->render($shortcode['5'], $type, $field);
397 + $element_id = $field_id . $suffix;
286 398 }
287 - $value = str_replace($shortcode_value, "[" . $shortcode['2'] . $shortcode['3'] . "]" . $sub_value . "[/" . $shortcode['2'] . "]", $value);
288 399 }
289 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;
290 405 }
291 - }
292 406
293 - $value = do_shortcode($value);
294 - $value = forminator_replace_form_data($value, $data, $form, $entry);
295 - $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 + }
296 435
297 - if (isset($field['type']) && ($field['type'] === 'e2pdf-image' || $field['type'] === 'e2pdf-signature')) {
298 - $esig = isset($field['properties']['esig']) && $field['properties']['esig'] ? true : false;
299 - if ($esig) {
300 - //process e-signature
301 - $value = "";
302 - } 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) {
303 441
304 - if (!$this->helper->load('image')->get_image($value)) {
305 - $value = $this->strip_shortcodes($value);
306 - if (
307 - $value &&
308 - trim($value) != "" &&
309 - extension_loaded('gd') &&
310 - function_exists('imagettftext')
311 - ) {
312 - if (isset($field['properties']['text_color']) && $field['properties']['text_color']) {
313 - $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);
314 457 } else {
315 - $penColour = array(0x14, 0x53, 0x94);
458 + $time[$sub_suffix] = $data[$element_id . '-' . $sub_suffix];
316 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();
317 467
318 - $default_options = array(
319 - 'imageSize' => array(isset($field['width']) ? $field['width'] : '400', isset($field['height']) ? $field['height'] : '150'),
320 - 'bgColour' => 'transparent',
321 - 'penColour' => $penColour
322 - );
323 -
324 - $options = array();
325 - $options = array_merge($default_options, $options);
326 -
327 - $model_e2pdf_font = new Model_E2pdf_Font();
328 -
329 - $font = false;
330 - if (isset($field['properties']['text_font']) && $field['properties']['text_font']) {
331 - $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);
332 490 }
333 -
334 - if (!$font) {
335 - $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 + }
336 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 + }
337 532
338 - $size = 150;
339 - if (isset($field['properties']['text_font_size']) && $field['properties']['text_font_size']) {
340 - $size = $field['properties']['text_font_size'];
341 - }
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 + }
342 552
343 - $model_e2pdf_signature = new Model_E2pdf_Signature();
344 - $value = $model_e2pdf_signature->ttf_signature($value, $size, $font, $options);
345 - } else {
346 - $value = "";
347 - }
348 - }
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;
349 559 }
350 - } else {
351 - $value = $this->convert_shortcodes($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 + }
352 565 }
353 566 }
567 + return $data;
568 + }
354 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);
355 574 return $value;
356 575 }
357 576
358 - /**
359 - * Strip unused shortcodes
360 - *
361 - * @param string $value - Content
362 - *
363 - * @return string - Value with removed unused shortcodes
364 - */
365 - public function strip_shortcodes($value) {
366 - $value = preg_replace('~(?:\[/?)[^/\]]+/?\]~s', "", $value);
367 - $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 + }
368 587 return $value;
369 588 }
370 589
371 - public function convert_shortcodes($value, $to = false) {
590 + // convert shortcodes
591 + public function convert_shortcodes($value, $to = false, $html = false) {
372 592 if ($value) {
373 593 if ($to) {
374 - $value = str_replace("&#91;", "[", $value);
375 - //$value = str_replace("&#37;", "%", $value);
594 + $value = str_replace('&#91;', '[', $value);
595 + if (!$html) {
596 + $value = wp_specialchars_decode($value, ENT_QUOTES);
597 + }
376 598 } else {
377 - $value = str_replace("[", "&#91;", $value);
378 - //$value = str_replace("%", "&#37;", $value);
599 + $value = str_replace('[', '&#91;', $value);
379 600 }
380 601 }
381 602 return $value;
382 603 }
383 604
605 + // verify
384 606 public function verify() {
385 - $item = $this->get('item');
386 - $dataset = $this->get('dataset');
387 -
388 - if ($item && $dataset && class_exists("Forminator_API")) {
389 - $entry = Forminator_API::get_entry($item, $dataset);
390 - 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 + ) {
391 612 return true;
392 613 }
393 614 }
394 615 return false;
@@ -393,41 +614,267 @@
393 614 }
394 615 return false;
395 616 }
396 617
397 - public function visual_mapper() {
618 + // auto form
619 + public function auto_form($template, $data = array()) {
398 620
399 - $item = $this->get('item');
621 + if ($template->get('ID')) {
400 622
401 - 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();
402 629
403 - ob_start();
404 - forminator_form_preview($item, true, array());
405 - $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 + }
406 693
407 - $form = Forminator_API::get_form($item);
694 + if ($type) {
695 + $labels = array();
696 + if ($auto_form_shortcode) {
697 + $labels[] = '{' . $type . '-' . $element['element_id'] . '}';
698 + }
408 699
409 - 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)) {
410 825 return __('Form could not be found', 'e2pdf');
411 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 + }
412 835
413 - libxml_use_internal_errors(true);
414 - $dom = new DOMDocument();
415 - if (function_exists('mb_convert_encoding')) {
416 - $html = $dom->loadHTML(mb_convert_encoding($source, 'HTML-ENTITIES', 'UTF-8'));
417 - } else {
418 - $html = $dom->loadHTML('<?xml encoding="UTF-8">' . $source);
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 + }
419 843 }
420 - libxml_clear_errors();
421 844
422 - if (!$html) {
423 - 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>';
424 860 } else {
425 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');
426 868 $xpath = new DomXPath($dom);
427 869
870 + // remove by class
428 871 $remove_by_class = array(
429 - 'forminator-pagination-submit'
872 + 'forminator-pagination-submit',
873 + 'forminator-response-message',
874 + 'forminator-save-draft-link',
875 + 'forminator-field-stripe',
876 + 'forminator-button-paypal',
430 877 );
431 878 foreach ($remove_by_class as $key => $class) {
432 879 $elements = $xpath->query("//*[contains(@class, '{$class}')]");
433 880 foreach ($elements as $element) {
@@ -434,83 +881,130 @@
434 881 $element->parentNode->removeChild($element);
435 882 }
436 883 }
437 884
438 - $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')]");
439 897 foreach ($inputs as $element) {
440 - if (!$element->attributes->getNamedItem("type")->nodeValue) {
441 - $element->setAttribute("type", "text");
442 - }
898 + $xml->set_node_value($element, 'type', 'text');
443 899 }
444 900
445 - //remove pagination
901 + // remove pagination
446 902 $pagination = $xpath->query("//*[contains(@class, 'forminator-pagination')]");
447 903 foreach ($pagination as $element) {
448 - if ($element->attributes->getNamedItem("style")) {
449 - $element->attributes->getNamedItem("style")->nodeValue = "";
450 - }
904 + $xml->set_node_value($element, 'style', '');
451 905 }
452 906
453 - //remove buttons
454 - $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'))]]");
455 909 foreach ($remove_rows as $element) {
456 910 $element->parentNode->removeChild($element);
457 911 }
458 912
459 - //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
460 920 $fileuploads = $xpath->query("//*[contains(@class, 'forminator-upload')]");
461 921 foreach ($fileuploads as $element) {
462 922 $file = $xpath->query(".//input[contains(@class, 'forminator-input-file')]", $element)->item(0);
463 - $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);
464 924 if ($file && $button) {
465 - if ($button->attributes->getNamedItem("type")) {
466 - $button->attributes->getNamedItem("type")->nodeValue = "upload";
467 - }
468 - $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'));
469 927 }
470 928 }
471 929
472 - //replace names on inputs
473 - $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');
474 952 foreach ($inputs as $element) {
475 - $type = $element->attributes->getNamedItem("type")->nodeValue;
476 - if ($type == 'checkbox') {
477 - if ($element->attributes->getNamedItem("name")) {
478 - $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 + }
479 968 }
480 969 }
481 970
482 - if ($element->attributes->getNamedItem("name")) {
483 - $element->attributes->getNamedItem("name")->nodeValue = "{" . $element->attributes->getNamedItem("name")->nodeValue . "}";
484 - }
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 + }
485 979
486 - if ($element->attributes->getNamedItem("class")) {
487 - if (strpos($element->attributes->getNamedItem("class")->nodeValue, 'forminator-checkbox--input') !== false) {
488 - $element->attributes->getNamedItem("class")->nodeValue = $element->attributes->getNamedItem("class")->nodeValue . " forminator-checkbox--design";
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 + }
489 988 }
490 - if (strpos($element->attributes->getNamedItem("class")->nodeValue, 'forminator-radio--input') !== false) {
491 - $element->attributes->getNamedItem("class")->nodeValue = $element->attributes->getNamedItem("class")->nodeValue . " forminator-radio--design";
492 - }
493 989 }
494 - }
495 990
496 - //replace names on textareas
497 - $textareas = $xpath->query("//textarea");
498 - foreach ($textareas as $element) {
499 - if ($element->attributes->getNamedItem("name")) {
500 - $element->attributes->getNamedItem("name")->nodeValue = "{" . $element->attributes->getNamedItem("name")->nodeValue . "}";
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');
501 994 }
502 - }
503 995
504 - //replace names on selects
505 - $selects = $xpath->query("//select");
506 - foreach ($selects as $element) {
507 - if ($element->attributes->getNamedItem("name")) {
508 - $element->attributes->getNamedItem("name")->nodeValue = "{" . $element->attributes->getNamedItem("name")->nodeValue . "}";
996 + $xml->set_node_value($element, 'name', '{' . $xml->get_node_value($element, 'name') . '}');
997 +
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');
509 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 + }
510 1004 }
511 1005
512 - //multiselects
1006 + // multiselects
513 1007 $multiselect = $xpath->query("//ul[contains(@class, 'forminator-multiselect')]");
514 1008 foreach ($multiselect as $element) {
515 1009 $name = '';
516 1010 $options = array();
@@ -516,20 +1010,20 @@
516 1010 $options = array();
517 1011 $inputs = $xpath->query(".//*[contains(@class, 'forminator-multiselect--item')]", $element);
518 1012
519 1013 foreach ($inputs as $sub_element) {
520 - $input = $xpath->query(".//input", $sub_element)->item(0);
521 - $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);
522 1016
523 1017 if ($input && $label) {
524 - $options[] = array(
525 - 'value' => $input->attributes->getNamedItem("value")->nodeValue,
526 - 'label' => $label->childNodes->item(0)->nodeValue
527 - );
528 -
529 - $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');
530 1025 }
531 -
532 1026 $sub_element->parentNode->removeChild($sub_element);
533 1027 }
534 1028
535 1029 $li = $dom->createElement('li');
@@ -542,9 +1036,8 @@
542 1036 $li->appendChild($attr);
543 1037 }
544 1038 $element->appendChild($li);
545 1039
546 -
547 1040 $field = $dom->createElement('select');
548 1041 $field_atts = array(
549 1042 'multiple' => 'multiple',
550 1043 'name' => $name,
@@ -573,9 +1066,28 @@
573 1066 $field->appendChild($option_field);
574 1067 }
575 1068 }
576 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 + }
577 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 + }
578 1090
579 1091 return $dom->saveHTML();
580 1092 }
581 1093 }
@@ -581,13 +1093,9 @@
581 1093 }
582 1094 return false;
583 1095 }
584 1096
585 - /**
586 - * Auto Generate of Template for this extension
587 - *
588 - * @return array - List of elements
589 - */
1097 + // auto
590 1098 public function auto() {
591 1099
592 1100 $item = $this->get('item');
593 1101
@@ -592,106 +1100,168 @@
592 1100 $item = $this->get('item');
593 1101
594 1102 $response = array();
595 1103 $elements = array();
596 - $fields = array();
597 - $form = false;
1104 + $form_fields = array();
1105 + $custom_form = false;
598 1106
599 - if (class_exists("Forminator_API")) {
600 - $forminator_form = Forminator_API::get_form($item);
601 - if (!is_wp_error($forminator_form)) {
602 - $form = $forminator_form;
603 - $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;
604 1111 }
605 1112 }
606 1113
607 - 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 + }
608 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 +
609 1138 foreach ($fields as $field_obj) {
610 1139 $field = $field_obj->raw;
611 - $float = true;
612 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 + }
613 1150
614 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;
615 1171 case 'name':
616 1172 case 'email':
617 1173 case 'phone':
618 1174 case 'url':
619 - case 'upload':
620 1175 case 'number':
1176 + case 'calculation':
621 1177 case 'date':
1178 + case 'currency':
1179 + // multiple name field
1180 + if ($field['type'] == 'name' && isset($field['multiple_name']) && $field['multiple_name'] === 'true') {
622 1181
623 - //multiple name field
624 - if ($field['type'] == 'name' && isset($field['multiple_name']) && $field['multiple_name']) {
625 -
626 1182 if (!$field['prefix'] && !$field['fname']) {
627 1183 if ($field['mname']) {
628 - $elements[] = $this->auto_field($field, array(
629 - 'type' => 'e2pdf-html',
630 - 'block' => true,
631 - 'float' => true,
632 - 'properties' => array(
633 - 'top' => '20',
634 - 'left' => '20',
635 - 'right' => '20',
636 - 'width' => $field['lname'] ? $width / 2 . '%' : $width . '%',
637 - 'height' => 'auto',
638 - 'value' => $field['mname_label'],
639 - )
640 - ));
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 + );
641 1200
642 - $elements[] = $this->auto_field($field, array(
643 - 'type' => 'e2pdf-input',
644 - 'properties' => array(
645 - 'top' => '5',
646 - 'width' => '100%',
647 - 'height' => 'auto',
648 - 'value' => "{" . $field['element_id'] . "-middle-name" . "}",
649 - )
650 - ));
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 + );
651 1213 }
652 1214
653 1215 if ($field['lname']) {
654 - $elements[] = $this->auto_field($field, array(
655 - 'type' => 'e2pdf-html',
656 - 'block' => true,
657 - 'float' => true,
658 - 'properties' => array(
659 - 'top' => '20',
660 - 'left' => '20',
661 - 'right' => '20',
662 - 'width' => $field['mname'] ? $width / 2 . '%' : $width . '%',
663 - 'height' => 'auto',
664 - 'value' => $field['lname_label'],
665 - )
666 - ));
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 + );
667 1232
668 - $elements[] = $this->auto_field($field, array(
669 - 'type' => 'e2pdf-input',
670 - 'properties' => array(
671 - 'top' => '5',
672 - 'width' => '100%',
673 - 'height' => 'auto',
674 - 'value' => "{" . $field['element_id'] . "-last-name" . "}",
675 - )
676 - ));
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 + );
677 1245 }
678 1246 } else {
679 -
680 1247 if ($field['prefix']) {
681 - $elements[] = $this->auto_field($field, array(
682 - 'type' => 'e2pdf-html',
683 - 'block' => true,
684 - 'float' => true,
685 - 'properties' => array(
686 - 'top' => '20',
687 - 'left' => '20',
688 - 'right' => '20',
689 - 'width' => $field['fname'] ? $width / 2 . '%' : $width . '%',
690 - 'height' => 'auto',
691 - 'value' => $field['prefix_label'],
692 - )
693 - ));
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 + );
694 1264
695 1265 $options_tmp = array();
696 1266 if (function_exists('forminator_get_name_prefixes')) {
697 1267 $options = forminator_get_name_prefixes();
@@ -699,190 +1269,230 @@
699 1269 $options_tmp[] = $key;
700 1270 }
701 1271 }
702 1272
703 - $elements[] = $this->auto_field($field, array(
704 - 'type' => 'e2pdf-select',
705 - 'properties' => array(
706 - 'top' => '5',
707 - 'width' => '100%',
708 - 'height' => 'auto',
709 - 'options' => implode("\n", $options_tmp),
710 - 'value' => "{" . $field['element_id'] . "-prefix" . "}",
711 - )
712 - ));
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 + );
713 1286
714 1287 if ($field['mname'] && $field['fname']) {
715 - $elements[] = $this->auto_field($field, array(
716 - 'type' => 'e2pdf-html',
717 - 'properties' => array(
718 - 'top' => '20',
719 - 'width' => $field['lname'] ? '100%' : '200%',
720 - 'right' => $field['lname'] ? '0' : '-40',
721 - 'height' => 'auto',
722 - 'value' => $field['mname_label'],
723 - )
724 - ));
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 + );
725 1301
726 - $elements[] = $this->auto_field($field, array(
727 - 'type' => 'e2pdf-input',
728 - 'properties' => array(
729 - 'top' => '5',
730 - 'width' => $field['lname'] ? '100%' : '200%',
731 - 'height' => 'auto',
732 - 'right' => $field['lname'] ? '0' : '-40',
733 - 'value' => "{" . $field['element_id'] . "-middle-name" . "}",
734 - )
735 - ));
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 + );
736 1315 } elseif ($field['lname'] && !$field['mname'] && $field['fname']) {
737 1316
738 - $elements[] = $this->auto_field($field, array(
739 - 'type' => 'e2pdf-html',
740 - 'properties' => array(
741 - 'top' => '20',
742 - 'width' => $field['mname'] ? '100%' : '200%',
743 - 'height' => 'auto',
744 - 'right' => $field['mname'] ? '0' : '-40',
745 - 'value' => $field['lname_label'],
746 - )
747 - ));
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 + );
748 1330
749 - $elements[] = $this->auto_field($field, array(
750 - 'type' => 'e2pdf-input',
751 - 'properties' => array(
752 - 'top' => '5',
753 - 'width' => $field['mname'] ? '100%' : '200%',
754 - 'height' => 'auto',
755 - 'right' => $field['mname'] ? '0' : '-40',
756 - 'value' => "{" . $field['element_id'] . "-last-name" . "}",
757 - )
758 - ));
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 + );
759 1344 }
760 1345 }
761 1346
762 -
763 1347 if ($field['fname']) {
764 - $elements[] = $this->auto_field($field, array(
765 - 'type' => 'e2pdf-html',
766 - 'block' => true,
767 - 'float' => true,
768 - 'properties' => array(
769 - 'top' => '20',
770 - 'left' => '20',
771 - 'right' => '20',
772 - 'width' => $field['prefix'] ? ($width / 2) . '%' : $width . '%',
773 - 'height' => 'auto',
774 - 'value' => $field['fname_label'],
775 - )
776 - ));
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 + );
777 1364
778 - $elements[] = $this->auto_field($field, array(
779 - 'type' => 'e2pdf-input',
780 - 'properties' => array(
781 - 'top' => '5',
782 - 'width' => '100%',
783 - 'height' => 'auto',
784 - 'value' => "{" . $field['element_id'] . "-first-name" . "}",
785 - )
786 - ));
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 + );
787 1377
788 1378 if ($field['lname'] && $field['mname'] && $field['prefix']) {
789 - $elements[] = $this->auto_field($field, array(
790 - 'type' => 'e2pdf-html',
791 - 'properties' => array(
792 - 'top' => '20',
793 - 'width' => $field['mname'] ? '100%' : '200%',
794 - 'height' => 'auto',
795 - 'right' => $field['mname'] ? '0' : '-40',
796 - 'value' => $field['lname_label'],
797 - )
798 - ));
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 + );
799 1392
800 - $elements[] = $this->auto_field($field, array(
801 - 'type' => 'e2pdf-input',
802 - 'properties' => array(
803 - 'top' => '5',
804 - 'width' => $field['mname'] ? '100%' : '200%',
805 - 'height' => 'auto',
806 - 'right' => $field['mname'] ? '0' : '-40',
807 - 'value' => "{" . $field['element_id'] . "-last-name" . "}",
808 - )
809 - ));
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 + );
810 1406 }
811 1407 }
812 1408
813 1409 if (!$field['prefix'] || !$field['fname']) {
814 1410 if ($field['mname']) {
815 - $elements[] = $this->auto_field($field, array(
816 - 'type' => 'e2pdf-html',
817 - 'properties' => array(
818 - 'top' => '20',
819 - 'right' => $field['lname'] ? '20' : '0',
820 - 'width' => $field['lname'] ? '50%' : '100%',
821 - 'height' => 'auto',
822 - 'value' => $field['mname_label'],
823 - )
824 - ));
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 + );
825 1424 }
826 1425
827 -
828 1426 if ($field['lname']) {
829 - $elements[] = $this->auto_field($field, array(
830 - 'type' => 'e2pdf-html',
831 - 'float' => $field['mname'] ? true : false,
832 - 'properties' => array(
833 - 'top' => '20',
834 - 'left' => $field['mname'] ? '20' : '0',
835 - 'width' => $field['mname'] ? '50%' : '100%',
836 - 'height' => 'auto',
837 - 'value' => $field['lname_label'],
838 - )
839 - ));
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 + );
840 1441 }
841 1442
842 1443 if ($field['mname']) {
843 - $elements[] = $this->auto_field($field, array(
844 - 'type' => 'e2pdf-input',
845 - 'properties' => array(
846 - 'top' => '5',
847 - 'right' => $field['lname'] ? '20' : '0',
848 - 'width' => $field['lname'] ? '50%' : '100%',
849 - 'height' => 'auto',
850 - 'value' => "{" . $field['element_id'] . "-middle-name" . "}",
851 - )
852 - ));
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 + );
853 1457 }
854 1458
855 1459 if ($field['lname']) {
856 - $elements[] = $this->auto_field($field, array(
857 - 'type' => 'e2pdf-input',
858 - 'float' => $field['mname'] ? true : false,
859 - 'properties' => array(
860 - 'top' => '5',
861 - 'left' => $field['mname'] ? '20' : '0',
862 - 'width' => $field['mname'] ? '50%' : '100%',
863 - 'height' => 'auto',
864 - 'value' => "{" . $field['element_id'] . "-last-name" . "}",
865 - )
866 - ));
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 + );
867 1474 }
868 1475 }
869 1476 }
870 1477 } elseif ($field['type'] == 'date' && $field['field_type'] == 'select') {
871 1478
872 - $elements[] = $this->auto_field($field, array(
873 - 'type' => 'e2pdf-html',
874 - 'block' => true,
875 - 'float' => $float,
876 - 'properties' => array(
877 - 'top' => '20',
878 - 'left' => '20',
879 - 'right' => '20',
880 - 'width' => $width . "%",
881 - 'height' => 'auto',
882 - 'value' => $field['field_label'],
883 - )
884 - ));
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 + );
885 1495
886 1496 $days = array();
887 1497 $months = array();
888 1498 $years = array();
@@ -897,135 +1507,64 @@
897 1507 foreach ($options as $option) {
898 1508 $months[] = $option['value'];
899 1509 }
900 1510
901 - $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'] : '');
902 1512 foreach ($options as $option) {
903 1513 $years[] = $option['value'];
904 1514 }
905 1515 }
906 1516
907 - $elements[] = $this->auto_field($field, array(
908 - 'type' => 'e2pdf-select',
909 - 'properties' => array(
910 - 'top' => '5',
911 - 'width' => '30%',
912 - 'height' => 'auto',
913 - 'options' => implode("\n", $days),
914 - 'value' => "{" . $field['element_id'] . "-month" . "}",
915 - )
916 - ));
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 + );
917 1530
918 - $elements[] = $this->auto_field($field, array(
919 - 'type' => 'e2pdf-select',
920 - 'float' => true,
921 - 'properties' => array(
922 - 'top' => '5',
923 - 'left' => '5%',
924 - 'right' => '5%',
925 - 'width' => '40%',
926 - 'height' => 'auto',
927 - 'options' => implode("\n", $months),
928 - 'value' => "{" . $field['element_id'] . "-day" . "}",
929 - )
930 - ));
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 + );
931 1547
932 - $elements[] = $this->auto_field($field, array(
933 - 'type' => 'e2pdf-select',
934 - 'float' => true,
935 - 'properties' => array(
936 - 'top' => '5',
937 - 'width' => '30%',
938 - 'height' => 'auto',
939 - 'options' => implode("\n", $years),
940 - 'value' => "{" . $field['element_id'] . "-year" . "}",
941 - )
942 - ));
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 + );
943 1562 } elseif ($field['type'] == 'date' && $field['field_type'] == 'input') {
944 1563
945 - $elements[] = $this->auto_field($field, array(
946 - 'type' => 'e2pdf-html',
947 - 'block' => true,
948 - 'float' => $float,
949 - 'properties' => array(
950 - 'top' => '20',
951 - 'left' => '20',
952 - 'right' => '20',
953 - 'width' => $width . "%",
954 - 'height' => 'auto',
955 - 'value' => $field['field_label'],
956 - )
957 - ));
958 -
959 - $elements[] = $this->auto_field($field, array(
960 - 'type' => 'e2pdf-input',
961 - 'properties' => array(
962 - 'top' => '5',
963 - 'width' => '30%',
964 - 'height' => 'auto',
965 - 'value' => "{" . $field['element_id'] . "-month" . "}",
966 - )
967 - ));
968 -
969 - $elements[] = $this->auto_field($field, array(
970 - 'type' => 'e2pdf-input',
971 - 'float' => true,
972 - 'properties' => array(
973 - 'top' => '5',
974 - 'left' => '5%',
975 - 'right' => '5%',
976 - 'width' => '40%',
977 - 'height' => 'auto',
978 - 'value' => "{" . $field['element_id'] . "-day" . "}",
979 - )
980 - ));
981 -
982 - $elements[] = $this->auto_field($field, array(
983 - 'float' => true,
984 - 'type' => 'e2pdf-input',
985 - 'properties' => array(
986 - 'top' => '5',
987 - 'width' => '30%',
988 - 'height' => 'auto',
989 - 'value' => "{" . $field['element_id'] . "-year" . "}",
990 - )
991 - ));
992 - } else {
993 -
994 - $elements[] = $this->auto_field($field, array(
995 - 'type' => 'e2pdf-html',
996 - 'block' => true,
997 - 'float' => $float,
998 - 'properties' => array(
999 - 'top' => '20',
1000 - 'left' => '20',
1001 - 'right' => '20',
1002 - 'width' => $width . "%",
1003 - 'height' => 'auto',
1004 - 'value' => $field['field_label'],
1005 - )
1006 - ));
1007 -
1008 - $elements[] = $this->auto_field($field, array(
1009 - 'type' => 'e2pdf-input',
1010 - 'properties' => array(
1011 - 'top' => '5',
1012 - 'width' => '100%',
1013 - 'height' => 'auto',
1014 - 'value' => "{" . $field['element_id'] . "}",
1015 - )
1016 - ));
1017 - }
1018 - break;
1019 -
1020 -
1021 - case 'address':
1022 -
1023 - if (!$field['street_address'] && !$field['address_line']) {
1024 -
1025 - if (!$field['address_city'] && !$field['address_state']) {
1026 - if ($field['address_zip']) {
1027 - $elements[] = $this->auto_field($field, array(
1564 + $elements[] = $this->auto_field(
1565 + $field,
1566 + array(
1028 1567 'type' => 'e2pdf-html',
1029 1568 'block' => true,
1030 1569 'float' => true,
1031 1570 'properties' => array(
@@ -1031,65 +1570,62 @@
1031 1570 'properties' => array(
1032 1571 'top' => '20',
1033 1572 'left' => '20',
1034 1573 'right' => '20',
1035 - 'width' => $field['address_country'] ? $width / 2 . '%' : $width . '%',
1574 + 'width' => $width . '%',
1036 1575 'height' => 'auto',
1037 - 'value' => $field['address_zip_label']
1038 - )
1039 - ));
1576 + 'value' => $field['field_label'],
1577 + ),
1578 + )
1579 + );
1040 1580
1041 -
1042 - $elements[] = $this->auto_field($field, array(
1581 + $elements[] = $this->auto_field(
1582 + $field,
1583 + array(
1043 1584 'type' => 'e2pdf-input',
1044 1585 'properties' => array(
1045 1586 'top' => '5',
1046 - 'width' => '100%',
1587 + 'width' => '30%',
1047 1588 'height' => 'auto',
1048 - 'value' => "{" . $field['element_id'] . "-zip" . "}",
1049 - )
1050 - ));
1051 - }
1589 + 'value' => '{' . $field['element_id'] . '-month' . $repeater . '}',
1590 + ),
1591 + )
1592 + );
1052 1593
1053 - if ($field['address_country']) {
1054 - $elements[] = $this->auto_field($field, array(
1055 - 'type' => 'e2pdf-html',
1056 - 'block' => true,
1594 + $elements[] = $this->auto_field(
1595 + $field,
1596 + array(
1597 + 'type' => 'e2pdf-input',
1057 1598 'float' => true,
1058 1599 'properties' => array(
1059 - 'top' => '20',
1060 - 'left' => '20',
1061 - 'right' => '20',
1062 - 'width' => $field['address_zip'] ? $width / 2 . '%' : $width . '%',
1600 + 'top' => '5',
1601 + 'left' => '5%',
1602 + 'right' => '5%',
1603 + 'width' => '40%',
1063 1604 'height' => 'auto',
1064 - 'value' => $field['address_country_label'],
1065 - )
1066 - ));
1605 + 'value' => '{' . $field['element_id'] . '-day' . $repeater . '}',
1606 + ),
1607 + )
1608 + );
1067 1609
1068 - $options_tmp = array();
1069 - if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
1070 - $options = forminator_to_field_array(forminator_get_countries_list(), true);
1071 - foreach ($options as $option) {
1072 - $options_tmp[] = $option['value'];
1073 - }
1074 - //can be value or label
1075 - }
1076 -
1077 - $elements[] = $this->auto_field($field, array(
1078 - 'type' => 'e2pdf-select',
1610 + $elements[] = $this->auto_field(
1611 + $field,
1612 + array(
1613 + 'float' => true,
1614 + 'type' => 'e2pdf-input',
1079 1615 'properties' => array(
1080 1616 'top' => '5',
1081 - 'width' => '100%',
1617 + 'width' => '30%',
1082 1618 'height' => 'auto',
1083 - 'options' => implode("\n", $options_tmp),
1084 - 'value' => "{" . $field['element_id'] . "-country" . "}",
1085 - )
1086 - ));
1087 - }
1088 - } else {
1619 + 'value' => '{' . $field['element_id'] . '-year' . $repeater . '}',
1620 + ),
1621 + )
1622 + );
1623 + } else {
1089 1624
1090 - if ($field['address_city']) {
1091 - $elements[] = $this->auto_field($field, array(
1625 + $elements[] = $this->auto_field(
1626 + $field,
1627 + array(
1092 1628 'type' => 'e2pdf-html',
1093 1629 'block' => true,
1094 1630 'float' => true,
1095 1631 'properties' => array(
@@ -1095,87 +1631,250 @@
1095 1631 'properties' => array(
1096 1632 'top' => '20',
1097 1633 'left' => '20',
1098 1634 'right' => '20',
1099 - 'width' => $field['address_state'] ? $width / 2 . '%' : $width . '%',
1635 + 'width' => $width . '%',
1100 1636 'height' => 'auto',
1101 - 'value' => $field['address_city_label'],
1102 - )
1103 - ));
1637 + 'value' => $field['field_label'],
1638 + ),
1639 + )
1640 + );
1104 1641
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 + );
1105 1654
1106 -
1107 - $elements[] = $this->auto_field($field, array(
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 + }
1670 + }
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(
1108 1695 'type' => 'e2pdf-input',
1109 1696 'properties' => array(
1110 1697 'top' => '5',
1111 1698 'width' => '100%',
1112 1699 'height' => 'auto',
1113 - 'value' => "{" . $field['element_id'] . "-city" . "}",
1700 + 'value' => '{' . $field['element_id'] . '-post-title}',
1701 + ),
1702 + )
1703 + );
1704 + }
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 + ),
1114 1722 )
1115 - ));
1723 + );
1724 + }
1116 1725
1117 - if ($field['address_zip'] && $field['address_state']) {
1118 - $elements[] = $this->auto_field($field, array(
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 + }
1739 +
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(
1119 1745 'type' => 'e2pdf-html',
1746 + 'block' => true,
1747 + 'float' => true,
1120 1748 'properties' => array(
1121 1749 'top' => '20',
1122 - 'right' => $field['address_country'] ? '0' : '-40',
1123 - 'width' => $field['address_country'] ? '100%' : '200%',
1750 + 'left' => '20',
1751 + 'right' => '20',
1752 + 'width' => '100%',
1124 1753 'height' => 'auto',
1125 - 'value' => $field['address_zip_label'],
1126 - )
1127 - ));
1754 + 'value' => $field['post_excerpt_label'],
1755 + ),
1756 + )
1757 + );
1758 + }
1128 1759
1129 - $elements[] = $this->auto_field($field, array(
1130 - 'type' => 'e2pdf-input',
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 + }
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,
1131 1782 'properties' => array(
1132 - 'top' => '5',
1133 - 'right' => $field['address_country'] ? '0' : '-40',
1134 - 'width' => $field['address_country'] ? '100%' : '200%',
1783 + 'top' => '20',
1784 + 'left' => '20',
1785 + 'right' => '20',
1786 + 'width' => '100%',
1135 1787 'height' => 'auto',
1136 - 'value' => "{" . $field['element_id'] . "-zip" . "}",
1137 - )
1138 - ));
1139 - } elseif ($field['address_country'] && !$field['address_zip'] && $field['address_state']) {
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 + }
1140 1806
1141 - $elements[] = $this->auto_field($field, array(
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(
1142 1812 'type' => 'e2pdf-html',
1813 + 'block' => true,
1814 + 'float' => true,
1143 1815 'properties' => array(
1144 1816 'top' => '20',
1145 - 'right' => $field['address_zip'] ? '0' : '-40',
1146 - 'width' => $field['address_zip'] ? '100%' : '200%',
1817 + 'left' => '20',
1818 + 'right' => '20',
1819 + 'width' => '100%',
1147 1820 'height' => 'auto',
1148 - 'value' => $field['address_country_label'],
1149 - )
1150 - ));
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 + }
1151 1839
1152 - $options_tmp = array();
1153 - if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
1154 - $options = forminator_to_field_array(forminator_get_countries_list(), true);
1155 - foreach ($options as $option) {
1156 - $options_tmp[] = $option['value'];
1157 - }
1158 - //can be value or label
1159 - }
1160 -
1161 - $elements[] = $this->auto_field($field, array(
1162 - 'type' => 'e2pdf-select',
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,
1163 1848 'properties' => array(
1164 - 'top' => '5',
1165 - 'right' => $field['address_zip'] ? '0' : '-40',
1166 - 'width' => $field['address_zip'] ? '100%' : '200%',
1849 + 'top' => '20',
1850 + 'left' => '20',
1851 + 'right' => '20',
1852 + 'width' => '100%',
1167 1853 'height' => 'auto',
1168 - 'options' => implode("\n", $options_tmp),
1169 - 'value' => "{" . $field['element_id'] . "-country" . "}",
1170 - )
1171 - ));
1172 - }
1173 - }
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 + );
1871 + }
1174 1872
1175 -
1176 - if ($field['address_state']) {
1177 - $elements[] = $this->auto_field($field, array(
1873 + if (isset($field['post_custom_fields']) && $field['post_custom_fields']) {
1874 + $elements[] = $this->auto_field(
1875 + $field,
1876 + array(
1178 1877 'type' => 'e2pdf-html',
1179 1878 'block' => true,
1180 1879 'float' => true,
1181 1880 'properties' => array(
@@ -1181,40 +1880,183 @@
1181 1880 'properties' => array(
1182 1881 'top' => '20',
1183 1882 'left' => '20',
1184 1883 'right' => '20',
1185 - 'width' => $field['address_city'] ? ($width / 2) . '%' : $width . '%',
1884 + 'width' => '100%',
1186 1885 'height' => 'auto',
1187 - 'value' => $field['address_state_label'],
1188 - )
1189 - ));
1886 + 'value' => __('Custom Fields', 'forminator'),
1887 + ),
1888 + )
1889 + );
1190 1890
1191 -
1192 -
1193 - $elements[] = $this->auto_field($field, array(
1891 + $elements[] = $this->auto_field(
1892 + $field,
1893 + array(
1194 1894 'type' => 'e2pdf-input',
1195 1895 'properties' => array(
1196 1896 'top' => '5',
1197 1897 'width' => '100%',
1198 1898 'height' => 'auto',
1199 - 'value' => "{" . $field['element_id'] . "-state" . "}",
1200 - )
1201 - ));
1899 + 'value' => '{' . $field['element_id'] . '-post-custom}',
1900 + ),
1901 + )
1902 + );
1903 + }
1904 + break;
1202 1905
1203 - if ($field['address_country'] && $field['address_zip'] && $field['address_city']) {
1906 + case 'address':
1907 + if (!$field['street_address'] && !$field['address_line']) {
1204 1908
1205 - $elements[] = $this->auto_field($field, array(
1206 - 'type' => 'e2pdf-html',
1207 - 'properties' => array(
1208 - 'top' => '20',
1209 - 'right' => $field['address_zip'] ? '0' : '-40',
1210 - 'width' => $field['address_zip'] ? '100%' : '200%',
1211 - 'height' => 'auto',
1212 - 'value' => $field['address_country_label'],
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 + ),
1213 1925 )
1214 - ));
1926 + );
1215 1927
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 + }
1216 1941
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 + );
1959 +
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 + }
1967 +
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 {
1983 +
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 + );
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 + );
2014 +
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 + );
2029 +
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']) {
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 + );
2058 +
1217 2059 $options_tmp = array();
1218 2060 if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
1219 2061 $options = forminator_to_field_array(forminator_get_countries_list(), true);
1220 2062 foreach ($options as $option) {
@@ -1219,66 +2061,148 @@
1219 2061 $options = forminator_to_field_array(forminator_get_countries_list(), true);
1220 2062 foreach ($options as $option) {
1221 2063 $options_tmp[] = $option['value'];
1222 2064 }
1223 - //can be value or label
1224 2065 }
1225 2066
1226 - $elements[] = $this->auto_field($field, array(
1227 - 'type' => 'e2pdf-select',
1228 - 'properties' => array(
1229 - 'top' => '5',
1230 - 'right' => $field['address_zip'] ? '0' : '-40',
1231 - 'width' => $field['address_zip'] ? '100%' : '200%',
1232 - 'height' => 'auto',
1233 - 'options' => implode("\n", $options_tmp),
1234 - 'value' => "{" . $field['element_id'] . "-country" . "}",
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 + }
2082 + }
2083 +
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 + ),
1235 2099 )
1236 - ));
2100 + );
2101 +
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 + );
2114 +
2115 + if ($field['address_country'] && $field['address_zip'] && $field['address_city']) {
2116 +
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 + );
2130 +
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 + }
2138 +
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 + );
1237 2153 }
1238 2154 }
1239 2155
1240 2156 if (!$field['address_city'] || !$field['address_state']) {
1241 2157 if ($field['address_zip']) {
1242 - $elements[] = $this->auto_field($field, array(
1243 - 'type' => 'e2pdf-html',
1244 - 'properties' => array(
1245 - 'top' => '20',
1246 - 'right' => $field['address_country'] ? '20' : '0',
1247 - 'width' => $field['address_country'] ? '50%' : '100%',
1248 - 'height' => 'auto',
1249 - 'value' => $field['address_zip_label'],
1250 - )
1251 - ));
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 + );
1252 2171 }
1253 2172
1254 -
1255 2173 if ($field['address_country']) {
1256 2174
1257 - $elements[] = $this->auto_field($field, array(
1258 - 'type' => 'e2pdf-html',
1259 - 'float' => $field['address_zip'] ? true : false,
1260 - 'properties' => array(
1261 - 'top' => '20',
1262 - 'left' => $field['address_zip'] ? '20' : '0',
1263 - 'width' => $field['address_zip'] ? '50%' : '100%',
1264 - 'height' => 'auto',
1265 - 'value' => $field['address_country_label'],
1266 - )
1267 - ));
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 + );
1268 2189 }
1269 2190
1270 2191 if ($field['address_zip']) {
1271 - $elements[] = $this->auto_field($field, array(
1272 - 'type' => 'e2pdf-input',
1273 - 'properties' => array(
1274 - 'top' => '5',
1275 - 'right' => $field['address_country'] ? '20' : '0',
1276 - 'width' => $field['address_country'] ? '50%' : '100%',
1277 - 'height' => 'auto',
1278 - 'value' => "{" . $field['element_id'] . "-zip" . "}",
1279 - )
1280 - ));
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 + );
1281 2205 }
1282 2206
1283 2207 if ($field['address_country']) {
1284 2208 $options_tmp = array();
@@ -1286,23 +2210,25 @@
1286 2210 $options = forminator_to_field_array(forminator_get_countries_list(), true);
1287 2211 foreach ($options as $option) {
1288 2212 $options_tmp[] = $option['value'];
1289 2213 }
1290 - //can be value or label
1291 2214 }
1292 2215
1293 - $elements[] = $this->auto_field($field, array(
1294 - 'type' => 'e2pdf-select',
1295 - 'float' => $field['address_zip'] ? true : false,
1296 - 'properties' => array(
1297 - 'top' => '5',
1298 - 'left' => $field['address_zip'] ? '20' : '0',
1299 - 'width' => $field['address_zip'] ? '50%' : '100%',
1300 - 'height' => 'auto',
1301 - 'options' => implode("\n", $options_tmp),
1302 - 'value' => "{" . $field['element_id'] . "-country" . "}",
1303 - )
1304 - ));
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 + );
1305 2231 }
1306 2232 }
1307 2233 }
1308 2234 } else {
@@ -1307,161 +2233,191 @@
1307 2233 }
1308 2234 } else {
1309 2235
1310 2236 if ($field['street_address']) {
1311 - $elements[] = $this->auto_field($field, array(
1312 - 'type' => 'e2pdf-html',
1313 - 'block' => true,
1314 - 'float' => true,
1315 - 'properties' => array(
1316 - 'top' => '20',
1317 - 'left' => '20',
1318 - 'right' => '20',
1319 - 'width' => $width . '%',
1320 - 'height' => 'auto',
1321 - 'value' => $field['street_address_label'],
1322 - )
1323 - ));
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 + );
1324 2253
1325 -
1326 - $elements[] = $this->auto_field($field, array(
1327 - 'type' => 'e2pdf-input',
1328 - 'properties' => array(
1329 - 'top' => '5',
1330 - 'width' => '100%',
1331 - 'height' => 'auto',
1332 - 'value' => "{" . $field['element_id'] . "-street_address" . "}",
1333 - )
1334 - ));
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 + );
1335 2266 }
1336 2267
1337 2268 if ($field['address_line']) {
1338 2269
1339 2270 if ($field['address_line_label']) {
1340 - $elements[] = $this->auto_field($field, array(
1341 - 'type' => 'e2pdf-html',
1342 - 'block' => $field['street_address'] ? false : true,
1343 - 'float' => $field['street_address'] ? false : true,
1344 - 'properties' => array(
1345 - 'top' => '20',
1346 - 'left' => $field['street_address'] ? '0' : '20',
1347 - 'right' => $field['street_address'] ? '0' : '20',
1348 - 'width' => $field['street_address'] ? '100%' : $width . '%',
1349 - 'height' => 'auto',
1350 - 'value' => $field['address_line_label'],
1351 - )
1352 - ));
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 + );
1353 2287 }
1354 2288
1355 - $elements[] = $this->auto_field($field, array(
1356 - 'type' => 'e2pdf-input',
1357 - 'properties' => array(
1358 - 'top' => $field['address_line_label'] ? '0' : '20',
1359 - 'width' => '100%',
1360 - 'height' => 'auto',
1361 - 'value' => "{" . $field['element_id'] . "-address_line" . "}",
1362 - )
1363 - ));
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 + );
1364 2301 }
1365 2302
1366 -
1367 2303 if ($field['address_city']) {
1368 2304
1369 - $elements[] = $this->auto_field($field, array(
1370 - 'type' => 'e2pdf-html',
1371 - 'properties' => array(
1372 - 'top' => '20',
1373 - 'right' => $field['address_state'] ? '20' : '0',
1374 - 'width' => $field['address_state'] ? '50%' : '100%',
1375 - 'height' => 'auto',
1376 - 'value' => $field['address_city_label'],
1377 - )
1378 - ));
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 + );
1379 2318 }
1380 2319
1381 2320 if ($field['address_state']) {
1382 - $elements[] = $this->auto_field($field, array(
1383 - 'type' => 'e2pdf-html',
1384 - 'float' => $field['address_city'] ? true : false,
1385 - 'properties' => array(
1386 - 'top' => $field['address_city'] ? '0' : '20',
1387 - 'left' => $field['address_city'] ? '20' : '0',
1388 - 'width' => $field['address_city'] ? '50%' : '100%',
1389 - 'height' => 'auto',
1390 - 'value' => $field['address_state_label'],
1391 - )
1392 - ));
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 + );
1393 2335 }
1394 2336
1395 2337 if ($field['address_city']) {
1396 - $elements[] = $this->auto_field($field, array(
1397 - 'type' => 'e2pdf-input',
1398 - 'properties' => array(
1399 - 'top' => '5',
1400 - 'right' => $field['address_state'] ? '20' : '0',
1401 - 'width' => $field['address_state'] ? '50%' : '100%',
1402 - 'height' => 'auto',
1403 - 'value' => "{" . $field['element_id'] . "-city" . "}",
1404 - )
1405 - ));
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 + );
1406 2351 }
1407 2352
1408 2353 if ($field['address_state']) {
1409 - $elements[] = $this->auto_field($field, array(
1410 - 'type' => 'e2pdf-input',
1411 - 'float' => $field['address_city'] ? true : false,
1412 - 'properties' => array(
1413 - 'top' => '5',
1414 - 'left' => $field['address_city'] ? '20' : '0',
1415 - 'width' => $field['address_city'] ? '50%' : '100%',
1416 - 'height' => 'auto',
1417 - 'value' => "{" . $field['element_id'] . "-state" . "}",
1418 - )
1419 - ));
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 + );
1420 2368 }
1421 2369
1422 2370 if ($field['address_zip']) {
1423 2371
1424 - $elements[] = $this->auto_field($field, array(
1425 - 'type' => 'e2pdf-html',
1426 - 'properties' => array(
1427 - 'top' => '20',
1428 - 'right' => $field['address_country'] ? '20' : '0',
1429 - 'width' => $field['address_country'] ? '50%' : '100%',
1430 - 'height' => 'auto',
1431 - 'value' => $field['address_zip_label'],
1432 - )
1433 - ));
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 + );
1434 2385 }
1435 2386
1436 2387 if ($field['address_country']) {
1437 - $elements[] = $this->auto_field($field, array(
1438 - 'type' => 'e2pdf-html',
1439 - 'float' => $field['address_zip'] ? true : false,
1440 - 'properties' => array(
1441 - 'top' => '20',
1442 - 'left' => $field['address_zip'] ? '20' : '0',
1443 - 'width' => $field['address_zip'] ? '50%' : '100%',
1444 - 'height' => 'auto',
1445 - 'value' => $field['address_country_label'],
1446 - )
1447 - ));
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 + );
1448 2402 }
1449 2403
1450 2404 if ($field['address_zip']) {
1451 - $elements[] = $this->auto_field($field, array(
1452 - 'type' => 'e2pdf-input',
1453 - 'properties' => array(
1454 - 'top' => '5',
1455 - 'right' => $field['address_country'] ? '20' : '0',
1456 - 'width' => $field['address_country'] ? '50%' : '100%',
1457 - 'height' => 'auto',
1458 - 'value' => "{" . $field['element_id'] . "-zip" . "}",
1459 - )
1460 - ));
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 + );
1461 2418 }
1462 2419
1463 -
1464 2420 if ($field['address_country']) {
1465 2421 $options_tmp = array();
1466 2422 if (function_exists('forminator_to_field_array') && function_exists('forminator_get_countries_list')) {
1467 2423 $options = forminator_to_field_array(forminator_get_countries_list(), true);
@@ -1467,157 +2423,255 @@
1467 2423 $options = forminator_to_field_array(forminator_get_countries_list(), true);
1468 2424 foreach ($options as $option) {
1469 2425 $options_tmp[] = $option['value'];
1470 2426 }
1471 - //can be value or label
1472 2427 }
1473 2428
1474 -
1475 - $elements[] = $this->auto_field($field, array(
1476 - 'type' => 'e2pdf-select',
1477 - 'float' => $field['address_zip'] ? true : false,
1478 - 'properties' => array(
1479 - 'top' => '5',
1480 - 'left' => $field['address_zip'] ? '20' : '0',
1481 - 'width' => $field['address_zip'] ? '50%' : '100%',
1482 - 'height' => 'auto',
1483 - 'options' => implode("\n", $options_tmp),
1484 - 'value' => "{" . $field['element_id'] . "-country" . "}",
1485 - )
1486 - ));
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 + );
1487 2444 }
1488 2445 }
1489 -
1490 -
1491 2446 break;
1492 2447 case 'time':
1493 -
1494 2448 $hours = array();
1495 2449 $minutes = array();
1496 2450
1497 2451 if (class_exists('Forminator_Time')) {
1498 2452 $forminator_time = new Forminator_Time();
1499 - $options = $forminator_time->get_hours($field['time_type']);
2453 + $options = $forminator_time->get_hours($field['time_type'], '', '', false);
1500 2454 foreach ($options as $option) {
1501 2455 $hours[] = $option['value'];
1502 2456 }
1503 2457
1504 - $options = $forminator_time->get_minutes();
2458 + $options = $forminator_time->get_minutes($field['time_type'], '', '', false);
1505 2459 foreach ($options as $option) {
1506 2460 $minutes[] = $option['value'];
1507 2461 }
1508 2462 }
1509 2463
1510 - $elements[] = $this->auto_field($field, array(
1511 - 'type' => 'e2pdf-html',
1512 - 'block' => true,
1513 - 'float' => true,
1514 - 'properties' => array(
1515 - 'top' => '20',
1516 - 'left' => '20',
1517 - 'right' => '20',
1518 - 'width' => ($field['time_type'] == 'twelve' ? $width / 3 : $width / 2) . '%',
1519 - 'height' => 'auto',
1520 - 'value' => $field['hh_label'],
1521 - )
1522 - ));
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 + );
1523 2480
1524 2481 if ($field['field_type'] == 'select') {
1525 - $elements[] = $this->auto_field($field, array(
1526 - 'type' => 'e2pdf-select',
1527 - 'properties' => array(
1528 - 'top' => '5',
1529 - 'width' => '100%',
1530 - 'height' => 'auto',
1531 - 'options' => implode("\n", $hours),
1532 - 'value' => "{" . $field['element_id'] . "-hours" . "}",
1533 - )
1534 - ));
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 + );
1535 2495 } else {
1536 - $elements[] = $this->auto_field($field, array(
1537 - 'type' => 'e2pdf-input',
1538 - 'properties' => array(
1539 - 'top' => '5',
1540 - 'width' => '100%',
1541 - 'height' => 'auto',
1542 - 'value' => "{" . $field['element_id'] . "-hours" . "}",
1543 - )
1544 - ));
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 + );
1545 2508 }
1546 2509
1547 - $elements[] = $this->auto_field($field, array(
1548 - 'type' => 'e2pdf-html',
1549 - 'block' => true,
1550 - 'float' => true,
1551 - 'properties' => array(
1552 - 'top' => '20',
1553 - 'left' => '20',
1554 - 'right' => '20',
1555 - 'width' => ($field['time_type'] == 'twelve' ? $width / 3 : $width / 2) . '%',
1556 - 'height' => 'auto',
1557 - 'value' => $field['mm_label'],
1558 - )
1559 - ));
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 + );
1560 2526
1561 2527 if ($field['field_type'] == 'select') {
1562 - $elements[] = $this->auto_field($field, array(
1563 - 'type' => 'e2pdf-select',
1564 - 'properties' => array(
1565 - 'top' => '5',
1566 - 'width' => '100%',
1567 - 'height' => 'auto',
1568 - 'options' => implode("\n", $minutes),
1569 - 'value' => "{" . $field['element_id'] . "-minutes" . "}",
1570 - )
1571 - ));
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 + );
1572 2541 } else {
1573 - $elements[] = $this->auto_field($field, array(
1574 - 'type' => 'e2pdf-input',
1575 - 'properties' => array(
1576 - 'top' => '5',
1577 - 'width' => '100%',
1578 - 'height' => 'auto',
1579 - 'value' => "{" . $field['element_id'] . "-minutes" . "}",
1580 - )
1581 - ));
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 + );
1582 2554 }
1583 2555
1584 2556 if ($field['time_type'] == 'twelve') {
1585 - $elements[] = $this->auto_field($field, array(
1586 - 'type' => 'e2pdf-html',
1587 - 'block' => true,
1588 - 'float' => $float,
1589 - 'properties' => array(
1590 - 'top' => '20',
1591 - 'left' => '20',
1592 - 'right' => '20',
1593 - 'width' => ($width / 3) . '%',
1594 - 'height' => 'auto',
1595 - 'value' => '',
1596 - )
1597 - ));
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 + );
1598 2573
1599 2574 $ampm = array(
1600 - 'am', 'pm'
2575 + 'am', 'pm',
1601 2576 );
1602 2577
1603 - $elements[] = $this->auto_field($field, array(
1604 - 'type' => 'e2pdf-select',
1605 - 'properties' => array(
1606 - 'top' => '5',
1607 - 'width' => '100%',
1608 - 'height' => 'auto',
1609 - 'options' => implode("\n", $ampm),
1610 - 'value' => "{" . $field['element_id'] . "-ampm" . "}",
1611 - )
1612 - ));
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 + );
1613 2591 }
1614 2592 break;
1615 - case 'html': {
1616 - if ($field['field_label']) {
1617 - $elements[] = $this->auto_field($field, array(
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 + );
2610 +
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(
1618 2671 'type' => 'e2pdf-html',
1619 2672 'block' => true,
2673 + 'float' => true,
1620 2674 'properties' => array(
1621 2675 'top' => '20',
1622 2676 'left' => '20',
1623 2677 'right' => '20',
@@ -1623,24 +2677,111 @@
1623 2677 'right' => '20',
1624 2678 'width' => $width . '%',
1625 2679 'height' => 'auto',
1626 2680 'value' => $field['field_label'],
2681 + ),
2682 + )
2683 + );
2684 +
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 + ),
1627 2696 )
1628 - ));
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 + }
1629 2712
1630 - $elements[] = $this->auto_field($field, array(
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(
1631 2734 'type' => 'e2pdf-html',
2735 + 'block' => true,
2736 + 'float' => true,
1632 2737 'properties' => array(
2738 + 'top' => '20',
2739 + 'left' => '20',
2740 + 'right' => '20',
2741 + 'width' => $width . '%',
2742 + 'height' => 'auto',
2743 + 'value' => $field['field_label'],
2744 + ),
2745 + )
2746 + );
2747 + $elements[] = $this->auto_field(
2748 + $field,
2749 + array(
2750 + 'type' => 'e2pdf-textarea',
2751 + 'properties' => array(
1633 2752 'top' => '5',
1634 2753 'width' => '100%',
1635 2754 'height' => 'auto',
1636 - 'value' => $field['variations'],
2755 + 'value' => '{' . $field['element_id'] . $repeater . '}',
2756 + 'text_auto_font_size' => '1',
2757 + ),
2758 + )
2759 + );
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 + ),
1637 2773 )
1638 - ));
1639 - } else {
1640 - $elements[] = $this->auto_field($field, array(
2774 + );
2775 + }
2776 + break;
2777 + case 'slider':
2778 + $elements[] = $this->auto_field(
2779 + $field,
2780 + array(
1641 2781 'type' => 'e2pdf-html',
1642 2782 'block' => true,
2783 + 'float' => true,
1643 2784 'properties' => array(
1644 2785 'top' => '20',
1645 2786 'left' => '20',
1646 2787 'right' => '20',
@@ -1645,28 +2786,79 @@
1645 2786 'left' => '20',
1646 2787 'right' => '20',
1647 2788 'width' => $width . '%',
1648 2789 'height' => 'auto',
1649 - 'value' => $field['variations'],
2790 + 'value' => $field['field_label'],
2791 + ),
2792 + )
2793 + );
2794 +
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 + ),
1650 2808 )
1651 - ));
1652 - }
1653 - break;
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 + );
1654 2837 }
1655 -
1656 - case 'section': {
1657 -
1658 - $section = '';
1659 - if ($field['section_title']) {
1660 - $section .= "<h2>" . $field['section_title'] . "</h2>";
1661 - }
1662 - if ($field['section_subtitle']) {
1663 - $section .= $field['section_subtitle'];
1664 - }
1665 - if ($section) {
1666 - $elements[] = $this->auto_field($field, array(
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(
1667 2858 'type' => 'e2pdf-html',
1668 2859 'block' => true,
2860 + 'float' => true,
1669 2861 'properties' => array(
1670 2862 'top' => '20',
1671 2863 'left' => '20',
1672 2864 'right' => '20',
@@ -1671,155 +2863,299 @@
1671 2863 'left' => '20',
1672 2864 'right' => '20',
1673 2865 'width' => $width . '%',
1674 2866 'height' => 'auto',
1675 - 'value' => $section,
1676 - )
1677 - ));
1678 - }
1679 -
1680 - break;
1681 - }
1682 - case 'text':
1683 - $elements[] = $this->auto_field($field, array(
1684 - 'type' => 'e2pdf-html',
1685 - 'block' => true,
1686 - 'properties' => array(
1687 - 'top' => '20',
1688 - 'left' => '20',
1689 - 'right' => '20',
1690 - 'width' => $width . '%',
1691 - 'height' => 'auto',
1692 - 'value' => $field['field_label'],
1693 - )
1694 - ));
1695 -
1696 - if (isset($field['input_type']) && $field['input_type'] == 'line') {
1697 - $elements[] = $this->auto_field($field, array(
1698 - 'type' => 'e2pdf-input',
1699 - 'properties' => array(
1700 - 'top' => '5',
1701 - 'width' => '100%',
1702 - 'height' => 'auto',
1703 - 'value' => "{" . $field['element_id'] . "}",
2867 + 'value' => $field['field_label'],
2868 + ),
1704 2869 )
1705 - ));
1706 - } else {
1707 - $elements[] = $this->auto_field($field, array(
1708 - 'type' => 'e2pdf-textarea',
1709 - 'properties' => array(
1710 - 'top' => '5',
1711 - 'width' => '100%',
1712 - 'height' => 'auto',
1713 - 'value' => "{" . $field['element_id'] . "}",
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 + ),
1714 2883 )
1715 - ));
2884 + );
2885 +
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 + );
1716 2900 }
1717 2901 break;
1718 - case 'select': {
1719 - $elements[] = $this->auto_field($field, array(
1720 - 'type' => 'e2pdf-html',
1721 - 'block' => true,
1722 - 'float' => true,
1723 - 'properties' => array(
1724 - 'top' => '20',
1725 - 'left' => '20',
1726 - 'right' => '20',
1727 - 'width' => $width . '%',
1728 - 'height' => 'auto',
1729 - '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 + ),
1730 2917 )
1731 - ));
2918 + );
1732 2919
1733 - if ($field['value_type'] == 'radio') {
1734 - foreach ($field['options'] as $opt_key => $option) {
1735 - if (is_array($option)) {
1736 - $elements[] = $this->auto_field($field, array(
1737 - 'type' => 'e2pdf-radio',
1738 - 'properties' => array(
1739 - 'top' => '5',
1740 - 'width' => 'auto',
1741 - 'height' => 'auto',
1742 - 'value' => "{" . $field['element_id'] . "}",
1743 - 'option' => $option['value'] ? $option['value'] : $option['label'],
1744 - '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 + ),
1745 2935 )
1746 - ));
1747 - $elements[] = $this->auto_field($field, array(
1748 - 'type' => 'e2pdf-html',
1749 - 'float' => true,
1750 - 'properties' => array(
1751 - 'left' => '5',
1752 - 'width' => '100%',
1753 - 'height' => 'auto',
1754 - '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 + ),
1755 2948 )
1756 - ));
1757 - }
2949 + );
1758 2950 }
1759 - } else {
1760 - $options_tmp = array();
1761 - foreach ($field['options'] as $option) {
1762 - $options_tmp[] = $option['value'] ? $option['value'] : $option['label'];
1763 - }
1764 - $elements[] = $this->auto_field($field, array(
1765 - 'type' => 'e2pdf-select',
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 + }
2971 +
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,
1766 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 + );
3005 +
3006 + $elements[] = $this->auto_field(
3007 + $field,
3008 + array(
3009 + 'type' => 'e2pdf-checkbox',
3010 + 'properties' => array(
1767 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',
1768 3027 'width' => '100%',
1769 3028 'height' => 'auto',
1770 - 'options' => implode("\n", $options_tmp),
1771 - 'value' => "{" . $field['element_id'] . "}",
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 + ),
1772 3069 )
1773 - ));
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 + }
1774 3101 }
1775 - break;
1776 3102 }
1777 - case 'checkbox': {
1778 - $elements[] = $this->auto_field($field, 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' => $width . '%',
1787 - 'height' => 'auto',
1788 - 'value' => $field['field_label'],
3103 +
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,
3128 + 'properties' => array(
3129 + 'top' => '20',
3130 + 'left' => '20',
3131 + 'right' => '20',
3132 + 'width' => $width . '%',
3133 + 'height' => 'auto',
3134 + 'value' => $field['field_label'],
3135 + ),
1789 3136 )
1790 - ));
3137 + );
1791 3138
1792 - if ($field['value_type'] == 'multiselect') {
1793 - $options_tmp = array();
1794 - foreach ($field['options'] as $opt_key => $option) {
1795 - $options_tmp[] = $option['value'] ? $option['value'] : $option['label'];
1796 - }
1797 - $elements[] = $this->auto_field($field, array(
1798 - 'type' => 'e2pdf-select',
1799 - 'properties' => array(
1800 - 'top' => '5',
1801 - 'width' => '100%',
1802 - 'height' => '44',
1803 - 'multiline' => '1',
1804 - 'options' => implode("\n", $options_tmp),
1805 - 'value' => "{" . $field['element_id'] . "}",
1806 - )
1807 - ));
1808 - } else {
1809 - foreach ($field['options'] as $opt_key => $option) {
1810 - if (is_array($option)) {
1811 - $elements[] = $this->auto_field($field, array(
1812 - 'type' => 'e2pdf-checkbox',
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',
1813 3145 'properties' => array(
1814 3146 'top' => '5',
1815 3147 'width' => 'auto',
1816 3148 'height' => 'auto',
1817 - 'value' => "{" . $field['element_id'] . "}",
1818 - 'option' => $option['value'] ? $option['value'] : $option['label']
1819 - )
1820 - ));
1821 - $elements[] = $this->auto_field($field, array(
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(
1822 3158 'type' => 'e2pdf-html',
1823 3159 'float' => true,
1824 3160 'properties' => array(
1825 3161 'left' => '5',
@@ -1824,56 +3160,77 @@
1824 3160 'properties' => array(
1825 3161 'left' => '5',
1826 3162 'width' => '100%',
1827 3163 'height' => 'auto',
1828 - 'value' => $option['label']
1829 - )
1830 - ));
1831 - }
1832 - }
3164 + 'value' => $option['label'],
3165 + ),
3166 + )
3167 + );
1833 3168 }
1834 - break;
1835 3169 }
1836 3170
1837 - case 'gdprcheckbox': {
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;
1838 3187
1839 - $elements[] = $this->auto_field($field, array(
1840 - 'type' => 'e2pdf-html',
1841 - 'block' => true,
1842 - 'float' => true,
1843 - 'properties' => array(
1844 - 'top' => '20',
1845 - 'left' => '20',
1846 - 'right' => '20',
1847 - 'width' => $width . '%',
1848 - 'height' => 'auto',
1849 - '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 + ),
1850 3203 )
1851 - ));
3204 + );
1852 3205
1853 - $elements[] = $this->auto_field($field, array(
1854 - 'type' => 'e2pdf-checkbox',
1855 - 'properties' => array(
1856 - 'top' => '5',
1857 - 'width' => 'auto',
1858 - 'height' => 'auto',
1859 - 'value' => "{" . $field['element_id'] . "}",
1860 - '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 + ),
1861 3217 )
1862 - ));
1863 - $elements[] = $this->auto_field($field, array(
1864 - 'type' => 'e2pdf-html',
1865 - 'float' => true,
1866 - 'properties' => array(
1867 - 'left' => '5',
1868 - 'width' => '100%',
1869 - 'height' => 'auto',
1870 - '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 + ),
1871 3230 )
1872 - ));
1873 - break;
1874 - }
1875 -
3231 + );
3232 + break;
1876 3233 default:
1877 3234 break;
1878 3235 }
1879 3236 }
@@ -1882,9 +3239,9 @@
1882 3239 $response['page'] = array(
1883 3240 'bottom' => '20',
1884 3241 'top' => '20',
1885 3242 'left' => '20',
1886 - 'right' => '20'
3243 + 'right' => '20',
1887 3244 );
1888 3245
1889 3246 $response['elements'] = $elements;
1890 3247 return $response;
@@ -1889,117 +3246,139 @@
1889 3246 $response['elements'] = $elements;
1890 3247 return $response;
1891 3248 }
1892 3249
3250 + // auto field
1893 3251 public function auto_field($field = false, $element = array()) {
1894 -
1895 3252 if (!$field) {
1896 3253 return false;
1897 3254 }
1898 -
1899 3255 if (!isset($element['block'])) {
1900 3256 $element['block'] = false;
1901 3257 }
1902 -
1903 3258 if (!isset($element['float'])) {
1904 3259 $element['float'] = false;
1905 3260 }
1906 -
1907 3261 return $element;
1908 3262 }
1909 3263
1910 - /**
1911 - * Load actions for this extension
1912 - */
3264 + // load actions
1913 3265 public function load_actions() {
1914 3266 add_action('forminator_custom_form_submit_before_set_fields', array($this, 'action_forminator_custom_form_submit_before_set_fields'), 30, 3);
1915 - add_action('forminator_custom_form_mail_admin_message', array($this, 'action_forminator_mail_message'), 30, 5);
1916 - add_action('forminator_custom_form_mail_user_message', array($this, 'action_forminator_mail_message'), 30, 5);
1917 - add_action('forminator_custom_form_mail_before_send_mail', array($this, 'action_forminator_custom_form_mail_before_send_mail'), 30, 4);
1918 - 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);
1919 3268 }
1920 3269
1921 - /**
1922 - * Load filters for this extension
1923 - */
3270 + // load filters
1924 3271 public function load_filters() {
1925 - add_filter('forminator_custom_form_submit_response', array($this, 'filter_forminator_custom_form_submit_response'), 30, 2);
1926 - 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);
1927 3279 }
1928 3280
3281 + // before set fields action
1929 3282 public function action_forminator_custom_form_submit_before_set_fields($entry, $form_id, $field_data_array) {
1930 - if ($entry && is_object($entry) && property_exists($entry, 'entry_id') && isset($entry->entry_id)) {
1931 - $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 + }
1932 3299 }
1933 3300 }
1934 3301
1935 - public function action_forminator_custom_form_mail_before_send_mail($mail, $custom_form, $data, $entry) {
1936 - add_filter('wp_mail', array($this, 'filter_wp_mail'), 30, 1);
1937 - }
1938 -
1939 - 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) {
1940 3304 remove_filter('wp_mail', array($this, 'filter_wp_mail'), 30);
1941 3305 $files = $this->helper->get('forminator_attachments');
1942 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 + }
1943 3312 foreach ($files as $key => $file) {
1944 - $this->helper->delete_dir(dirname($file) . '/');
3313 + if (!in_array($file, $saved, false)) {
3314 + $this->helper->delete_dir(dirname($file) . '/');
3315 + }
1945 3316 }
1946 3317 $this->helper->deset('forminator_attachments');
3318 + $this->helper->deset('forminator_saved_attachments');
1947 3319 }
1948 3320 }
1949 3321
1950 - 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) {
1951 3324 if (isset($message) && false !== strpos($message, '[')) {
1952 3325 $shortcode_tags = array(
1953 3326 'e2pdf-download',
1954 3327 'e2pdf-save',
1955 3328 'e2pdf-attachment',
1956 - 'e2pdf-adobesign'
3329 + 'e2pdf-adobesign',
3330 + 'e2pdf-zapier',
1957 3331 );
1958 3332
1959 3333 preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $message, $matches);
1960 -
1961 3334 $tagnames = array_intersect($shortcode_tags, $matches[1]);
1962 -
1963 3335 if (!empty($tagnames)) {
1964 - $pattern = get_shortcode_regex($tagnames);
1965 -
1966 - preg_match_all("/$pattern/", $message, $shortcodes);
3336 + preg_match_all('/' . $this->helper->load('shortcode')->get_shortcode_regex($tagnames) . '/', $message, $shortcodes);
1967 3337 foreach ($shortcodes[0] as $key => $shortcode_value) {
1968 - $shortcode = array();
1969 - $shortcode[1] = $shortcodes[1][$key];
1970 - $shortcode[2] = $shortcodes[2][$key];
1971 - $shortcode[3] = $shortcodes[3][$key];
1972 - $shortcode[4] = $shortcodes[4][$key];
1973 - $shortcode[5] = $shortcodes[5][$key];
1974 - $shortcode[6] = $shortcodes[6][$key];
1975 -
3338 + $shortcode = $this->helper->load('shortcode')->get_shortcode($shortcodes, $key);
1976 3339 $atts = shortcode_parse_atts($shortcode[3]);
1977 -
1978 - if (!array_key_exists('dataset', $atts) && array_key_exists('id', $atts)) {
3340 + $file = false;
3341 + if (!isset($atts['dataset']) && isset($atts['id'])) {
1979 3342 $template = new Model_E2pdf_Template();
1980 3343 $template->load($atts['id']);
1981 3344 if ($template->get('extension') === 'forminator') {
1982 - $entry_id = false;
1983 - if ($entry && is_object($entry) && property_exists($entry, 'entry_id') && isset($entry->entry_id)) {
1984 - $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;
1985 3349 }
1986 3350 if ($entry_id) {
1987 - $atts['dataset'] = $entry_id;
1988 - $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 + }
1989 3359 }
1990 3360 }
1991 3361 }
1992 -
1993 - if ($shortcode[2] === 'e2pdf-save' || $shortcode[2] === 'e2pdf-attachment' || $shortcode[2] === 'e2pdf-adobesign') {
1994 - $shortcode[3] .= " apply=\"true\"";
3362 + if (!isset($atts['apply'])) {
3363 + $shortcode[3] .= ' apply="true"';
1995 3364 }
1996 -
1997 - $shortcode[3] .= " filter=\"true\"";
1998 -
1999 - 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)) {
2000 3369 $file = do_shortcode_tag($shortcode);
2001 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 + }
2002 3381 $this->helper->add('forminator_attachments', $file);
2003 3382 }
2004 3383 $message = str_replace($shortcode_value, '', $message);
2005 3384 } else {
@@ -2004,74 +3383,90 @@
2004 3383 $message = str_replace($shortcode_value, '', $message);
2005 3384 } else {
2006 3385 $message = str_replace($shortcode_value, do_shortcode_tag($shortcode), $message);
2007 3386 }
3387 + remove_filter('e2pdf_model_shortcode_extension_options', array($this, 'filter_e2pdf_model_shortcode_extension_options'), 30);
2008 3388 }
3389 +
3390 + add_filter('wp_mail', array($this, 'filter_wp_mail'), 30);
2009 3391 }
2010 3392 }
2011 -
2012 3393 return $message;
2013 3394 }
2014 3395
2015 - 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 + }
2016 3403
3404 + // submit response filter
3405 + public function filter_forminator_custom_form_submit_response($response) {
2017 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, '[')) {
2018 3416 $shortcode_tags = array(
2019 3417 'e2pdf-download',
2020 3418 'e2pdf-save',
2021 3419 'e2pdf-view',
2022 - 'e2pdf-adobesign'
3420 + 'e2pdf-adobesign',
3421 + 'e2pdf-zapier',
2023 3422 );
2024 -
2025 - preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $response['message'], $matches);
2026 -
3423 + preg_match_all('@\[([^<>&/\[\]\x00-\x20=]++)@', $content, $matches);
2027 3424 $tagnames = array_intersect($shortcode_tags, $matches[1]);
2028 -
2029 3425 if (!empty($tagnames)) {
2030 - $pattern = get_shortcode_regex($tagnames);
2031 -
2032 - preg_match_all("/$pattern/", $response['message'], $shortcodes);
3426 + preg_match_all('/' . $this->helper->load('shortcode')->get_shortcode_regex($tagnames) . '/', $content, $shortcodes);
2033 3427 foreach ($shortcodes[0] as $key => $shortcode_value) {
2034 - $shortcode = array();
2035 - $shortcode[1] = $shortcodes[1][$key];
2036 - $shortcode[2] = $shortcodes[2][$key];
2037 - $shortcode[3] = $shortcodes[3][$key];
2038 - $shortcode[4] = $shortcodes[4][$key];
2039 - $shortcode[5] = $shortcodes[5][$key];
2040 - $shortcode[6] = $shortcodes[6][$key];
2041 -
3428 + $shortcode = $this->helper->load('shortcode')->get_shortcode($shortcodes, $key);
2042 3429 $atts = shortcode_parse_atts($shortcode[3]);
2043 -
2044 - if (!array_key_exists('dataset', $atts) && array_key_exists('id', $atts)) {
2045 - $template = new Model_E2pdf_Template();
2046 - $template->load($atts['id']);
2047 - if ($template->get('extension') === 'forminator') {
2048 - $entry_id = $this->get('dataset');
2049 - if ($entry_id) {
2050 - $atts['dataset'] = $entry_id;
2051 - $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 + }
2052 3447 }
2053 3448 }
2054 - }
2055 3449
2056 - if ($shortcode[2] === 'e2pdf-save' || $shortcode[2] === 'e2pdf-adobesign') {
2057 - $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);
2058 3461 }
2059 -
2060 - $shortcode[3] .= " filter=\"true\"";
2061 -
2062 - if ($shortcode['2'] === 'e2pdf-view') {
2063 - $response['message'] = str_replace($shortcode_value, do_shortcode_tag($shortcode), $response['message']);
2064 - } else {
2065 - $response['message'] = str_replace($shortcode_value, do_shortcode_tag($shortcode), $response['message']);
2066 - }
2067 3462 }
2068 3463 }
2069 3464 }
2070 - $this->set('dataset', false);
2071 - return $response;
3465 + return $content;
2072 3466 }
2073 3467
3468 + // wp mail filter
2074 3469 public function filter_wp_mail($args = array()) {
2075 3470 $files = $this->helper->get('forminator_attachments');
2076 3471 if (is_array($files) && !empty($files)) {
2077 3472 foreach ($files as $file) {
@@ -2088,26 +3483,46 @@
2088 3483
2089 3484 return $wp_mail;
2090 3485 }
2091 3486
2092 - /**
2093 - * Get styles for generating Map Field function
2094 - *
2095 - * @return array - List of css files to load
2096 - */
2097 - public function styles() {
3487 + // styles
3488 + public function styles($item_id = false) {
2098 3489 $styles = array();
2099 - if (function_exists(forminator_plugin_url)) {
2100 - if (defined("FORMINATOR_VERSION")) {
3490 + if (function_exists('forminator_plugin_url') && class_exists('Forminator_API')) {
3491 + if (defined('FORMINATOR_VERSION')) {
2101 3492 $version = FORMINATOR_VERSION;
2102 3493 } else {
2103 3494 $version = '0';
2104 3495 }
2105 - $styles = array(
2106 - forminator_plugin_url() . 'assets/css/front.min.css?v=' . $version,
2107 - plugins_url('css/extension/forminator.css?v=' . time(), $this->helper->get('plugin_file_path'))
2108 - );
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 + }
2109 3525 }
2110 3526 return $styles;
2111 3527 }
2112 -
2113 3528 }