helper.php
28.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
<?php
/**
* Joomla! component Creative Contact Form
*
* @version $Id: 2012-04-05 14:30:25 svn $
* @author creative-solutions.net
* @package Creative Contact Form
* @subpackage com_creativecontactform
* @license GNU/GPL
*
*/
// no direct access
defined('_JEXEC') or die('Restircted access');
class CreativecontactformHelper
{
//function to add scripts/styles
private function add_scripts() {
$version = '4.5.0';
$document = JFactory::getDocument();
$types_array = $this->types_array;
$form_id = $this->form_id;
$cssFile = JURI::base(true).'/components/com_creativecontactform/assets/css/main.css?version='.$version;
$document->addStyleSheet($cssFile, 'text/css', null, array());
$cssFile = JURI::base(true).'/components/com_creativecontactform/assets/css/creativecss-ui.css';
$document->addStyleSheet($cssFile, 'text/css', null, array());
$cssFile = JURI::base(true).'/components/com_creativecontactform/assets/css/creative-scroll.css';
$document->addStyleSheet($cssFile, 'text/css', null, array());
$cssFile = JURI::base(true).'/components/com_creativecontactform/assets/css/template.css';
$document->addStyleSheet($cssFile, 'text/css', null, array());
$jsFile = JURI::base(true).'/components/com_creativecontactform/assets/js/creativelib.js';
$document->addScript($jsFile);
$jsFile = JURI::base(true).'/components/com_creativecontactform/assets/js/creativelib-ui.js';
$document->addScript($jsFile);
$jsFile = JURI::base(true).'/components/com_creativecontactform/assets/js/creative-mousewheel.js';
$document->addScript($jsFile);
$jsFile = JURI::base(true).'/components/com_creativecontactform/assets/js/creative-scroll.js';
$document->addScript($jsFile);
$jsFile = JURI::base(true).'/components/com_creativecontactform/assets/js/creativecontactform.js?version='.$version;
$document->addScript($jsFile);
}
private function get_data() {
$db = JFactory::getDBO();
//get field types array/////////////////////////////////////////////////////////////////////////////////////////////////
$query = "
SELECT
sp.id,
st.name as type
FROM
`#__creative_fields` sp
JOIN `#__creative_field_types` st ON st.id = sp.id_type
WHERE sp.published = '1'
AND sp.id_form = '".$this->form_id."'
ORDER BY sp.ordering,sp.id
";
$db->setQuery($query);
$types_array_data = $db->loadAssocList();
$types_array_index = 1;
$types_array = array();
if(is_array($types_array_data)) {
foreach($types_array_data as $type) {
$types_array[$types_array_index] = strtolower(str_replace(' ','-',str_replace('-','',$type['type'])));
$types_array_index ++;
}
}
$this->types_array = $types_array;
// set field index
if(!isset($this->field_index))
$this->field_index = 1;
//get form data/////////////////////////////////////////////////////////////////////////////////////////////////
$query = "
SELECT
sp.`id_template`,
sp.name,
sp.top_text,
sp.pre_text,
sp.thank_you_text,
sp.send_text,
sp.send_new_text,
sp.close_alert_text,
sp.form_width,
sp.redirect,
sp.redirect_itemid,
sp.redirect_url,
sp.redirect_delay,
sp.shake_count,
sp.shake_distanse,
sp.send_copy_enable,
sp.send_copy_text,
sp.shake_duration,
sp.custom_css,
st.styles,
sp.render_type,
sp.popup_button_text,
sp.static_button_position,
sp.static_button_offset,
sp.appear_animation_type,
sp.check_token,
sp.next_button_text,
sp.prev_button_text
FROM
`#__creative_forms` sp
LEFT JOIN `#__contact_templates` st ON st.id = sp.id_template
WHERE sp.published = '1'
AND sp.id = '".$this->form_id."'";
$db->setQuery($query);
$this->form_data = $db->loadAssoc();
//sp.id_template
//get fields data/////////////////////////////////////////////////////////////////////////////////////////////////
$query = "
SELECT
sp.id,
sp.name,
sp.tooltip_text,
sp.required,
sp.ordering_field,
sp.select_default_text,
sp.show_parent_label,
sp.select_no_match_text,
sp.width,
sp.field_margin_top,
sp.select_show_scroll_after,
sp.select_show_search_after,
sp.upload_button_text,
sp.upload_minfilesize,
sp.upload_maxfilesize,
sp.upload_acceptfiletypes,
sp.upload_minfilesize_message,
sp.upload_maxfilesize_message,
sp.upload_acceptfiletypes_message,
sp.captcha_wrong_message,
sp.datepicker_date_format,
sp.datepicker_animation,
sp.datepicker_style,
sp.datepicker_icon_style,
sp.datepicker_show_icon,
sp.datepicker_input_readonly,
sp.datepicker_number_months,
sp.datepicker_mindate,
sp.datepicker_maxdate,
sp.datepicker_changemonths,
sp.datepicker_changeyears,
sp.column_type,
sp.custom_html,
sp.google_maps,
sp.heading,
sp.recaptcha_site_key,
sp.recaptcha_wrong_message,
sp.recaptcha_theme,
sp.recaptcha_type,
sp.contact_data,
sp.contact_data_width,
sp.creative_popup,
sp.creative_popup_embed,
st.name as type
FROM
`#__creative_fields` sp
JOIN `#__creative_field_types` st ON st.id = sp.id_type
WHERE sp.published = '1'
AND sp.id_form = '".$this->form_id."'
ORDER BY sp.ordering,sp.id
";
$db->setQuery($query);
$this->field_data = $db->loadAssocList();
//get fields data/////////////////////////////////////////////////////////////////////////////////////////////////
$REMOTE_ADDR = null;
$this->remote_addr = $REMOTE_ADDR;
}
private function print_fields_array_html($field_data) {
$db = JFactory::getDBO();
//get data/////////////////////////////////////////////////////////////////////////////////////////////////////////
$this->get_data();
//add scripts/////////////////////////////////////////////////////////////////////////////////////////////////////
if($this->type != 'plugin')
$this->add_scripts();
//Get variables////////////////////////////////////////////////////////////////////////////////////////////////////
$module_id = $this->module_id;
$form_data = $this->form_data;
$types_array = $this->types_array;
$form_id = $this->form_id;
$templateid = $form_data['id_template'];
$styles_row = $form_data['styles'];
$tooltip_style = 'white';
$top_text_font_effect = '';
$heading_text_font_effect = '';
$pre_text_font_effect = '';
$label_text_font_effect = '';
$label_hover_text_font_effect = '';
$label_error_text_font_effect = '';
$send_font_effect = '';
$send_hover_font_effect = '';
$this->heading_text_font_effect = $heading_text_font_effect;
$focus_anim_enabled = $label_text_font_effect == $label_hover_text_font_effect ? 0 : 1;
$error_anim_enabled = $label_text_font_effect == $label_error_text_font_effect ? 0 : 1;
$user = JFactory::getUser();
$is_textarea_exist = false;
foreach($field_data as $field) {
$field_index = $this->field_index;
$field_width = $field['width'] != '' ? 'style="width: '.$field['width'].' !important"' : '';
$field_width_select = $field['width'] != '' ? $field['width'] : '';
$field_margin = $field['field_margin_top'] != '' ? 'style="margin: '.$field['field_margin_top'].' !important"' : '';
$field_name = stripslashes($field['name']);
$field_tooltip_text = stripslashes($field['tooltip_text']);
$field_type = strtolower(str_replace(' ','-',str_replace('-','',$field['type'])));
$element_id = $field_type.'_'.$module_id.'_'.$field['id'];
$required_classname = $field['required'] == 1 ? 'creativecontactform_required' : '';
$required_symbol = $field['required'] == 1 ? ' <span class="creativecontactform_field_required">*</span>' : '';
$predefined_value = $field_type == 'name' ? $user->name : ($field_type == 'email' ? $user->email : '');
if($field_type == 'text-area')
$is_textarea_exist = true;
//input html
$input_type_text_arrays = array('text-input','name','address','email','phone','number','url');
if(in_array($field_type,$input_type_text_arrays)) {
$input_html = '<div class="creativecontactform_input_element '.$required_classname.'"><div class="creative_input_dummy_wrapper">';
$input_html .= '<input class="creative_'.$field_type.' '.$required_classname.' creative_input_reset" pre_value="'.str_replace('"','',$predefined_value).'" value="'.str_replace('"','',$predefined_value).'" type="text" id="'.$element_id.'" name="creativecontactform_fields['.$field_index.'][0]"></div></div>';
}
elseif($field_type == 'text-area') {
$input_html = '<div class="creativecontactform_input_element creative_textarea_wrapper '.$required_classname.'"><div class="creative_textarea_dummy_wrapper">';
$input_html .= '<textarea class="creative_textarea creative_'.$field_type.' '.$required_classname.' creative_textarea_reset" value="'.$predefined_value.'" cols="30" rows="15" id="'.$element_id.'" name="creativecontactform_fields['.$field_index.'][0]"></textarea></div></div>';
}
elseif($field_type == 'select' || $field_type == 'multiple-select' || $field_type == 'radio' || $field_type == 'checkbox') {
//get child options
$query = "
SELECT
spo.name,
spo.id,
spo.value,
spo.selected
FROM
`#__creative_form_options` spo
WHERE spo.id_parent = '".$field['id']."'
AND spo.showrow = '1'
ORDER BY ";
if($field['ordering_field'] == 0)
$query .= "spo.ordering";
else
$query .= "spo.name";
$db->setQuery($query);
$childs_array = $db->loadAssocList();
if (sizeof($childs_array) > 0)
{
$childs_length = sizeof($childs_array);
if($field_type == 'select' || $field_type == 'multiple-select') {
$selected_count = 0;
foreach ($childs_array as $key => $value)
{
if($value['selected'] == 1) {
$selected_count= 1;
break;
}
}
$def_selection = $selected_count == 0 ? 'selected="selected"' : '';
$show_search = $childs_length >= $field["select_show_search_after"] ? 'show' : 'hide';
$scroll_after = (int)$field["select_show_scroll_after"] > 3 ? (int)$field["select_show_scroll_after"] : 3;
$multile_info = $field_type == 'multiple-select' ? 'multiple="multiple"' : '';
$multile_info_val = $field_type == 'multiple-select' ? '[]' : '';
$input_html = '<select show_search="'.$show_search.'" scroll_after="'.$scroll_after.'" special_width="'.$field_width_select.'" select_no_match_text="'.stripslashes(str_replace('"','',$field["select_no_match_text"])).'" class="will_be_creative_select '.$required_classname.'" '.$multile_info.' name="creativecontactform_fields['.$field_index.'][0]'.$multile_info_val.'">';
$input_html .= '<option '.$def_selection.' class="def_value" value="creative_empty">'.$field["select_default_text"].'</option>';
$selected = '';
$pre_val='';
$seted_value = false;
foreach ($childs_array as $key => $value)
{
if(!$seted_value && $field_type == 'select' && $value['selected'] == '1') {
$selected = 'selected="selected"';
$pre_val = 'pre_val="selected"';
$seted_value = true;
}
elseif($field_type == 'multiple-select' && $value['selected'] == '1') {
$selected = 'selected="selected"';
$pre_val = 'pre_val="selected"';
}
else {
$selected = '';
$pre_val = '';
}
$input_html .= '<option id="'.$module_id.'_'.$field["id"].'_'.$value["id"].'" value="'.stripslashes(str_replace('"','',$value["value"])).'" '.$selected.' '.$pre_val.'>'.stripslashes($value["name"]).'</option>';
}
$input_html .= '</select>';
}
elseif($field_type == 'radio' || $field_type == 'checkbox') {
$input_html = '';
$colors_array = array("black","blue","red","litegreen","yellow","liteblue","green","crimson","litecrimson");
$selected = '';
$pre_val='';
$seted_value = false;
foreach ($childs_array as $key => $value)
{
if($field_type == 'radio' && !$seted_value && $value['selected'] == '1') {
$selected = 'checked="checked"';
$pre_val = 'pre_val="checked"';
$seted_value = true;
}
elseif($field_type == 'checkbox' && $value['selected'] == '1') {
$selected = 'checked="checked"';
$pre_val = 'pre_val="checked"';
}
else {
$selected = '';
$pre_val = '';
}
$data_color_index = $key % 8;
$current_label = stripslashes($value["name"]);
$label_class = $field['show_parent_label'] == 0 ? 'without_parent_label' : '';
$req_symbol = ($field['show_parent_label'] == 0 && $key == 0) ? $required_symbol : '';
$input_html .= '<div class="creative_checkbox_wrapper centered"><div class="answer_name"><label uniq_index="'.$module_id.'_'.$field["id"].'_'.$value["id"].'" class="twoglux_label '.$label_class.'"><span class="creative_checkbox_label_wrapper">'.$current_label.' '.$req_symbol.'</span></label></div>';
$input_html .= '<div class="answer_input">';
if($field_type == 'radio')
$input_html .= '<input '.$selected.' '.$pre_val.' id="'.$module_id.'_'.$field["id"].'_'.$value["id"].'" type="radio" class="creative_ch_r_element creativeform_twoglux_styled elem_'.$module_id.'_'.$field["id"].'" value="'.stripslashes(str_replace('"','',$value["value"])).'" uniq_index="elem_'.$module_id.'_'.$field["id"].'" name="remove_this_partcreativecontactform_fields['.$field_index.'][0]" data-color="'.$colors_array[$data_color_index].'" />';
else
$input_html .= '<input '.$selected.' '.$pre_val.' id="'.$module_id.'_'.$field["id"].'_'.$value["id"].'" type="checkbox" class="creative_ch_r_element creativeform_twoglux_styled" value="'.stripslashes(str_replace('"','',$value["value"])).'" name="creativecontactform_fields['.$field_index.'][0][]" data-color="'.$colors_array[$data_color_index].'" />';
$input_html .= '</div></div><div class="creative_clear"></div>';
}
}
}
else {
$input_html = 'There are no options to be shown.';
}
}
$hidden_field_types = array('file-upload','captcha','custom-html','heading','google-maps','google-recaptcha','contact-data','social-links','creative-popup');
if(!in_array($field_type,$hidden_field_types)) {
$input_html .= '<input type="hidden" name="creativecontactform_fields['.$field_index.'][1]" value="'.stripslashes(str_replace('"','',$field_name)).'" />';
$input_html .= '<input type="hidden" name="creativecontactform_fields['.$field_index.'][2]" value="'.$field_type.'" />';
}
//start printing html
$radio_checkbox_class = ($field_type == 'radio' || $field_type == 'checkbox' || $field_type == 'file-upload') ? 'creative_'.$field_type : '';
$radio_checkbox_req_class = ($field_type == 'radio' || $field_type == 'checkbox' || $field_type == 'file-upload') ? $required_classname : '';
if($field_type == 'radio' || $field_type == 'checkbox' || $field_type == 'file-upload' || $field_type == 'captcha') {
$box_inner_class = $is_textarea_exist ? 'creativecontactform_field_box_textarea_inner' : 'creativecontactform_field_box_inner';
}
else {
$box_inner_class = $field_type == 'text-area' ? 'creativecontactform_field_box_textarea_inner' : 'creativecontactform_field_box_inner';
}
//start printing boxes
$wrapper_id = $field_type == 'google-recaptcha' ? $element_id : '';
$field_box_style = $field_type == 'creative-popup' ? 'style="display: none"' : '';
echo '<div id="'.$wrapper_id.'" '.$field_margin.' class="creativecontactform_field_box creative_hidden_animation_block_state1 creative_timing_'.$field_index.' creative_timing_'.$field_type.' '.$radio_checkbox_class.' '.$radio_checkbox_req_class.'"><div '.$field_width.' class="'.$box_inner_class.'">';
$show_label = ($field['show_parent_label'] == 0 || $field_type == 'heading') ? 'style="display:none !important"' : '';
echo '<label normal_effect_class="'.$label_text_font_effect.'" hover_effect_class="'.$label_hover_text_font_effect.'" error_effect_class="'.$label_error_text_font_effect.'" class="creativecontactform_field_name '.$label_text_font_effect.'" for="'.$element_id.'" '.$show_label.'><span class="creative_label_txt_wrapper">'.$field_name;
if($field_type == 'captcha')
echo ' <span class="creativecontactform_field_required">*</span></label>';
else
echo $required_symbol.'</span></label>';
echo $input_html;
echo '</div></div>';
// echo '</div>';
$this->field_index ++;
}
}
public function render_html()
{
$db = JFactory::getDBO();
$document = JFactory::getDocument();
//get data/////////////////////////////////////////////////////////////////////////////////////////////////////////
$this->get_data();
//add scripts/////////////////////////////////////////////////////////////////////////////////////////////////////
if($this->type != 'plugin')
$this->add_scripts();
//Get variables////////////////////////////////////////////////////////////////////////////////////////////////////
$module_id = $this->module_id;
$form_data = $this->form_data;
$field_data = $this->field_data;
$types_array = $this->types_array;
$form_id = $this->form_id;
$templateid = $form_data['id_template'];
$styles_row = $form_data['styles'];
$this->section_id = 0;
$tooltip_style = '';
$tooltip_style = '';
$scrollbar_popup_style = 'dark-thin';
$scrollbar_content_style = 'dark-thin';
$ccf_global_icons_style = 1;
$ccf_sections_icons_style = '';
$top_text_font_effect = '';
$heading_text_font_effect = '';
$pre_text_font_effect = '';
$label_text_font_effect = '';
$label_hover_text_font_effect = '';
$label_error_text_font_effect = '';
$send_font_effect = '';
$send_hover_font_effect = '';
$focus_anim_enabled = 0;
$error_anim_enabled = 0;
// version 4.0 updates
$render_type = 0;
$popup_button_text = $form_data['popup_button_text'];
$static_button_position = $form_data['static_button_position'];
$static_button_offset = $form_data['static_button_offset'];
$appear_animation_type = $form_data['appear_animation_type'];
$check_token = $form_data['check_token'];
$next_button_text = $form_data['next_button_text'];
$prev_button_text = $form_data['prev_button_text'];
$REMOTE_ADDR = $this->remote_addr;
$user = JFactory::getUser();
$toptxt = $form_data['top_text'];
$pretxt = stripcslashes($form_data['pre_text']);
$form_width = $form_data['form_width'];
$custom_css = $form_data['custom_css'];
$redirect_enable = $form_data['redirect'];
$redirect = '';
if ($redirect_enable) {
$redirectItemId = (int) $form_data['redirect_itemid'] == 0 ? 1 : (int) $form_data['redirect_itemid'];
$redirectUrl = $form_data['redirect_url'];
if ($redirectUrl != '') {
$redirect = JRoute::_($redirectUrl, false);
} else {
$redirect = JRoute::_('index.php?Itemid='.$redirectItemId);
}
}
$redirect_delay = (int) $form_data['redirect_delay'];
$thank_you_text = htmlspecialchars($form_data['thank_you_text'],ENT_QUOTES);
$send_text = htmlspecialchars($form_data['send_text'],ENT_QUOTES);
$send_new_text = htmlspecialchars($form_data['send_new_text'],ENT_QUOTES);
$close_alert_text = htmlspecialchars($form_data['close_alert_text'],ENT_QUOTES);
//validation options
$shake_count = (int) $form_data['shake_count'];
$shake_distanse = (int) $form_data['shake_distanse'];
$shake_duration = (int) $form_data['shake_duration'];
//send copy options
$send_copy_enable= (int) $form_data['send_copy_enable'];
$send_copy_text=htmlspecialchars($form_data['send_copy_text'],ENT_QUOTES);
// zoom in animation
$wrapper_animation_class = '';
$header_animation_class = '';
$body_animation_class = '';
$field_box_animation_class = '';
$footer_animation_class = '';
if($appear_animation_type == 1) {
if($render_type == 0) {
$wrapper_animation_class = 'creative_wrapper_animation_state_1';
$header_animation_class = 'creative_header_animation_state_1';
$body_animation_class = 'creative_body_animation_state_1';
$field_box_animation_class = 'creative_field_box_animation_state_1';
$footer_animation_class = 'creative_footer_animation_state_1';
}
elseif($render_type == 1 || $render_type == 2) {
$wrapper_animation_class = 'creative_wrapper_animation_state_1_short';
$header_animation_class = 'creative_header_animation_state_1_short';
$body_animation_class = 'creative_body_animation_state_1_short';
$field_box_animation_class = 'creative_field_box_animation_state_1_short';
$footer_animation_class = 'creative_footer_animation_state_1_short';
}
}
$opacity_0_class = $render_type == 0 && $appear_animation_type == 2 ? 'opacity_0' : '';
//strat rendering html///////////////////////////////////////////////////////////////////////////////////////////////
ob_start();
if(sizeof($field_data) > 0) {
?>
<?php // echo $ccf_google_link;?>
<div render_type="<?php echo $render_type; ?>" class="creativecontactform_wrapper <?php echo $wrapper_animation_class; ?> <?php echo $opacity_0_class; ?> creative_form_module creative_form_<?php echo $form_id;?> ccf_icon_<?php echo $ccf_global_icons_style;?> ccf_sections_template_<?php echo $ccf_sections_icons_style;?>" <?php if($form_width != '') { echo 'style="width: '.$form_width.' !important"'; }?> focus_anim_enabled="<?php echo $focus_anim_enabled;?>" error_anim_enabled="<?php echo $error_anim_enabled;?>" scrollbar_popup_style="<?php echo $scrollbar_popup_style;?>" scrollbar_content_style="<?php echo $scrollbar_content_style;?>">
<div class="v4_data" popup_button_text="<?php echo $popup_button_text; ?>" static_button_position="<?php echo $static_button_position; ?>" static_button_offset="<?php echo $static_button_offset; ?>" appear_animation_type="<?php echo $appear_animation_type; ?>" next_button_text="<?php echo $next_button_text; ?>" prev_button_text="<?php echo $prev_button_text; ?>" form_id="<?php echo $form_id; ?>" form_w="<?php echo $form_width; ?>"></div>
<div class="creativecontactform_wrapper_inner">
<div class="creativecontactform_loading_wrapper"><table style="border: none;width: 100%;height: 100%"><tr><td align="center" valign="middle"><img src="<?php echo JURI::base(true).'/components/com_creativecontactform/assets/images/ajax-loader.gif';?>" /></td></tr></table></div>
<div class="creativecontactform_header <?php echo $header_animation_class; ?>">
<div class="creativecontactform_title <?php echo $top_text_font_effect;?>"><?php echo $toptxt;?></div>
<?php if($pretxt != '') {?><div class="creativecontactform_pre_text <?php echo $pre_text_font_effect;?>"><?php echo $pretxt;?></div><?php }?>
</div>
<form class="creativecontactform_form">
<div class="creativecontactform_body <?php echo $body_animation_class; ?>">
<?php
if(sizeof($field_data) > 0) {
// split data
$fields_final_array = array();
$k = 0;
$separate_col_0 = false;
$separate_col_12 = false;
foreach($field_data as $field) {
$column_type = $field['column_type'];
if($column_type != 0) {
if($separate_col_12) {
$k ++;
$separate_col_12 = false;
}
$fields_final_array[$k][$column_type][] = $field;
$separate_col_0 = true;
}
else {
if($separate_col_0) {
$k ++;
$separate_col_0 = false;
}
$fields_final_array[$k][$column_type][] = $field;
$separate_col_12 = true;
}
}
foreach($fields_final_array as $k => $field_columns_array) {
// echo '<div style="clear: both">'.$k.'</div>';
//print left columns
if(isset($field_columns_array['1']) || isset($field_columns_array['2'])) {
echo '<div class="'.$field_box_animation_class.' creative_field_box_wrapper_1 '.$field_box_animation_class.'"><div class="creative_field_box_wrapper_1_inner">';
if(isset($field_columns_array['1'])) {
$this->print_fields_array_html($field_columns_array['1']);
}
echo '</div></div>';
}
if(isset($field_columns_array['2'])) {
//print right column
echo '<div class="'.$field_box_animation_class.' creative_field_box_wrapper_2 '.$field_box_animation_class.'"><div class="creative_field_box_wrapper_2_inner">';
if(isset($field_columns_array['2'])) {
$this->print_fields_array_html($field_columns_array['2']);
}
echo '</div></div>';
}
// print both columns
if(isset($field_columns_array['0'])) {
//print right column
echo '<div class="creativecontactform_clear"></div><div class="'.$field_box_animation_class.' creative_field_box_wrapper_0 '.$field_box_animation_class.'">';
if(isset($field_columns_array['0'])) {
$this->print_fields_array_html($field_columns_array['0']);
}
echo '</div>';
}
}
}
?>
<div class="creative_clear"></div>
</div>
<div class="creativecontactform_footer <?php echo $footer_animation_class; ?>">
<div class="creativecontactform_submit_wrapper creative_button_animation_state_1">
<input type="button" value="<?php echo $send_text;?>" class="creativecontactform_send <?php echo $send_font_effect;?>" roll="<?php echo $form_id;?>" normal_effect_class="<?php echo $send_font_effect;?>" hover_effect_class="<?php echo $send_hover_font_effect;?>"/>
<input type="button" value="<?php echo $send_new_text;?>" class="creativecontactform_send_new creativecontactform_hidden <?php echo $send_font_effect;?>" roll="<?php echo $form_id;?>" normal_effect_class="<?php echo $send_font_effect;?>" hover_effect_class="<?php echo $send_hover_font_effect;?>"/>
<div class="creativecontactform_clear"></div>
</div>
<div class="creative_clear"> </div><div class="ccf_copyright_wrapper"></div>
<input type="hidden" name="<?php echo JSession::getFormToken();?>" class="creativecontactform_token" value="1" />
<input type="hidden" value="<?php echo $module_id;?>" class="creativecontactform_module_id" name="creativecontactform_module_id" />
<input type="hidden" value="<?php echo $form_id;?>" class="creativecontactform_form_id" name="creativecontactform_form_id" />
</div>
</form>
</div>
</div>
<?php
//including custom javascript/////////////////////////////////////////////////////////////////////////////////////////////////
$jsInclude = ' if (typeof creativecontactform_shake_count_array === \'undefined\') { var creativecontactform_shake_count_array = new Array();};';
$jsInclude .= 'creativecontactform_shake_count_array['.$form_id.'] = "'.$shake_count.'";';
$jsInclude .= ' if (typeof creativecontactform_shake_distanse_array === \'undefined\') { var creativecontactform_shake_distanse_array = new Array();};';
$jsInclude .= 'creativecontactform_shake_distanse_array['.$form_id.'] = "'.$shake_distanse.'";';
$jsInclude .= ' if (typeof creativecontactform_shake_duration_array === \'undefined\') { var creativecontactform_shake_duration_array = new Array();};';
$jsInclude .= 'creativecontactform_shake_duration_array['.$form_id.'] = "'.$shake_duration.'";';
$jsInclude .= 'var creativecontactform_path = "'.JURI::base(true).'/components/com_creativecontactform/";';
$jsInclude .= ' if (typeof creativecontactform_redirect_enable_array === \'undefined\') { var creativecontactform_redirect_enable_array = new Array();};';
$jsInclude .= 'creativecontactform_redirect_enable_array['.$form_id.'] = "'.$redirect_enable.'";';
$jsInclude .= ' if (typeof creativecontactform_redirect_array === \'undefined\') { var creativecontactform_redirect_array = new Array();};';
$jsInclude .= 'creativecontactform_redirect_array['.$form_id.'] = "'.$redirect.'";';
$jsInclude .= ' if (typeof creativecontactform_redirect_delay_array === \'undefined\') { var creativecontactform_redirect_delay_array = new Array();};';
$jsInclude .= 'creativecontactform_redirect_delay_array['.$form_id.'] = "'.$redirect_delay.'";';
$jsInclude .= ' if (typeof creativecontactform_thank_you_text_array === \'undefined\') { var creativecontactform_thank_you_text_array = new Array();};';
$jsInclude .= 'creativecontactform_thank_you_text_array['.$form_id.'] = "'.$thank_you_text.'";';
$jsInclude .= ' if (typeof close_alert_text === \'undefined\') { var close_alert_text = new Array();};';
$jsInclude .= 'close_alert_text['.$form_id.'] = "'.$close_alert_text.'";';
$jsInclude .= 'creativecontactform_juri = "'.JURI::base( true ).'";';
if($this->type != 'plugin') {
$document = JFactory::getDocument();
$document->addScriptDeclaration ( $jsInclude );
}
else {
echo $jstoinclude = '<script type="text/javascript">'.$jsInclude.'</script>';
}
}
else {
echo 'Creative Contact Form: There is nothing to show!';
}
?>
<?php
return $render_html = ob_get_clean();
}
}