| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/arforms/core/views/ |
Upload File : |
<?php
global $current_user, $arformhelper,$arf_installed_field_types,$arrecordcontroller,$arformcontroller;
$browser_info = $arrecordcontroller->getBrowser($_SERVER['HTTP_USER_AGENT']);
@ini_set('max_execution_time', 0);
global $arformcontroller,$arformsplugin;
$setvaltolic = 0;
$setvaltolic = $arformcontroller->$arformsplugin();
?>
<div class="wrap arfforms_page arf_imortexport" style="width:100%; box-sizing: border-box;-webkit-box-sizing: border-box;-o-box-sizing: border-box;-moz-box-sizing: border-box;">
<div class="top_bar">
<span class="h2"><?php echo addslashes(esc_html__('Import / Export Forms', 'ARForms')); ?></span>
</div>
<?php
if ($setvaltolic != 1) {
$admin_css_url = admin_url('admin.php?page=ARForms-license');
?>
<div style="margin-top:20px;margin-bottom:10px;border-left: 4px solid #ffba00;box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);height:20px;width:99%;padding:10px 0px 10px 25px;background-color:#f2f2f2;color:#000000;font-size:17px;display:block;visibility:visible;text-align:left;" >ARForms License is not activated. Please activate license from <a href="<?php echo $admin_css_url; ?>">here</a></div>
<?php } ?>
<div id="poststuff" class="metabox-holder">
<div id="post-body">
<div class="inside">
<div class="frm_settings_form ">
<?php
if (isset($_REQUEST['arf_import_btn']) && current_user_can('arfchangesettings')) {
@ini_set('max_execution_time', 0);
$wp_upload_dir = wp_upload_dir();
$upload_dir = $wp_upload_dir['basedir'] . '/arforms/css/';
$main_css_dir = $wp_upload_dir['basedir'] . '/arforms/maincss/';
$xml = html_entity_decode(base64_decode($_REQUEST['arf_import_textarea']));
$outside_fields = apply_filters('arf_installed_fields_outside',$arf_installed_field_types);
libxml_use_internal_errors(true);
$xml = simplexml_load_string( $xml );
if( $xml === false ){
$xml = base64_decode($_REQUEST['arf_import_textarea']);
$outside_fields = apply_filters('arf_installed_fields_outside',$arf_installed_field_types);
libxml_use_internal_errors(true);
$xml = simplexml_load_string($xml);
}
$invalid_file_ext = array( "php", "php3", "php4", "php5", "pl", "py", "jsp", "asp", "exe", "cgi" );
$valid_file_ext = array("jpg", "png", "gif", "jpeg", "svg", "webp");
if( !isset( $_REQUEST['arf_nonce'] ) || ( isset( $_REQUEST['arf_nonce'] ) && !wp_verify_nonce( $_REQUEST['arf_nonce'], 'arf_import_form' ) ) ){
?>
<script type="text/javascript" language="javascript"> setTimeout(function () {
error_msg();
}, 10);</script>
<div id="error_message" class="arf_error_message">
<div class="message_descripiton">
<div style="float: left; margin-right: 15px;" id=""><?php echo addslashes(esc_html__('Sorry, You are not an authorized person to perform this action.', 'ARForms')); ?></div>
<div class="message_svg_icon">
<svg style="height: 14px;width: 14px;"><path fill-rule="evenodd" clip-rule="evenodd" fill="#ffffff" d="M10.702,10.909L6.453,6.66l-4.249,4.249L1.143,9.848l4.249-4.249L1.154,1.361l1.062-1.061l4.237,4.237l4.238-4.237l1.061,1.061L7.513,5.599l4.249,4.249L10.702,10.909z"></path></svg>
</div>
</div>
</div>
<?php
} else {
global $arffield, $arfform, $MdlDb, $wpdb, $WP_Filesystem, $armainhelper, $arfieldhelper, $arformhelper, $arsettingcontroller, $arfrecordmeta, $db_record, $arfsettings, $maincontroller;
if (isset($xml->form)) {
$ik = 0;
foreach ($xml->children() as $key_main => $val_main) {
$arfinputstyle = 'standard';
$attr = $val_main->attributes();
$old_form_id = $attr['id'];
$submit_bg_img_fnm = '';
$arfmainform_bg_img_fnm = '';
$arfmainform_bg_hover_img_fnm = '';
$submit_bg_img = trim($val_main->submit_bg_img);
$arfmainform_bg_img = trim($val_main->arfmainform_bg_img);
$submit_hover_bg_img = trim($val_main->submit_hover_bg_img);
$xml_arf_version = trim($val_main->arf_db_version);
$exported_site_uploads_dir = trim($val_main->exported_site_uploads_dir);
$wp_upload_dir = wp_upload_dir();
$imageupload_dir = $wp_upload_dir['basedir'] . '/arforms/';
$imageupload_url = $wp_upload_dir['baseurl'] . '/arforms/';
//code start here for submit bg image
if ($submit_bg_img != '') {
$submit_bg_img_filenm = basename($submit_bg_img);
$submit_bg_img_fnm = time() . '_' . $ik . "_" . $submit_bg_img_filenm;
$ik++;
$arfilecontroller = new arfilecontroller( $submit_bg_img, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $submit_bg_img_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$submit_bg_img_fnm = '';
}
}
//code end here
//code start here for background bg image
if ($arfmainform_bg_img != '') {
$arfmainform_bg_img_filenm = basename($arfmainform_bg_img);
$arfmainform_bg_img_fnm = time() . '_' . $ik . "_" . $arfmainform_bg_img_filenm;
$ik++;
$arfilecontroller = new arfilecontroller( $arfmainform_bg_img, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $arfmainform_bg_img_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$arfmainform_bg_img_fnm = '';
}
}
if ($submit_hover_bg_img != '') {
$submit_hover_bg_img_filenm = basename($submit_hover_bg_img);
$arfmainform_bg_hover_img_fnm = time() . '_' . $ik . "_" . $submit_hover_bg_img_filenm;
$ik++;
$arfilecontroller = new arfilecontroller( $submit_hover_bg_img, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $arfmainform_bg_hover_img_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$arfmainform_bg_hover_img_fnm = '';
}
}
//code end here
//code start here for get all general options.
$val = '';
$old_field_orders = $new_field_order = array();
$old_inner_field_orders = $new_inner_field_order = array();
$old_field_resize_width = $new_field_resize_width = array();
$new_inner_field_resize_width = array();
$old_field_order_type = $new_field_order_type = array();
foreach ($val_main->general_options->children() as $key => $val) {
if ($key == 'options') {
$options_arr = '';
$options_key = '';
$options_val = '';
unset($option_arr_new);
$option_string = '';
$options_arr = arf_json_decode(trim($val), true);
if( !is_array($options_arr) ){
$options_arr = json_decode($options_arr,true);
}
$enable_confirm_summary_flag = $options_arr['arf_confirmation_summary'];
foreach ($options_arr as $options_key => $options_val) {
if (!is_array($options_val)) {
$options_val = str_replace('[ENTERKEY]', '<br>', $options_val);
$options_val = str_replace('[AND]', '&', $options_val);
}
if ($options_key == 'before_html') {
$option_arr_new[$options_key] = $arformhelper->get_default_html('before');
} elseif ($options_key == 'ar_email_subject') {
$_SESSION['ar_email_subject_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_email_message') {
$_SESSION['ar_email_message_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_admin_email_message') {
$_SESSION['ar_admin_email_message_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_email_to') {
$_SESSION['ar_email_to_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_admin_from_email') {
$_SESSION['ar_admin_from_email'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_user_from_email') {
$_SESSION['ar_user_from_email'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'arf_conditional_mail_rules') {
$_SESSION['arf_conditional_mail_rules'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_admin_from_name') {
$_SESSION['arf_admin_from_name'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'admin_email_subject') {
$_SESSION['admin_email_subject'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'reply_to') {
$_SESSION['reply_to'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'arf_pre_dup_field') {
$_SESSION['arf_pre_dup_field'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} else if($options_key == 'arf_field_order' ){
$old_field_orders = json_decode($options_val,true);
$option_arr_new[$options_key] = $options_val;
} else if($options_key == 'arf_inner_field_order' ){
$old_inner_field_orders = json_decode( $options_val, true);
$option_arr_new[$options_key] = $options_val;
} else if($options_key == 'arf_field_resize_width' ){
$option_arr_new[$options_key] = $options_val;
$old_field_resize_width = json_decode( $options_val, true );
} else if($options_key == 'arf_inner_field_resize_width' ){
$option_arr_new[$options_key] = $options_val;
$new_field_resize_width = json_decode( $options_val, true );
} else {
$option_arr_new[$options_key] = $options_val;
}
}
$option_string = maybe_serialize($option_arr_new);
$general_option[$key] = $option_string;
$general_op = $option_string;
} elseif ($key == 'form_css') {
$form_css_arr = arf_json_decode(trim($val),true);
if (!isset($form_css_arr['prefix_suffix_bg_color']) || $form_css_arr['prefix_suffix_bg_color'] == ''){
$form_css_arr['prefix_suffix_bg_color'] = '#e7e8ec';
}
if (!isset($form_css_arr['prefix_suffix_icon_color']) || $form_css_arr['prefix_suffix_icon_color'] == ''){
$form_css_arr['prefix_suffix_icon_color'] = '#808080';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_1']) || $form_css_arr['arfsectionpaddingsetting_1'] == ''){
$form_css_arr['arfsectionpaddingsetting_1'] = '20';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_2']) || $form_css_arr['arfsectionpaddingsetting_2'] == ''){
$form_css_arr['arfsectionpaddingsetting_2'] = '0';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_3']) || $form_css_arr['arfsectionpaddingsetting_3'] == ''){
$form_css_arr['arfsectionpaddingsetting_3'] = '20';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_4']) || $form_css_arr['arfsectionpaddingsetting_4'] == ''){
$form_css_arr['arfsectionpaddingsetting_4'] = '20';
}
if( !isset($form_css_arr['arfsubmitboxxoffsetsetting']) || $form_css_arr['arfsubmitboxxoffsetsetting'] == '' ){
$form_css_arr['arfsubmitboxxoffsetsetting'] = '1';
}
if( !isset($form_css_arr['arfsubmitboxyoffsetsetting']) || $form_css_arr['arfsubmitboxyoffsetsetting'] == '' ){
$form_css_arr['arfsubmitboxyoffsetsetting'] = '2';
}
if( !isset($form_css_arr['arfsubmitboxblursetting']) || $form_css_arr['arfsubmitboxblursetting'] == '' ){
$form_css_arr['arfsubmitboxblursetting'] = '3';
}
if( !isset($form_css_arr['arfsubmitboxshadowsetting']) || $form_css_arr['arfsubmitboxshadowsetting'] == '' ){
$form_css_arr['arfsubmitboxshadowsetting'] = '0';
}
$arfinputstyle = !empty( $form_css_arr['arfinputstyle'] ) ? $form_css_arr['arfinputstyle'] : 'standard';
if( !empty( $arfinputstyle ) && !in_array( $arfinputstyle, $maincontroller->arf_default_themes() ) ){
$arfinputstyle = 'standard';
$form_css_arr['arfinputstyle'] = 'standard';
}
foreach ($form_css_arr as $form_css_key => $form_css_val) {
if ($form_css_key == 'submit_bg_img') {
if ($submit_bg_img_fnm == '') {
$form_css_arr_new['submit_bg_img'] = '';
$form_css_arr_new_db['submit_bg_img'] = '';
} else {
$form_css_arr_new['submit_bg_img'] = $imageupload_url . $submit_bg_img_fnm;
$form_css_arr_new_db['submit_bg_img'] = $imageupload_url . $submit_bg_img_fnm;
}
} elseif ($form_css_key == 'arfmainform_bg_img') {
if ($arfmainform_bg_img_fnm == '') {
$form_css_arr_new[$form_css_key] = '';
$form_css_arr_new_db[$form_css_key] = '';
} else {
$form_css_arr_new[$form_css_key] = $imageupload_url . $arfmainform_bg_img_fnm;
$form_css_arr_new_db[$form_css_key] = $imageupload_url . $arfmainform_bg_img_fnm;
}
} elseif ($form_css_key == 'submit_hover_bg_img') {
if ($arfmainform_bg_hover_img_fnm == '') {
$form_css_arr_new[$form_css_key] = '';
$form_css_arr_new_db[$form_css_key] = '';
} else {
$form_css_arr_new[$form_css_key] = $imageupload_url . $arfmainform_bg_hover_img_fnm;
$form_css_arr_new_db[$form_css_key] = $imageupload_url . $arfmainform_bg_hover_img_fnm;
}
} elseif ($form_css_key == 'arf_checked_checkbox_icon' || $form_css_key == 'arf_checked_radio_icon') {
$form_css_arr_new[$form_css_key] = $armainhelper->arf_update_fa_font_class($form_css_val);
$form_css_arr_new_db[$form_css_key] = $armainhelper->arf_update_fa_font_class($form_css_val);
} else {
$form_css_arr_new[$form_css_key] = $form_css_val;
$form_css_arr_new_db[$form_css_key] = $form_css_val;
}
}
$final_val = maybe_serialize($form_css_arr_new);
$final_val_db = maybe_serialize($form_css_arr_new_db);
$general_option[$key] = $final_val;
$general_option[$key . '_db'] = $final_val_db;
} else {
$general_option[$key] = trim($val);
}
}
//code end here.
$general_option['is_importform'] = 'Yes';
//code start here for store all general options in database.
$autoresponder_fname = $general_option['autoresponder_fname'];
$autoresponder_lname = $general_option['autoresponder_lname'];
$autoresponder_email = $general_option['autoresponder_email'];
$general_option['form_key'] = '';
unset($general_option['id']);
$form_id = $arfform->create($general_option);
//code end here
//code start here for get css option and generate new css.
$cssoptions = $general_option['form_css'];
$cssoptions_db = $general_option['form_css_db'];
//code start here for get fields of form and store in database.
$type_array = array();
$content_array = array();
$value_array = array();
$new_id_array = array();
$repeater_fields = array();
$section_fields = array();
$divider_fields = array();
$allfieldstype = array();
$allfieldsarr = array();
$is_prefix_suffix_enable = 0;
$arf_page_break_wizard_theme_style = '';
$is_checkbox_img_enable = 0;
$is_radio_img_enable = 0;
$i=0;
$arf_skipped_addon_fields = array();
foreach ($val_main->fields->children() as $key_fields => $val_fields) {
$fields_option = array();
foreach ($val_fields as $key_field => $val_field) {
if ($key_field == 'form_id') {
$fields_option[$key_field] = $form_id;
} else if ($key_field == 'options' && ( $val_fields->type == 'radio' || $val_fields->type == 'checkbox' ) ) {
if( !is_array($val_field) ){
$temp_radio_val = stripslashes( trim($val_field) );
$temp_radio_val = rtrim($temp_radio_val,'"');
$temp_radio_val = ltrim($temp_radio_val,'"');
$val_field_radio = json_decode(trim($temp_radio_val),true);
if( json_last_error() != JSON_ERROR_NONE ){
$val_field_radio = maybe_unserialize(trim($val_field));
}
}
if (is_array($val_field_radio)) {
foreach ($val_field_radio as $key => $value) {
$image_path = '';
if (is_array($value)) {
if (isset($value['label_image']) && $value['label_image'] !='') {
$is_checkbox_img_enable = true;
$is_radio_img_enable = true;
$image_path = $value['label_image'];
$arfilecontroller = new arfilecontroller( $image_path, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $key . '_' . basename($image_path);
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$val_field_radio[$key]['label_image'] = '';
} else {
$val_field_radio[$key]['label_image'] = $imageupload_url . $key . '_' . basename( $image_path );
}
}
}
}
}
$fields_option[$key_field] = json_encode($val_field_radio);
} elseif( $val_fields->type == 'break' && $key_field == 'field_options'){
$arf_pagebreak_options = arf_json_decode(trim($val_field),true);
$arf_pagebreak_type_options = isset($arf_pagebreak_options['page_break_wizard_theme']) ? $arf_pagebreak_options['page_break_wizard_theme'] : '';
if ( $arf_pagebreak_type_options != '' ) {
$arf_page_break_wizard_theme_style = $arf_pagebreak_options['page_break_wizard_theme'];
}
$fields_option[$key_field] = trim(json_encode($arf_pagebreak_options));
} elseif ($val_fields->type == 'imagecontrol' && $key_field == 'field_options') {
$arf_image_control_option = arf_json_decode(trim($val_field),true);
$arf_image_control_image = isset($arf_image_control_option['image_url']) ? $arf_image_control_option['image_url'] : '';
if ($arf_image_control_image != '') {
$arf_image_control_image_filenm = basename($arf_image_control_image);
$arf_image_control_image_filenm_fnm = time() . '_' . $arf_image_control_image_filenm;
$arfilecontroller = new arfilecontroller( $arf_image_control_image, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $arf_image_control_image_filenm_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$arf_image_control_image_filenm_fnm = '';
}
}
$arf_image_control_image_filenm_fnm = isset($arf_image_control_image_filenm_fnm) ? $arf_image_control_image_filenm_fnm : '';
if ($arf_image_control_image_filenm_fnm == '') {
$arf_image_control_option['image_url'] = '';
} else {
$arf_image_control_option['image_url'] = $imageupload_url . $arf_image_control_image_filenm_fnm;
}
$fields_option[$key_field] = trim(json_encode($arf_image_control_option));
} elseif ($val_fields->type == 'arf_switch' && $key_field == 'field_options') {
$arf_switch_control_option = arf_json_decode(trim($val_field),true);
$fields_option[$key_field] = trim(json_encode($arf_switch_control_option));
} elseif ($val_fields->type == 'arf_smiley' && $key_field == 'field_options') {
$arf_smiley_control_option = arf_json_decode(trim($val_field),true);
if (isset($arf_smiley_control_option['arf_smiley_images_array']) && is_array($arf_smiley_control_option['arf_smiley_images_array'])) {
foreach ($arf_smiley_control_option['arf_smiley_images_array'] as $key => $value) {
if (stripos($value, 'http') == 0 && !preg_match('/\s/', $value)) {
$arf_smile_control_image_filenm = basename($value);
$arfilecontroller = new arfilecontroller( $exported_site_uploads_dir.$value, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$arf_smile_control_image_filenm_fnm = time() . '_' . $arf_smile_control_image_filenm;
$destination = $imageupload_dir . $arf_smile_control_image_filenm_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$arf_smile_control_image_filenm_fnm = '';
}
$arf_smiley_control_option['arf_smiley_images_array'][$key] = $arf_smile_control_image_filenm_fnm;
} else {
$arf_smile_control_image_filenm = basename($value);
$arf_smile_control_image_filenm_fnm = time() . '_' . $arf_smile_control_image_filenm;
$arf_smiley_control_option['arf_smiley_images_array'][$key] = $value;
}
}
}
$fields_option[$key_field] = trim(json_encode($arf_smiley_control_option));
} else {
if( $key_field == 'field_options' ){
$fields_option[$key_field] = trim(json_encode(arf_json_decode( trim($val_field), true )));
$fields_option[$key_field] = str_replace('[ENTERKEY]', '<br>', $fields_option[$key_field]);
} else if( 'options' == $key_field ){
$temp_val = stripslashes( trim($val_field) );
$temp_val = rtrim($temp_val,'"');
$temp_val = ltrim($temp_val,'"');
$fields_option[$key_field] = $temp_val;
} else {
$fields_option[$key_field] = trim($val_field);
}
}
$all_field_data='';
$field_name='';
if(isset($fields_option['field_options'])){
$all_field_data = arf_json_decode($fields_option['field_options']);
if(isset($all_field_data->name)){
$field_name=str_replace('[ENTERKEY]', ' ', $all_field_data->name);
$all_field_data->name=$field_name;
}
$fields_option['field_options'] = trim(json_encode($all_field_data));
}
if( $key_field == 'field_options' ){
$arf_field_options = arf_json_decode( trim( $fields_option[$key_field] ), true );
if( isset($arf_field_options['arf_prefix_icon']) && $arf_field_options['arf_prefix_icon'] != '' ){
$arf_field_options['arf_prefix_icon'] = $armainhelper->arf_update_fa_font_class( $arf_field_options['arf_prefix_icon'] );
$is_prefix_suffix_enable = true;
}
if( isset($arf_field_options['arf_suffix_icon']) && $arf_field_options['arf_suffix_icon'] != '' ){
$arf_field_options['arf_suffix_icon'] = $armainhelper->arf_update_fa_font_class( $arf_field_options['arf_suffix_icon'] );
$is_prefix_suffix_enable = true;
}
$fields_option[$key_field] = trim(json_encode($arf_field_options));
}
}
$res_field_id = $fields_option['id'];
$type_array[$res_field_id] = $fields_option['type'];
$new_field_id = $arffield->create($fields_option, true, true, $res_field_id);
if( !in_array($val_fields->type,$outside_fields)){
$skipped_field_options = arf_json_decode( $fields_option['field_options'], true );
$arf_skipped_addon_fields[$new_field_id] = $skipped_field_options['inner_class'];
}
$new_id_array[$i]['old_id'] = $res_field_id;
$new_id_array[$i]['new_id'] = $new_field_id;
$new_id_array[$i]['name'] = $fields_option['name'];
$new_id_array[$i]['type'] = $fields_option['type'];
if ($fields_option['type'] == 'html' || $fields_option['type'] == 'select' ) {
$value_array = json_decode($fields_option['field_options'], true);
$content_array[$new_field_id]['html_content'] = str_replace('[ENTERKEY]',"\n",$value_array['description']);
}
if ($fields_option['type'] != 'hidden') {
if( isset( $old_field_orders[$res_field_id] ) ){
$new_field_order[$new_field_id] = $old_field_orders[$res_field_id];
$old_field_order_type[$res_field_id] = $fields_option['type'];
$new_field_order_type[$new_field_id] = $fields_option['type'];
}
if( isset( $old_inner_field_orders[$res_field_id] ) ){
$new_inner_field_order[$new_field_id] = $old_inner_field_orders[$res_field_id];
}
if( 'arf_repeater' == $fields_option['type'] || 'section' == $fields_option['type'] ){
$repeater_fields[$res_field_id] = $new_field_id;
}
if( 'divider' == $fields_option['type'] ){
$section_fields[] = $i;
$divider_fields[$res_field_id] = $new_field_id;
}
}
$ar_email_subject = isset($ar_email_subject) ? $ar_email_subject : '';
if ($ar_email_subject == '')
$ar_email_subject = $_SESSION['ar_email_subject_org'];
else
$ar_email_subject = $ar_email_subject;
$ar_email_subject = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_email_subject);
$ar_email_subject = $arformhelper->replace_field_shortcode_import($ar_email_subject, $res_field_id, $new_field_id);
$ar_email_message = isset($ar_email_message) ? $ar_email_message : '';
if ($ar_email_message == '')
$ar_email_message = isset($_SESSION['ar_email_message_org']) ? $_SESSION['ar_email_message_org'] : '';
else
$ar_email_message = $ar_email_message;
$ar_email_message = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_email_message);
$ar_email_message = $arformhelper->replace_field_shortcode_import($ar_email_message, $res_field_id, $new_field_id);
$arf_pre_dup_field = isset($arf_pre_dup_field) ? $arf_pre_dup_field : '';
if ($arf_pre_dup_field == '')
$arf_pre_dup_field = isset($_SESSION['arf_pre_dup_field']) ? $_SESSION['ar_email_message_org'] : '';
else
$arf_pre_dup_field = $arf_pre_dup_field;
$arf_pre_dup_field = str_replace($res_field_id, $new_field_id, $arf_pre_dup_field);
$ar_admin_email_message = isset($ar_admin_email_message) ? $ar_admin_email_message : '';
if ($ar_admin_email_message == '')
$ar_admin_email_message = isset($_SESSION['ar_admin_email_message_org']) ? $_SESSION['ar_admin_email_message_org'] : '';
else
$ar_admin_email_message = $ar_admin_email_message;
$ar_admin_email_message = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_admin_email_message);
$ar_admin_email_message = $arformhelper->replace_field_shortcode_import($ar_admin_email_message, $res_field_id, $new_field_id);
$ar_admin_from_name = isset($ar_admin_from_name) ? $ar_admin_from_name : '';
if ($ar_admin_from_name == '')
$ar_admin_from_name = isset($_SESSION['arf_admin_from_name']) ? $_SESSION['arf_admin_from_name'] : '';
else
$ar_admin_from_name = $ar_admin_from_name;
$ar_admin_from_name = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_admin_from_name);
$ar_admin_from_name = $arformhelper->replace_field_shortcode_import($ar_admin_from_name, $res_field_id, $new_field_id);
$admin_email_subject = isset($admin_email_subject) ? $admin_email_subject : '';
if ($admin_email_subject == '')
$admin_email_subject = isset($_SESSION['admin_email_subject']) ? $_SESSION['admin_email_subject'] : '';
else
$admin_email_subject = $admin_email_subject;
$admin_email_subject = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $admin_email_subject);
$admin_email_subject = $arformhelper->replace_field_shortcode_import($admin_email_subject, $res_field_id, $new_field_id);
$reply_to = isset($reply_to) ? $reply_to : '';
if ($reply_to == '')
$reply_to = isset($_SESSION['reply_to']) ? $_SESSION['reply_to'] : '';
else
$reply_to = $reply_to;
$reply_to = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $reply_to);
$reply_to = $arformhelper->replace_field_shortcode_import($reply_to, $res_field_id, $new_field_id);
$ar_email_to = isset($ar_email_to) ? $ar_email_to : '';
if ($ar_email_to == '')
$ar_email_to = isset($_SESSION['ar_email_to_org']) ? $_SESSION['ar_email_to_org'] : '';
else
$ar_email_to = $ar_email_to;
$ar_admin_from_email = isset($ar_admin_from_email) ? $ar_admin_from_email : '';
if ($ar_admin_from_email == '')
$ar_admin_from_email = isset($_SESSION['ar_admin_from_email']) ? $_SESSION['ar_admin_from_email'] : '';
else
$ar_admin_from_email = $ar_admin_from_email;
$ar_admin_from_email = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_admin_from_email);
$ar_admin_from_email = $arformhelper->replace_field_shortcode_import($ar_admin_from_email, $res_field_id, $new_field_id);
$ar_user_from_email = isset($ar_user_from_email) ? $ar_user_from_email : '';
if ($ar_user_from_email == '')
$ar_user_from_email = isset($_SESSION['ar_user_from_email']) ? $_SESSION['ar_user_from_email'] : '';
else
$ar_user_from_email = $ar_user_from_email;
$ar_user_from_email = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_user_from_email);
$ar_user_from_email = $arformhelper->replace_field_shortcode_import($ar_user_from_email, $res_field_id, $new_field_id);
unset($field_values);
$i++;
}
$running_total_fields = array();
if (in_array('html', $type_array)) {
if (!empty($content_array) && !empty($new_id_array)) {
foreach ($content_array as $key_type => $value_type) {
$arf_html_content_new = $value_type['html_content'];
foreach ($new_id_array as $key_new => $value_new) {
$arf_html_content = ':' . $value_new["old_id"] . ']';
$replace_with_arf_html_content = ':' . $value_new["new_id"] . ']';
if( $value_new['type'] == 'checkbox' || $value_new['type'] == 'arf_multiselect' || $value_new['type'] == 'matrix' ){
$pattern_ch = "/\:(".$value_new['old_id'].")(\.\d+)/";
$pattern = "/\:(\d+)/";
preg_match_all($pattern,$replace_with_arf_html_content,$Matches);
preg_match_all($pattern,$arf_html_content,$Matches1);
if( isset($Matches[1]) && count($Matches[1]) > 0){
foreach($Matches[1] as $kk => $Match){
$arf_html_content_new = preg_replace($pattern_ch,':'.$Match.'$2',$arf_html_content_new);
$running_total_fields[$Match][] = $key_type;
}
}
} else {
$arf_html_content_new = str_replace($arf_html_content, $replace_with_arf_html_content, $arf_html_content_new);
$pattern = "/\:\d+/";
preg_match_all($pattern,$arf_html_content_new,$matches);
if( isset($matches[0]) && $matches[0] != '' ){
foreach( $matches[0] as $k => $val ){
$running_total_fields[preg_replace('/[^0-9]/','',$val)][] = $key_type;
}
}
}
}
$fleld_data = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $key_type));
$fleld_data_options = json_decode($fleld_data[0]->field_options, 1);
$fleld_data_options['description'] = $arf_html_content_new;
$field_data_opts = addslashes( json_encode( $fleld_data_options ) );
$wpdb->query("UPDATE " . $MdlDb->fields . " SET field_options ='" . $field_data_opts . "' WHERE id=" . $key_type);
}
}
}
if (in_array('select', $type_array)) {
foreach ($content_array as $key_type => $value_type) {
$fleld_data = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $key_type));
$fleld_data_options = json_decode($fleld_data[0]->field_options, 1);
foreach ( $new_id_array as $key=>$val ) {
if ( isset( $fleld_data_options['parent_field_id'] ) ) {
if ( $fleld_data_options['parent_field_id'] == $val['old_id']) {
$fleld_data_options['parent_field_id'] = $val['new_id'];
}
}
}
$field_data_opts = addslashes( json_encode( $fleld_data_options ) );
$wpdb->query("UPDATE " . $MdlDb->fields . " SET field_options ='" . $field_data_opts . "' WHERE id=" . $key_type);
}
}
$result_diff = array_diff($old_field_orders, $new_field_order);
foreach ($result_diff as $key => $value) {
$new_field_order[$key] = $value;
}
foreach( $new_id_array as $k => $val ){
$old_id = $val['old_id'];
$new_id = $val['new_id'];
$arr1 = isset( $old_inner_field_orders[$old_id] ) ? $old_inner_field_orders[$old_id] : array();
$arr2 = isset( $new_inner_field_order[$new_id] ) ? $new_inner_field_order[$new_id] : array();
if( isset( $arr1 ) && isset( $arr2 ) && !empty( $arr1 ) && !empty( $arr2 ) ){
$uparr2 = array();
foreach( $arr2 as $iik => $iiv ){
$exploded_data = explode('|', $iiv );
$fid = $exploded_data[0];
$ford = $exploded_data[1];
if( preg_match('/^(\d)+$/', $fid ) ){
$fk = $arformcontroller->arfSearchArray($fid,'old_id',$new_id_array);
if( '' !== $fk ){
$uparr2[$iik] = $new_id_array[$fk]['new_id'].'|'.$ford;
}
} else {
if( preg_match('/(_confirm)/', $fid ) ){
$fnid = str_replace('_confirm', '', $fid );
$fk = $arformcontroller->arfSearchArray( $fnid, 'old_id', $new_id_array );
$uparr2[$iik] = $new_id_array[$fk]['new_id'].'_confirm|'.$ford;
} else {
$uparr2[$iik] = $fid.'|'.$ford;
}
}
}
$inner_diff = array_diff( $arr1, $arr2 );
if( count( $inner_diff) > 0 ){
foreach( $inner_diff as $ik => $iv ){
$new_inner_field_order[$new_id][$ik] = $iv;
}
} else {
$new_inner_field_order[$new_id] = $uparr2;
}
}
}
$updated_inner_field_resize_width = array();
foreach( $new_field_resize_width as $parent_id => $parent_arr ){
$fkey = $arformcontroller->arfSearchArray( $parent_id, 'old_id', $new_id_array );
if( '' != $fkey ){
$parent_id = $new_id_array[$fkey]['new_id'];
}
if( !isset( $updated_inner_field_resize_width[$parent_id] ) ){
$updated_inner_field_resize_width[$parent_id] = array();
}
foreach( $parent_arr as $k => $v ){
$exploded_data = explode('|', $v);
$fid = $exploded_data[0];
$fwidth = $exploded_data[1];
$ford = $exploded_data[2];
if( preg_match('/^(\d)+$/', $fid) ){
$fikey = $arformcontroller->arfSearchArray( $fid, 'old_id', $new_id_array );
if( '' != $fikey ){
$fid = $new_id_array[$fikey]['new_id'];
}
$updated_inner_field_resize_width[$parent_id][] = $fid.'|'.$fwidth.'|'.$ford;
} else {
if( preg_match('/(_confirm)/', $fid ) ){
$fnid = str_replace('_confirm', '', $fid);
$fikey = $arformcontroller->arfSearchArray( $fnid, 'old_id', $new_id_array );
if( '' != $fikey ){
$updated_inner_field_resize_width[$parent_id][] = $new_id_array[$fikey]['new_id'].'_confirm|'.$fwidth.'|'.$ford;;
}
}
}
}
}
$result_type_diff = array_diff( $old_field_order_type, $new_field_order_type );
foreach( $result_type_diff as $key => $value ){
$new_field_order_type[$key] = $value;
}
$final_field_order = array();
$final_inner_field_order = array();
$new_temp_field = array();
foreach ($new_field_order as $key => $value) {
if(strpos($key, '_confirm') !== false) {
$field_ext_extract = explode('_', $key);
$old_value = $old_field_orders[$field_ext_extract[0]];
$new_id = array_search($old_value, $new_field_order);
$final_field_order[$new_id.'_confirm'] = $value;
$fleld_data_confirm = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $new_id));
$fleld_data_confirm_options = json_decode($fleld_data_confirm[0]->field_options, 1);
if($fleld_data_confirm_options['type'] == 'email'){
$new_temp_field['confirm_email_'.$new_id] = array();
$new_temp_field['confirm_email_'.$new_id]['key'] = $fleld_data_confirm_options['key'];
$new_temp_field['confirm_email_'.$new_id]['order'] = $value;
$new_temp_field['confirm_email_'.$new_id]['parent_field_id'] = $new_id;
$new_temp_field['confirm_email_'.$new_id]['confirm_inner_class'] = $fleld_data_confirm_options['confirm_email_inner_classes'];;
}
if($fleld_data_confirm_options['type'] == 'password'){
$new_temp_field['confirm_password_'.$new_id] = array();
$new_temp_field['confirm_password_'.$new_id]['key'] = $fleld_data_confirm_options['key'];
$new_temp_field['confirm_password_'.$new_id]['order'] = $value;
$new_temp_field['confirm_password_'.$new_id]['parent_field_id'] = $new_id;
$new_temp_field['confirm_password_'.$new_id]['confirm_inner_class'] = $fleld_data_confirm_options['confirm_password_inner_classes'];
}
}
else{
if( !empty( $arf_skipped_addon_fields[$key] ) ){
$final_field_order[$arf_skipped_addon_fields[$key].'|'.$value] = $value;
} else {
$final_field_order[$key] = $value;
}
}
}
foreach( $new_inner_field_order as $parent_field_id => $inner_fields ){
foreach( $inner_fields as $val ){
$exploded_data = explode('|',$val);
$key = $exploded_data[0];
$value = $exploded_data[1];
if( strpos($key,'_confirm') !== false ){
$field_ext_extract = explode('_', $key);
$new_id = $field_ext_extract[0];
$final_inner_field_order[$parent_field_id][] = $key.'|'.$value;
$fleld_data_confirm = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $new_id));
$fleld_data_confirm_options = json_decode($fleld_data_confirm[0]->field_options, 1);
if($fleld_data_confirm_options['type'] == 'email'){
$new_temp_field['confirm_email_'.$new_id] = array();
$new_temp_field['confirm_email_'.$new_id]['key'] = $fleld_data_confirm_options['key'];
$new_temp_field['confirm_email_'.$new_id]['order'] = $value;
$new_temp_field['confirm_email_'.$new_id]['parent_field_id'] = $new_id;
$new_temp_field['confirm_email_'.$new_id]['confirm_inner_class'] = $fleld_data_confirm_options['confirm_email_inner_classes'];;
}
if($fleld_data_confirm_options['type'] == 'password'){
$new_temp_field['confirm_password_'.$new_id] = array();
$new_temp_field['confirm_password_'.$new_id]['key'] = $fleld_data_confirm_options['key'];
$new_temp_field['confirm_password_'.$new_id]['order'] = $value;
$new_temp_field['confirm_password_'.$new_id]['parent_field_id'] = $new_id;
$new_temp_field['confirm_password_'.$new_id]['confirm_inner_class'] = $fleld_data_confirm_options['confirm_password_inner_classes'];
}
} else {
if( !empty( $arf_skipped_addon_fields[$key] ) ){
$final_inner_field_order[$parent_field_id][] = $arf_skipped_addon_fields[$key] .'|' . $value;
} else {
$final_inner_field_order[$parent_field_id][] = $key.'|'.$value;
}
}
}
}
$running_total_fields = array_map('array_unique', array_map('array_values',$running_total_fields));
if( isset($running_total_fields) && count($running_total_fields) > 0 ){
foreach($running_total_fields as $k => $rtfield_id){
foreach($rtfield_id as $i => $rtfield ){
$is_rt_enable = $wpdb->get_results($wpdb->prepare("SELECT enable_running_total FROM `".$MdlDb->fields."` WHERE id = %d",$k));
if( isset($is_rt_enable) && count($is_rt_enable) > 0 ){
foreach($is_rt_enable as $i => $rtenable){
if( isset($rtenable->enable_running_total) && $rtenable->enable_running_total != '' && $rtenable->enable_running_total > 0 ){
if( strpos($rtfield,$rtenable->enable_running_total) == false )
$new_total_field = $rtfield.','.$rtenable->enable_running_total;
$wpdb->update($MdlDb->fields,array('enable_running_total' => arf_sanitize_value($new_total_field)),array('id'=> $k));
} else {
$wpdb->update($MdlDb->fields,array('enable_running_total' => arf_sanitize_value($rtfield)),array('id'=> $k));
}
}
}
}
}
}
$getForm = $wpdb->get_results($wpdb->prepare("SELECT options FROM `".$MdlDb->forms."` WHERE id = %d",$form_id));
$formOpt = maybe_unserialize($getForm[0]->options);
if( !empty( $formOpt['html_running_total_field_array'] ) ){
$running_total_fields_arr = $formOpt['html_running_total_field_array'];
foreach( $running_total_fields_arr as $rtotal_ofkey => $rtotal_field_id ){
$rtotal_fkey = $arformcontroller->arfSearchArray( $rtotal_field_id, 'old_id', $new_id_array );
$rtotal_nkey = $new_id_array[ $rtotal_fkey ][ 'new_id' ];
$running_total_fields_arr[ $rtotal_ofkey ] = $rtotal_nkey;
}
$formOpt['html_running_total_field_array'] = $running_total_fields_arr;
}
$newOpt = maybe_unserialize($general_option['options']);
$newOpt['html_running_total_field_array'] = $formOpt['html_running_total_field_array'];
$newOpt['arf_field_order'] = json_encode($final_field_order);
$newOpt['arf_inner_field_order'] = json_encode( $final_inner_field_order );
$newOpt['arf_inner_field_resize_width'] = json_encode( $updated_inner_field_resize_width );
$general_option['options'] = maybe_serialize($newOpt);
$new_values = array();
foreach (maybe_unserialize($cssoptions) as $k => $v) {
if (( preg_match('/color/', $k) or in_array($k, array('arferrorbgsetting', 'arferrorbordersetting', 'arferrortextsetting')) ) && !in_array($k, array('arfcheckradiocolor'))) {
$new_values[$k] = str_replace('#', '', $v);
} else {
$new_values[$k] = $v;
}
}
$new_values1 = maybe_serialize($new_values);
if (!empty($new_values)) {
$query_results = wp_cache_get('arf_import_css_'.$form_id);
if( false == $query_results ){
$query_results = $wpdb->query($wpdb->prepare("update " . $MdlDb->forms . " set form_css = '%s' where id = '%d'", $cssoptions_db, $form_id));
wp_cache_set('arf_import_css_'.$form_id, $query_results, '', 60);
}
$use_saved = $saving = true;
$arfssl = (is_ssl()) ? 1 : 0;
$loaded_field = $type_array;
$form = $arfform->getOne( $form_id );
$form->form_css = maybe_unserialize( $form->form_css );
$common_file_name = FORMPATH . '/core/css_create_common.php';
$rtl_file_name = FORMPATH . '/core/css_create_rtl.php';
if( 'standard' == $arfinputstyle || 'rounded' == $arfinputstyle ){
$filename = FORMPATH . '/core/css_create_main.php';
$wp_upload_dir = wp_upload_dir();
$target_path = $wp_upload_dir['basedir'] . '/arforms/maincss';
$css = $warn = "/* WARNING: Any changes made to this file will be lost when your ARForms settings are updated */";
$css .= "\n";
if (ob_get_length())
ob_end_flush();
ob_start();
include $filename;
include $common_file_name;
if( is_rtl() ){
include $rtl_file_name;
}
$css .= ob_get_contents();
ob_end_clean();
$css .= "\n " . $warn;
$css_file = $target_path . '/maincss_' . $form_id . '.css';
$css = str_replace('##','#',$css);
if (!file_exists($css_file)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file, $css, 0777);
} else if (is_writable($css_file)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file, $css, 0777);
} else {
$error = 'File Not writable';
}
} else if( 'material' == $arfinputstyle ){
$filename1 = FORMPATH . '/core/css_create_materialize.php';
$wp_upload_dir = wp_upload_dir();
$target_path1 = $wp_upload_dir['basedir'] . '/arforms/maincss';
$css1 = $warn1 = "/* WARNING: Any changes made to this file will be lost when your ARForms settings are updated */";
$css1 .= "\n";
if (ob_get_length())
ob_end_flush();
ob_start();
include $filename1;
include $common_file_name;
if( is_rtl() ){
include $rtl_file_name;
}
$css1 .= ob_get_contents();
ob_end_clean();
$css1 .= "\n " . $warn1;
$css_file1 = $target_path1 . '/maincss_materialize_' . $form_id . '.css';
$css1 = str_replace('##','#',$css1);
if (!file_exists($css_file1)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file1, $css1, 0777);
} else if (is_writable($css_file1)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file1, $css1, 0777);
} else {
$error = 'File Not writable';
}
} else if( 'material_outlined' == $arfinputstyle ){
$filename2 = FORMPATH . '/core/css_create_materialize_outline.php';
$target_path2 = $wp_upload_dir['basedir'] . '/arforms/maincss';
$css2 = $warn2 = "/* WARNING: Any changes made to this file will be lost when your ARForms settings are updated */";
$css2 .= "\n";
if (ob_get_length())
ob_end_flush();
ob_start();
include $filename2;
include $common_file_name;
if( is_rtl() ){
include $rtl_file_name;
}
$css2 .= ob_get_contents();
ob_end_clean();
$css2 .= "\n " . $warn2;
$css_file2 = $target_path2 . '/maincss_materialize_outlined_' . $form_id . '.css';
$css2 = str_replace('##','#',$css2);
if (!file_exists($css_file2)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file2, $css2, 0777);
} else if (is_writable($css_file2)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file2, $css2, 0777);
} else {
$error = 'File Not writable';
}
}
} else {
$query_results = true;
}
//code end here.
//code start here for update autoresponder maping variables and update in satabase..
ob_start();
$autoresponder_fname_ses = isset($_SESSION['arf_fields'][$autoresponder_fname]) ? $_SESSION['arf_fields'][$autoresponder_fname] : '';
$autoresponder_lname_ses = isset($_SESSION['arf_fields'][$autoresponder_lname]) ? $_SESSION['arf_fields'][$autoresponder_lname] : '';
$autoresponder_email_ses = isset($_SESSION['arf_fields'][$autoresponder_email]) ? $_SESSION['arf_fields'][$autoresponder_email] : '';
$autoresponder_fname = (isset($autoresponder_fname) and $autoresponder_fname_ses != '' ) ? $autoresponder_fname_ses : '';
$autoresponder_lname = (isset($autoresponder_lname) and $autoresponder_lname_ses != '') ? $autoresponder_lname_ses : '';
$autoresponder_email = (isset($autoresponder_email) and $autoresponder_email_ses != '') ? $autoresponder_email_ses : '';
$wpdb->update($MdlDb->forms, array('autoresponder_fname' => arf_sanitize_value($autoresponder_fname), 'autoresponder_lname' => arf_sanitize_value($autoresponder_lname), 'autoresponder_email' => arf_sanitize_value($autoresponder_email,'email')), array('id' => $form_id));
$wpdb->update($MdlDb->forms, array('options' => $general_option['options'],'temp_fields'=>maybe_serialize($new_temp_field)), array('id' => $form_id));
$sel_rec = $wpdb->prepare("select options from " . $MdlDb->forms . " where id = %d", $form_id);
$res_rec = $wpdb->get_results($sel_rec, 'ARRAY_A');
$opt = $res_rec[0]['options'];
$arf_formfield_other_css = $option_arr_new['arf_form_other_css'];
foreach ($new_id_array as $id_info_arr) {
$arf_formfield_other_css = stripslashes(str_replace($id_info_arr['old_id'], $id_info_arr['new_id'], $arf_formfield_other_css ));
}
$arf_form_other_css = stripslashes( str_replace( $old_form_id, $form_id, $arf_formfield_other_css) );
$form_custom_css = stripslashes(str_replace($old_form_id, $form_id, $val_main->form_custom_css));
$form_custom_css = str_replace('[REPLACE_SITE_URL]', site_url(), $form_custom_css);
$form_custom_css = str_replace('[ENTERKEY]', '<br>', $form_custom_css);
$option_arr_new = maybe_unserialize($opt);
$option_arr_new['form_custom_css'] = $form_custom_css;
$option_arr_new['arf_form_other_css'] = $arf_form_other_css;
$option_arr_new['ar_email_subject'] = isset($ar_email_subject) ? $ar_email_subject : '';
$option_arr_new['ar_email_message'] = isset($ar_email_message) ? $ar_email_message : '';
$option_arr_new['ar_admin_email_message'] = isset($ar_admin_email_message) ? $ar_admin_email_message : '';
$option_arr_new['ar_email_to'] = isset($ar_email_to) ? $ar_email_to : '';
$option_arr_new['ar_admin_from_email'] = isset($ar_admin_from_email) ? $ar_admin_from_email : '';
$option_arr_new['ar_user_from_email'] = isset($ar_user_from_email) ? $ar_user_from_email : '';
$option_arr_new['ar_admin_from_name'] = isset($ar_admin_from_name) ? $ar_admin_from_name : '';
$option_arr_new['admin_email_subject'] = isset($admin_email_subject) ? $admin_email_subject : '';
$option_arr_new['arf_pre_dup_field'] = isset($arf_pre_dup_field) ? $arf_pre_dup_field : '';
$option_arr_new['reply_to'] = !empty( $reply_to ) ? $reply_to : '';
if( isset( $option_arr_new['user_email_attachment_name'] ) ){
unset($option_arr_new['user_email_attachment_name']);
}
if( isset( $option_arr_new['user_email_attachment_name_with_timestamp'] ) ){
unset($option_arr_new['user_email_attachment_name_with_timestamp']);
}
if ($val_main->site_url != site_url()) {
$option_arr_new['success_action'] = isset($option_arr_new['success_action']) ? $option_arr_new['success_action'] : '';
if ($option_arr_new['success_action'] == 'page')
$option_arr_new['success_action'] = 'message';
}
$submit_coditional_logic_rules = array();
$conditional_logic_new_fields = array();
$conditional_logic_res_fields = array();
if ( !empty( $_SESSION['arf_fields'] ) && is_array($_SESSION['arf_fields']) && count($_SESSION['arf_fields']) > 0 ) {
if (!empty($option_arr_new['submit_conditional_logic']) && $option_arr_new['submit_conditional_logic']['enable'] == '1' && count($option_arr_new['submit_conditional_logic']['rules']) > 0) {
foreach ($_SESSION['arf_fields'] as $original_id => $field_new_id) {
foreach ($option_arr_new['submit_conditional_logic']['rules'] as $new_rule) {
if ($new_rule['field_id'] == $original_id) {
$sub_cl_field_id = $field_new_id;
$sub_cl_field_type = $new_rule['field_type'];
$field_type_db = wp_cache_get('arf_import_form_field_'.$sub_cl_field_id);
if( false === $field_type_db ){
$field_type_db = $wpdb->get_row($wpdb->prepare("SELECT type FROM `".$MdlDb->fields."` WHERE id = %d",$sub_cl_field_id) );
wp_cache_set('arf_import_form_field_'.$sub_cl_field_id, $field_type_db, '', 60);
}
if( isset($field_type_db) && isset($field_type_db->type) && $sub_cl_field_type != $field_type_db ){
$new_rule['field_type'] = $field_type_db->type;
}
$submit_coditional_logic_rules[$new_rule['id']] = array(
'id' => $new_rule['id'],
'field_id' => $field_new_id,
'field_type' => $new_rule['field_type'],
'operator' => $new_rule['operator'],
'value' => $new_rule['value'],
);
array_push($conditional_logic_new_fields,$new_rule['field_id']);
}
}
}
}
}
if (isset($submit_coditional_logic_rules) && !empty($submit_coditional_logic_rules)) {
$option_arr_new['submit_conditional_logic']['rules'] = $submit_coditional_logic_rules;
}
/* added for conditional mail rules */
$arf_conditional_mail_rules = array();
if (isset( $_SESSION['arf_conditional_mail_rules'] ) && is_array($_SESSION['arf_conditional_mail_rules']) && count($_SESSION['arf_conditional_mail_rules']) > 0 ) {
if (!empty($option_arr_new['arf_conditional_mail_rules'])) {
foreach ($option_arr_new['arf_conditional_mail_rules'] as $new_rule) {
$_SESSION['arf_fields'][$new_rule['field_id_mail']] = isset($_SESSION['arf_fields'][$new_rule['field_id_mail']]) ? $_SESSION['arf_fields'][$new_rule['field_id_mail']] : '';
$_SESSION['arf_fields'][$new_rule['send_mail_field']] = isset($_SESSION['arf_fields'][$new_rule['send_mail_field']]) ? $_SESSION['arf_fields'][$new_rule['send_mail_field']] : '';
$cl_email_field_id = $_SESSION['arf_fields'][$new_rule['field_id_mail']];
$cl_email_field_type = $new_rule['field_type_mail'];
$email_field_type = wp_cache_get('arf_import_form_field_'.$cl_email_field_id);
if( false === $email_field_type ){
$email_field_type = $wpdb->get_row($wpdb->prepare("SELECT type FROM `".$MdlDb->fields."` WHERE id = %d",$cl_email_field_id));
wp_cache_set('arf_import_form_field_'.$cl_email_field_id, $email_field_type, '', 60);
}
if( isset($email_field_type) && isset($email_field_type->type) && $email_field_type->type != $cl_email_field_type ){
$new_rule['field_type_mail'] = $email_field_type->type;
}
$arf_conditional_mail_rules[$new_rule['id_mail']] = array(
'id_mail' => $new_rule['id_mail'],
'field_id_mail' => $_SESSION['arf_fields'][$new_rule['field_id_mail']],
'field_type_mail' => $new_rule['field_type_mail'],
'operator_mail' => $new_rule['operator_mail'],
'value_mail' => $new_rule['value_mail'],
'send_mail_field' => $_SESSION['arf_fields'][$new_rule['send_mail_field']]
);
}
}
}
if (isset($arf_conditional_mail_rules) && !empty($arf_conditional_mail_rules)) {
$option_arr_new['arf_conditional_mail_rules'] = $arf_conditional_mail_rules;
}
/* for conditional logic new */
$conditional_logic = isset($option_arr_new['arf_conditional_logic_rules']) ? $option_arr_new['arf_conditional_logic_rules'] : array();
if (is_array($conditional_logic) && !empty($conditional_logic)) {
foreach ($conditional_logic as $i => $value_rules) {
if (isset($value_rules['condition']) && is_array($value_rules['condition'])) {
foreach ($value_rules['condition'] as $j => $condition_rules) {
$arf_cl_rule_field_id = isset( $_SESSION['arf_fields'][$condition_rules['field_id']] ) ? $_SESSION['arf_fields'][$condition_rules['field_id']] : '';
$arf_cl_rule_field_type = $condition_rules['field_type'];
$cl_rule_type = wp_cache_get('arf_import_form_field_'.$arf_cl_rule_field_id);
if( false === $cl_rule_type ){
$cl_rule_type = $wpdb->get_row($wpdb->prepare("SELECT type FROM `".$MdlDb->fields."` WHERE id = %d",$arf_cl_rule_field_id));
wp_cache_set('arf_import_form_field_'.$arf_cl_rule_field_id, $cl_rule_type, '', 60);
}
if( isset($cl_rule_type) && isset($cl_rule_type->type) && $cl_rule_type->type != $arf_cl_rule_field_type ){
$conditional_logic[$i]['condition'][$j]['field_type'] = $cl_rule_type->type;
}
$conditional_logic[$i]['condition'][$j]['field_id'] = isset( $_SESSION['arf_fields'][$condition_rules['field_id']] ) ? $_SESSION['arf_fields'][$condition_rules['field_id']] : '';
if( isset( $_SESSION['arf_fields'][$condition_rules['field_id']] ) ){
array_push($conditional_logic_new_fields,$_SESSION['arf_fields'][$condition_rules['field_id']]);
}
}
}
if (isset($value_rules['result']) && is_array($value_rules['result'])) {
foreach ($value_rules['result'] as $k => $result_rules) {
$arf_cl_res_field_id = isset( $_SESSION['arf_fields'][$result_rules['field_id']] ) ? $_SESSION['arf_fields'][$result_rules['field_id']] : '';
$arf_cl_res_field_type = $result_rules['field_type'];
$rs_rule_type = wp_cache_get('arf_import_form_field_'.$arf_cl_res_field_id);
if( false === $rs_rule_type ){
$rs_rule_type = $wpdb->get_row($wpdb->prepare("SELECT type FROM `".$MdlDb->fields."` WHERE id = %d",$arf_cl_res_field_id));
wp_cache_set('arf_import_form_field_'.$arf_cl_res_field_id, $rs_rule_type, '', 60);
}
if( isset($rs_rule_type) && isset($rs_rule_type->type) && $rs_rule_type->type != $arf_cl_res_field_type ){
$conditional_logic[$i]['result'][$k]['field_type'] = $rs_rule_type->type;
}
$conditional_logic[$i]['result'][$k]['field_id'] = isset($_SESSION['arf_fields'][$result_rules['field_id']]) ? $_SESSION['arf_fields'][$result_rules['field_id']] : "";
array_push($conditional_logic_res_fields,$conditional_logic[$i]['result'][$k]['field_id']);
}
}
}
$option_arr_new['arf_conditional_logic_rules'] = $conditional_logic;
}
$option_arr_new = maybe_serialize(apply_filters('arf_import_update_field_outside', $option_arr_new, $_SESSION['arf_fields'], $form_id));
$wpdb->update($MdlDb->forms, array('options' => $option_arr_new), array('id' => $form_id));
if( isset($conditional_logic_new_fields) && count($conditional_logic_new_fields) > 0 ){
$conditional_logic_new_fields = array_unique($conditional_logic_new_fields);
foreach( $conditional_logic_new_fields as $ncfk => $new_cl_field_id){
$wpdb->update($MdlDb->fields,array('conditional_logic'=> arf_sanitize_value(1,'number')),array('id'=>$new_cl_field_id));
}
}
global $wpdb, $MdlDb;
$res = get_option('arf_ar_type');
$res1 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 3), 'ARRAY_A');
$res2 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 1), 'ARRAY_A');
$res3 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 4), 'ARRAY_A');
$res4 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 5), 'ARRAY_A');
$res5 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 6), 'ARRAY_A');
$res6 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 8), 'ARRAY_A');
$res7 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 9), 'ARRAY_A');
$res11 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 10), 'ARRAY_A');
$res14 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 14), 'ARRAY_A');
$res15 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 15), 'ARRAY_A');
$res16 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 16), 'ARRAY_A');
$res17 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 17), 'ARRAY_A');
if (isset($res1[0]['responder_api_key']) && $res1[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->aweber->children() as $autores_key1 => $autores_val1) {
$aweber_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$aweber_arr['enable'] = '';
$aweber_arr['is_global'] = 1;
$aweber_arr['type'] = '';
$aweber_arr['type_val'] = '';
}
$aweber = maybe_serialize($aweber_arr);
if (isset($res2[0]['responder_api_key']) && $res2[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->mailchimp->children() as $autores_key1 => $autores_val1) {
$mailchimp_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$mailchimp_arr['enable'] = '';
$mailchimp_arr['is_global'] = 1;
$mailchimp_arr['type'] = '';
$mailchimp_arr['type_val'] = '';
}
$mailchimp = maybe_serialize($mailchimp_arr);
if (isset($res3[0]['responder_api_key']) && $res3[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->getresponse->children() as $autores_key1 => $autores_val1) {
$getresponse_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$getresponse_arr['enable'] = '';
$getresponse_arr['is_global'] = 1;
$getresponse_arr['type'] = '';
$getresponse_arr['type_val'] = '';
}
$getresponse = maybe_serialize($getresponse_arr);
if (isset($res4[0]['responder_api_key']) && $res4[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->gvo->children() as $autores_key1 => $autores_val1) {
$gvo_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$gvo_arr['enable'] = '';
$gvo_arr['is_global'] = 1;
$gvo_arr['type'] = '';
$gvo_arr['type_val'] = '';
}
$gvo = maybe_serialize($gvo_arr);
if (isset($res5[0]['responder_api_key']) && $res5[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->ebizac->children() as $autores_key1 => $autores_val1) {
$ebizac_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$ebizac_arr['enable'] ='';
$ebizac_arr['is_global'] = 1;
$ebizac_arr['type'] = '';
$ebizac_arr['type_val'] = '';
}
$ebizac = maybe_serialize($ebizac_arr);
if (isset($res6[0]['responder_api_key']) && $res6[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->icontact->children() as $autores_key1 => $autores_val1) {
$icontact_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$icontact_arr['enable'] ='';
$icontact_arr['is_global'] = 1;
$icontact_arr['type'] = '';
$icontact_arr['type_val'] = '';
}
$icontact = maybe_serialize($icontact_arr);
if (isset($res7[0]['responder_api_key']) && $res7[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->constant_contact->children() as $autores_key1 => $autores_val1) {
$constant_contact_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$constant_contact_arr['enable'] = '';
$constant_contact_arr['is_global'] = 1;
$constant_contact_arr['type'] ='';
$constant_contact_arr['type_val'] = '';
}
$constant_contact = maybe_serialize($constant_contact_arr);
if (isset($res17[0]['responder_api_key']) && $res17[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->convertkit->children() as $autores_key1 => $autores_val1) {
$convertkit_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$convertkit_arr['enable'] = '';
$convertkit_arr['is_global'] = 1;
$convertkit_arr['type'] ='';
}
$convertkit = maybe_serialize($convertkit_arr);
if (isset($res16[0]['responder_api_key']) && $res16[0]['responder_api_key'] != '') {
foreach ($val_main->autoresponder->sendinblue->children() as $autores_key1 => $autores_val1) {
$sendinblue_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$sendinblue_arr['enable'] = '';
$sendinblue_arr['is_global'] = 1;
$sendinblue_arr['type'] = '';
}
$sendinblue = maybe_serialize($sendinblue_arr);
$frm_id = $form_id;
$update = $wpdb->query($wpdb->prepare("insert into " . $MdlDb->ar . " (aweber ,mailchimp, getresponse, gvo, ebizac,icontact, constant_contact, enable_ar, frm_id) values ('%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%d')", $aweber, $mailchimp, $getresponse, $gvo, $ebizac, $icontact, $constant_contact, maybe_serialize(json_decode(trim($val_main->autoresponder->enable_ar),true)), $frm_id));
$id = isset($id) ? $id : '';
$record = isset($record) ? $record : '';
if ($id){
$resopt = $wpdb->get_row($wpdb->prepare("select * from " . $MdlDb->forms . " where id =%d",$id), 'ARRAY_A');
}
$resopt = isset($resopt) ? $resopt : array();
$opt = isset($resopt["form_css"]) ? $resopt["form_css"] : '';
$formname = isset($resopt["name"]) ? $resopt["name"] : '';
$description = isset($resopt["description"]) ? $resopt["description"] : '';
$autoresponder_fname = isset($resopt["autoresponder_fname"]) ? $resopt["autoresponder_fname"] : '';
$autoresponder_lname = isset($resopt["autoresponder_lname"]) ? $resopt["autoresponder_lname"] : '';
$autoresponder_email = isset($resopt["autoresponder_email"]) ? $resopt["autoresponder_email"] : '';
$update = $wpdb->query($wpdb->prepare("update " . $MdlDb->forms . " set name = '%s' , description = '%s', autoresponder_fname = '%s', autoresponder_lname = '%s', autoresponder_email = '%s', form_css = '%s' where id = '%d'", arf_sanitize_value($formname), arf_sanitize_value($description), arf_sanitize_value($autoresponder_fname), arf_sanitize_value($autoresponder_lname), arf_sanitize_value($autoresponder_email, 'email'), $opt, $record));
//code end here.
/*repeater fields*/
if( isset( $repeater_fields ) && is_array($repeater_fields) && count( $repeater_fields ) > 0 ){
foreach( $repeater_fields as $repeater_old_id => $repeater_new_id ){
$get_all_inner_fields = $wpdb->get_results( $wpdb->prepare( "SELECT id,field_options FROM `".$MdlDb->fields."` WHERE ( field_options LIKE '%\"parent_field\":\"%d\"%' OR field_options LIKE '%\"parent_field\":%d%' ) AND form_id = %d", $repeater_old_id, $repeater_old_id, $form_id ), ARRAY_A );
if( isset( $get_all_inner_fields ) && is_array( $get_all_inner_fields ) && count( $get_all_inner_fields ) > 0 ){
foreach( $get_all_inner_fields as $inner_k => $inner_field ){
$inner_field_id = $inner_field['id'];
$inner_field_opts = json_decode( $inner_field['field_options'], true );
$new_field_opts = $inner_field_opts;
$new_field_opts['parent_field'] = $repeater_new_id;
$final_new_field_opts = json_encode( $new_field_opts );
$wpdb->update(
$MdlDb->fields,
array(
'field_options' => $final_new_field_opts
),
array(
'id' => $inner_field_id
)
);
}
}
}
}
if( isset( $section_fields ) && is_array( $section_fields ) && count( $section_fields ) > 0 ){
asort( $old_field_orders );
asort( $new_field_order );
asort( $final_field_order );
$final_section_fields = array();
$final_field_order_type = array();
foreach( $final_field_order as $k => $v ){
if( !isset( $new_field_order_type[$k] ) ){
$final_field_order_type[$v] = $k.'*|*'.$final_field_order[$k];
} else {
if( $new_field_order_type[$k] == 'divider' ){
$final_section_fields[] = $v - 1;
}
$final_field_order_type[$v] = $k.'*|*'.$new_field_order_type[$k];
}
}
$allfieldsarr = $allfieldstype = array();
foreach( $final_field_order_type as $k => $v ){
$vdata = explode('*|*', $v);
$allfieldsarr[] = $vdata[0];
$allfieldstype[] = $vdata[1];
}
$section_fields = $final_section_fields;
foreach( $section_fields as $k => $section_field_id ){
$first = $section_fields[$k];
$last = isset( $section_fields[$k + 1] ) ? $section_fields[$k + 1] : count( $allfieldsarr ) - 1;
for( $pd = $first; $pd < $last; $pd++ ){
if( isset( $allfieldstype[$pd + 1] ) && ( $allfieldstype[$pd + 1] == 'break' || $allfieldstype[$pd + 1] == 'divider') ){
$last = $pd + 1;
}
}
$n = 1;
for( $x2 = $first; $x2 <= $last; $x2++ ){
if( is_array( $divider_fields ) && in_array( $allfieldsarr[$x2], $divider_fields) ){
if( !isset( $new_inner_field_order[$allfieldsarr[$x2]] ) ){
$xi = $x2;
$new_inner_field_order[$allfieldsarr[$x2]] = array();
$new_inner_field_resize_width[$allfieldsarr[$x2]] = array();
$field_opts = $wpdb->get_row( $wpdb->prepare( "SELECT field_options FROM `" . $MdlDb->fields . "` WHERE id = %d", $allfieldsarr[$x2] ) );
if( isset( $field_opts ) ){
$new_field_opts = array();
$field_opt = arf_json_decode( $field_opts->field_options, true );
$new_field_opts['arf_section_font'] = $field_opt['arf_divider_font'];
$new_field_opts['arf_section_font_size'] = $field_opt['arf_divider_font_size'];
$new_field_opts['arf_section_font_style'] = $field_opt['arf_divider_font_style'];
$new_field_opts['arf_section_bg_color'] = $field_opt['arf_divider_bg_color'];
$new_field_opts['arf_section_inherit_bg'] = $field_opt['arf_divider_inherit_bg'];
$new_field_opts['name'] = $field_opt['name'];
$new_field_opts['default_value'] = $field_opt['default_value'];
$new_field_opts['description'] = $field_opt['description'];
$new_field_opts['css_outer_wrapper'] = $field_opt['css_outer_wrapper'];
$new_field_opts['css_label'] = $field_opt['css_label'];
$new_field_opts['css_description'] = $field_opt['css_description'];
$new_field_opts['type'] = 'section';
$new_field_opts['classes'] = $field_opt['classes'];
$new_field_opts['inner_class'] = $field_opt['inner_class'];
$new_field_opts['key'] = $field_opt['key'];
$new_field_opts['ishidetitle'] = $field_opt['ishidetitle'];
$wpdb->update(
$MdlDb->fields,
array(
'field_options' => json_encode( $new_field_opts ),
'type' => 'section'
),
array(
'id' => $allfieldsarr[$x2]
)
);
}
}
} else {
if( !isset($n) ){
$n = 1;
}
if( 'break' == $allfieldstype[$x2] && $x2 == $last ){
break;
}
$resize_width_key = ($x2 + 1);
$new_inner_field_order[$allfieldsarr[$xi]][] = $allfieldsarr[$x2].'|'.$n;
$field_opts = $wpdb->get_row( $wpdb->prepare( "SELECT field_options FROM `" . $MdlDb->fields . "` WHERE id = %d", $allfieldsarr[$x2] ) );
if( isset( $field_opts ) ){
$field_opt = arf_json_decode( $field_opts->field_options, true );
$field_opt['has_parent'] = true;
$field_opt['parent_field_type'] = 'section';
$field_opt['parent_field'] = $allfieldsarr[$xi];
$wpdb->update(
$MdlDb->fields,
array(
'field_options' => json_encode( $field_opt )
),
array(
'id' => $allfieldsarr[$x2]
)
);
}
if( !preg_match('/^(\d)+$/',$allfieldsarr[$x2]) ){
$dt = explode( '|', $allfieldsarr[$x2] );
$resize_width = isset( $old_field_resize_width[$resize_width_key] ) ? $old_field_resize_width[$resize_width_key] : '100.000';
$new_inner_field_resize_width[$allfieldsarr[$xi]][] = $dt[0].'|'.$resize_width.'|'.$n;
} else {
$resize_width = isset( $old_field_resize_width[$resize_width_key] ) ? $old_field_resize_width[$resize_width_key] : '100.000';
$new_inner_field_resize_width[$allfieldsarr[$xi]][] = $allfieldsarr[$x2].'|'.$resize_width.'|'.$n;
}
unset( $final_field_order[$allfieldsarr[$x2]] );
unset( $old_field_resize_width[$resize_width_key] );
$n++;
}
}
}
$new_final_field_order = array();
$x = 1;
foreach( $final_field_order as $fid => $fval ){
$new_final_field_order[$fid] = $x;
$new_field_resize_width[$x] = $old_field_resize_width[$fval];
$x++;
}
$getOpt = $wpdb->get_row( $wpdb->prepare( "SELECT options FROM `" . $MdlDb->forms . "` WHERE id = %d" , $frm_id ) );
$frm_opts = arf_json_decode( $getOpt->options, true );
$updated_field_order = json_encode( $final_field_order );
$updated_field_width = json_encode( $new_field_resize_width );
$updated_inner_field_order = json_encode( $new_inner_field_order );
$updated_inner_field_width = json_encode( $new_inner_field_resize_width );
$frm_opts['arf_field_order'] = $updated_field_order;
$frm_opts['arf_inner_field_order'] = $updated_inner_field_order;
$frm_opts['arf_field_resize_width'] = $updated_field_width;
$frm_opts['arf_inner_field_resize_width'] = $updated_inner_field_width;
$wpdb->update(
$MdlDb->forms,
array(
'options' => maybe_serialize( $frm_opts )
),
array(
'id' => $frm_id
)
);
}
if (version_compare($xml_arf_version, '2.7.4', '>=')) {
if (isset($val_main->form_entries) && count($val_main->form_entries->children()) > 0) {
include_once(FORMPATH . '/js/filedrag/simple_image.php');
global $user_ID, $wpdb;
$entry_values = array();
$entry_values_new = array();
$vls = array();
$entry_values['form_id'] = $frm_id;
if ($user_ID) {
$entry_values['user_id'] = $user_ID;
}
foreach ($val_main->form_entries->children() as $key_fields => $val_fields) {
$upload_files = array();
$entry_values['entry_key'] = $armainhelper->get_unique_key('', $MdlDb->entries, 'entry_key');
foreach ($val_fields as $key_field => $val_field) {
$field_nm = str_replace('_ARF_', ' ', (string)$val_field['field_label']);
$field_nm = str_replace('_ARF_SLASH_', '/', $field_nm);
if ($field_nm == 'Browser') {
$entry_values['browser_info'] = (string) $val_field;
} else if ($field_nm == 'Country') {
$entry_values['country'] = (string) $val_field;
} else if ($field_nm == "Created Date") {
$entry_values['created_date'] = (string) $val_field;
} else if ($field_nm == "IP Address") {
$entry_values['ip_address'] = (string) $val_field;
} else if ($field_nm == "Submit Type") {
$vls['form_display_type'] = (string) trim($val_field);
} else {
$field_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->fields . " WHERE form_id = %d", $frm_id));
foreach ($field_data as $k => $v) {
if ($v->name == $field_nm) {
$field_type = $val_field->attributes();
$entry_value = array();
if ($field_type['field_type'] == 'file' && $v->type == 'file' && trim($val_field) != '' ) {
$old_values_field = explode('|', trim($val_field));
foreach ($old_values_field as $old_val_field) {
$newfilename = (string) $old_val_field;
if( empty( $newfilename ) ){
continue;
}
$image_url = $newfilename;
$img_url = explode('/', $image_url);
$img_url = $img_url[count($img_url) - 1];
$file_upload_field_key = $v->field_key;
/******/
$new_file = basename($newfilename);
$full_image_name = pathinfo($newfilename);
$image_name = arf_sanitize_value($full_image_name['filename']);
$image_extention = arf_sanitize_value($full_image_name['extension']);
$file_path = $arformhelper->get_file_upload_path();
$file_path = $arformhelper->replace_file_upload_path_shrtcd($file_path, $form_id);
$upload_baseurl = get_home_url() . "/" . $file_path;
$upload_basepath = ABSPATH . $file_path;
$image_path = $upload_baseurl . $new_file;
$image_path1 = $upload_basepath . $new_file;
$info = file_exists($image_path1 ) ? getimagesize($image_path1) : array();
$mime_type = isset( $info['mime'] ) ? arf_sanitize_value($info['mime']) : '';
$args = array("post_title" => $image_name . '.' . $image_extention, 'post_name' => $image_name, 'post_type' => 'attachment', 'post_mime_type' => $mime_type, "guid" => $image_path);
$entry_value[] = $lastid = wp_insert_post($args);
$path = '';
if (preg_match('/image\//', $mime_type)) {
$path = $file_path;
$uploading_image = new SimpleImage();
$uploading_image->load($upload_basepath . $new_file);
$uploading_image->resizeToHeight(100);
$uploading_image->save($upload_basepath . 'thumbs/' . $new_file);
}
else {
$path = $file_path . "thumbs/";
}
$wpdb->query($wpdb->prepare("insert into " . $wpdb->prefix . "postmeta (post_id,meta_key,meta_value) values ('%d','_wp_attached_file','%s')", $lastid, $path . $new_file));
}
$entry_values_new ['item_meta'][$v->id] = implode('|', $entry_value);
$entry_value = array();
} elseif($field_type['field_type'] == 'matrix'){
$values = explode(',', (string) $val_field);
$new_values = maybe_serialize($values);
$entry_values_new['item_meta'][$v->id] = $new_values;
} else {
if (strtolower($field_type) == 'checkbox') {
$values = explode('^|^', (string) $val_field);
$entry_values_new['item_meta'][$v->id] = array_map('trim',$values);
} else {
$entry_values_new['item_meta'][$v->id] = (string) trim($val_field);
}
}
}
}
}
$referrerinfo = $armainhelper->get_referer_info();
$entry_values['browser_info'] = isset($entry_values['browser_info']) ? $entry_values['browser_info'] : '';
$entry_values['description'] = maybe_serialize(array('browser' => $entry_values['browser_info'], 'referrer' => $referrerinfo));
}
$create_entry = true;
if ($create_entry) {
$query_results = $wpdb->insert($MdlDb->entries, $entry_values);
}
if (isset($query_results) and $query_results) {
$entry_id = $wpdb->insert_id;
global $arfsavedentries;
$arfsavedentries[] = (int) $entry_id;
if (isset($vls['form_display_type']) and $vls['form_display_type'] != '') {
global $wpdb;
$arf_meta_insert = array(
'entry_value' => arf_sanitize_value($vls['form_display_type']),
'field_id' => arf_sanitize_value(0,'integer'),
'entry_id' => arf_sanitize_value($entry_id, 'integer'),
'created_date' => current_time('mysql'),
);
$wpdb->insert($wpdb->prefix . 'arf_entry_values', $arf_meta_insert, array('%s', '%d', '%d', '%s'));
}
if (isset($entry_values_new['item_meta']))
$arfrecordmeta->update_entry_metas($entry_id, $entry_values_new['item_meta']);
}
}
}
}
}
?>
<script type="text/javascript" language="javascript"> setTimeout(function () {
success_msg();
}, 10);</script>
<div id="success_message" class="arf_success_message">
<div class="message_descripiton">
<div style="float: left; margin-right: 15px;"><?php echo addslashes(esc_html__('Form is imported successfully.', 'ARForms')); ?></div>
<div class="message_svg_icon">
<svg style="height: 14px;width: 14px;"><path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M6.075,14.407l-5.852-5.84l1.616-1.613l4.394,4.385L17.181,0.411
l1.616,1.613L6.392,14.407H6.075z"></path></svg>
</div>
</div>
</div>
<?php
}
/* for import arforms lite form */
else if(isset($xml->arformslite)) {
$ik = 0;
foreach ($xml->children() as $formxml) {
foreach ($formxml->children() as $key_main => $val_main) {
$arfinputstyle = 'standard';
$attr = $val_main->attributes();
$old_form_id = $attr['id'];
$submit_bg_img_fnm = '';
$arfmainform_bg_img_fnm = '';
$arfmainform_bg_hover_img_fnm = '';
$submit_bg_img = trim($val_main->submit_bg_img);
$arfmainform_bg_img = trim($val_main->arfmainform_bg_img);
$submit_hover_bg_img = trim($val_main->submit_hover_bg_img);
$xml_arf_version = trim($val_main->arf_db_version);
$exported_site_uploads_dir = trim($val_main->exported_site_uploads_dir);
$wp_upload_dir = wp_upload_dir();
$imageupload_dir = $wp_upload_dir['basedir'] . '/arforms/';
$imageupload_url = $wp_upload_dir['baseurl'] . '/arforms/';
//code start here for submit bg image
if ($submit_bg_img != '') {
$submit_bg_img_filenm = basename($submit_bg_img);
$submit_bg_img_fnm = time() . '_' . $ik . "_" . $submit_bg_img_filenm;
$ik++;
$arfilecontroller = new arfilecontroller( $submit_bg_img, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $submit_bg_img_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$submit_bg_img_fnm = '';
}
}
//code end here
//code start here for background bg image
if ($arfmainform_bg_img != '') {
$arfmainform_bg_img_filenm = basename($arfmainform_bg_img);
$arfmainform_bg_img_fnm = time() . '_' . $ik . "_" . $arfmainform_bg_img_filenm;
$ik++;
$arfilecontroller = new arfilecontroller( $arfmainform_bg_img, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $arfmainform_bg_img_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$arfmainform_bg_img_fnm = '';
}
}
if ($submit_hover_bg_img != '') {
$submit_hover_bg_img_filenm = basename($submit_hover_bg_img);
$arfmainform_bg_hover_img_fnm = time() . '_' . $ik . "_" . $submit_hover_bg_img_filenm;
$ik++;
$arfilecontroller = new arfilecontroller( $submit_hover_bg_img, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $arfmainform_bg_hover_img_fnm;
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$arfmainform_bg_hover_img_fnm = '';
}
}
//code end here
//code start here for get all general options.
$val = '';
$old_field_orders = $new_field_order = array();
$old_inner_field_orders = $new_inner_field_order = array();
$old_field_resize_width = $new_field_resize_width = array();
$new_inner_field_resize_width = array();
$old_field_order_type = $new_field_order_type = array();
foreach ($val_main->general_options->children() as $key => $val) {
if ($key == 'options') {
$options_arr = '';
$options_key = '';
$options_val = '';
unset($option_arr_new);
$option_string = '';
$options_arr = arf_json_decode(trim($val), true);
if( !is_array($options_arr) ){
$options_arr = json_decode($options_arr,true);
}
$enable_confirm_summary_flag = $options_arr['arf_confirmation_summary'];
foreach ($options_arr as $options_key => $options_val) {
if (!is_array($options_val)) {
$options_val = str_replace('[ENTERKEY]', '<br>', $options_val);
$options_val = str_replace('[AND]', '&', $options_val);
}
if ($options_key == 'before_html') {
$option_arr_new[$options_key] = $arformhelper->get_default_html('before');
} elseif ($options_key == 'ar_email_subject') {
$_SESSION['ar_email_subject_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_email_message') {
$_SESSION['ar_email_message_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_admin_email_message') {
$_SESSION['ar_admin_email_message_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_email_to') {
$_SESSION['ar_email_to_org'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_admin_from_email') {
$_SESSION['ar_admin_from_email'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_user_from_email') {
$_SESSION['ar_user_from_email'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'arf_conditional_mail_rules') {
$_SESSION['arf_conditional_mail_rules'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'ar_admin_from_name') {
$_SESSION['arf_admin_from_name'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'admin_email_subject') {
$_SESSION['admin_email_subject'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'reply_to') {
$_SESSION['reply_to'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} elseif ($options_key == 'arf_pre_dup_field') {
$_SESSION['arf_pre_dup_field'] = $options_val;
$option_arr_new[$options_key] = $options_val;
} else if($options_key == 'arf_field_order' ){
$old_field_orders = json_decode($options_val,true);
$option_arr_new[$options_key] = $options_val;
} else if($options_key == 'arf_inner_field_order' ){
$old_inner_field_orders = json_decode( $options_val, true);
$option_arr_new[$options_key] = $options_val;
} else if($options_key == 'arf_field_resize_width' ){
$option_arr_new[$options_key] = $options_val;
$old_field_resize_width = json_decode( $options_val, true );
} else if($options_key == 'arf_inner_field_resize_width' ){
$option_arr_new[$options_key] = $options_val;
$new_field_resize_width = json_decode( $options_val, true );
} else {
$option_arr_new[$options_key] = $options_val;
}
}
$option_string = maybe_serialize($option_arr_new);
$general_option[$key] = $option_string;
$general_op = $option_string;
} elseif ($key == 'form_css') {
$form_css_arr = arf_json_decode(trim($val),true);
if (!isset($form_css_arr['prefix_suffix_bg_color']) || $form_css_arr['prefix_suffix_bg_color'] == ''){
$form_css_arr['prefix_suffix_bg_color'] = '#e7e8ec';
}
if (!isset($form_css_arr['prefix_suffix_icon_color']) || $form_css_arr['prefix_suffix_icon_color'] == ''){
$form_css_arr['prefix_suffix_icon_color'] = '#808080';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_1']) || $form_css_arr['arfsectionpaddingsetting_1'] == ''){
$form_css_arr['arfsectionpaddingsetting_1'] = '20';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_2']) || $form_css_arr['arfsectionpaddingsetting_2'] == ''){
$form_css_arr['arfsectionpaddingsetting_2'] = '0';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_3']) || $form_css_arr['arfsectionpaddingsetting_3'] == ''){
$form_css_arr['arfsectionpaddingsetting_3'] = '20';
}
if (!isset($form_css_arr['arfsectionpaddingsetting_4']) || $form_css_arr['arfsectionpaddingsetting_4'] == ''){
$form_css_arr['arfsectionpaddingsetting_4'] = '20';
}
if( !isset($form_css_arr['arfsubmitboxxoffsetsetting']) || $form_css_arr['arfsubmitboxxoffsetsetting'] == '' ){
$form_css_arr['arfsubmitboxxoffsetsetting'] = '1';
}
if( !isset($form_css_arr['arfsubmitboxyoffsetsetting']) || $form_css_arr['arfsubmitboxyoffsetsetting'] == '' ){
$form_css_arr['arfsubmitboxyoffsetsetting'] = '2';
}
if( !isset($form_css_arr['arfsubmitboxblursetting']) || $form_css_arr['arfsubmitboxblursetting'] == '' ){
$form_css_arr['arfsubmitboxblursetting'] = '3';
}
if( !isset($form_css_arr['arfsubmitboxshadowsetting']) || $form_css_arr['arfsubmitboxshadowsetting'] == '' ){
$form_css_arr['arfsubmitboxshadowsetting'] = '0';
}
$arfinputstyle = !empty( $form_css_arr['arfinputstyle'] ) ? $form_css_arr['arfinputstyle'] : 'standard';
foreach ($form_css_arr as $form_css_key => $form_css_val) {
if ($form_css_key == 'submit_bg_img') {
if ($submit_bg_img_fnm == '') {
$form_css_arr_new['submit_bg_img'] = '';
$form_css_arr_new_db['submit_bg_img'] = '';
} else {
$form_css_arr_new['submit_bg_img'] = $imageupload_url . $submit_bg_img_fnm;
$form_css_arr_new_db['submit_bg_img'] = $imageupload_url . $submit_bg_img_fnm;
}
} elseif ($form_css_key == 'arfmainform_bg_img') {
if ($arfmainform_bg_img_fnm == '') {
$form_css_arr_new[$form_css_key] = '';
$form_css_arr_new_db[$form_css_key] = '';
} else {
$form_css_arr_new[$form_css_key] = $imageupload_url . $arfmainform_bg_img_fnm;
$form_css_arr_new_db[$form_css_key] = $imageupload_url . $arfmainform_bg_img_fnm;
}
} elseif ($form_css_key == 'submit_hover_bg_img') {
if ($arfmainform_bg_hover_img_fnm == '') {
$form_css_arr_new[$form_css_key] = '';
$form_css_arr_new_db[$form_css_key] = '';
} else {
$form_css_arr_new[$form_css_key] = $imageupload_url . $arfmainform_bg_hover_img_fnm;
$form_css_arr_new_db[$form_css_key] = $imageupload_url . $arfmainform_bg_hover_img_fnm;
}
} elseif ($form_css_key == 'arf_checked_checkbox_icon' || $form_css_key == 'arf_checked_radio_icon') {
$form_css_arr_new[$form_css_key] = $armainhelper->arf_update_fa_font_class($form_css_val);
$form_css_arr_new_db[$form_css_key] = $armainhelper->arf_update_fa_font_class($form_css_val);
} else {
$form_css_arr_new[$form_css_key] = $form_css_val;
$form_css_arr_new_db[$form_css_key] = $form_css_val;
}
}
$final_val = maybe_serialize($form_css_arr_new);
$final_val_db = maybe_serialize($form_css_arr_new_db);
$general_option[$key] = $final_val;
$general_option[$key . '_db'] = $final_val_db;
} else {
$general_option[$key] = trim($val);
}
}
//code end here.
$general_option['is_importform'] = 'Yes';
$general_option['is_imported_from_lite'] = 1;
//code start here for store all general options in database.
$autoresponder_fname = isset($general_option['autoresponder_fname']) ? $general_option['autoresponder_fname'] : 0;
$autoresponder_lname = isset($general_option['autoresponder_lname']) ? $general_option['autoresponder_lname'] : 0;
$autoresponder_email = isset($general_option['autoresponder_email']) ? $general_option['autoresponder_email'] : 0;
$general_option['form_key'] = '';
unset($general_option['id']);
$form_id = $arfform->create($general_option);
//code end here
//code start here for get css option and generate new css.
$cssoptions = $general_option['form_css'];
$cssoptions_db = $general_option['form_css_db'];
//code start here for get fields of form and store in database.
$type_array = array();
$content_array = array();
$value_array = array();
$new_id_array = array();
$repeater_fields = array();
$section_fields = array();
$divider_fields = array();
$allfieldstype = array();
$allfieldsarr = array();
$i=0;
foreach ($val_main->fields->children() as $key_fields => $val_fields) {
if( !in_array($val_fields->type,$outside_fields)){
/* Skip add on fields while imported form has those fields but add on is not activated */
continue;
}
$fields_option = array();
foreach ($val_fields as $key_field => $val_field) {
if ($key_field == 'form_id') {
$fields_option[$key_field] = $form_id;
} else if ($key_field == 'options' && ( $val_fields->type == 'radio' || $val_fields->type == 'checkbox' ) ) {
if( !is_array($val_field) ){
$temp_radio_val = stripslashes( trim($val_field) );
$temp_radio_val = rtrim($temp_radio_val,'"');
$temp_radio_val = ltrim($temp_radio_val,'"');
$val_field_radio = json_decode(trim($temp_radio_val),true);
if( json_last_error() != JSON_ERROR_NONE ){
$val_field_radio = maybe_unserialize(trim($val_field));
}
}
if (is_array($val_field_radio)) {
foreach ($val_field_radio as $key => $value) {
$image_path = '';
if (is_array($value)) {
if (isset($value['label_image']) && $value['label_image'] !='') {
$image_path = $value['label_image'];
$arfilecontroller = new arfilecontroller( $image_path, true );
$arfilecontroller->check_cap = true;
$arfilecontroller->capabilities = array( 'arfchangesettings' );
$arfilecontroller->check_nonce = true;
$arfilecontroller->nonce_action = 'arf_import_form';
$arfilecontroller->nonce_data = isset( $_REQUEST['arf_nonce'] ) ? $_REQUEST['arf_nonce'] : '';
$arfilecontroller->check_only_image = true;
$destination = $imageupload_dir . $key . '_' . basename($image_path);
if( ! $arfilecontroller->arf_process_upload( $destination ) ){
$val_field_radio[$key]['label_image'] = '';
} else {
$val_field_radio[$key]['label_image'] = $destination;
}
}
}
}
}
$fields_option[$key_field] = json_encode($val_field_radio);
} else {
if( $key_field == 'field_options' ){
$fields_option[$key_field] = trim(json_encode(arf_json_decode( trim($val_field), true )));
$fields_option[$key_field] = str_replace('[ENTERKEY]', '<br>', $fields_option[$key_field]);
} else if( 'options' == $key_field ){
$temp_val = stripslashes( trim($val_field) );
$temp_val = rtrim($temp_val,'"');
$temp_val = ltrim($temp_val,'"');
$fields_option[$key_field] = $temp_val;
} else {
$fields_option[$key_field] = trim($val_field);
}
}
$all_field_data='';
$field_name='';
if(isset($fields_option['field_options'])){
$all_field_data = arf_json_decode($fields_option['field_options']);
if(isset($all_field_data->name)){
$field_name=str_replace('[ENTERKEY]', ' ', $all_field_data->name);
$all_field_data->name=$field_name;
}
$fields_option['field_options'] = trim(json_encode($all_field_data));
}
if( $key_field == 'field_options' ){
$arf_field_options = arf_json_decode(trim($val_field),true);
if( isset($arf_field_options['arf_prefix_icon']) && $arf_field_options['arf_prefix_icon'] != '' ){
$arf_field_options['arf_prefix_icon'] = $armainhelper->arf_update_fa_font_class( $arf_field_options['arf_prefix_icon'] );
}
if( isset($arf_field_options['arf_suffix_icon']) && $arf_field_options['arf_suffix_icon'] != '' ){
$arf_field_options['arf_suffix_icon'] = $armainhelper->arf_update_fa_font_class( $arf_field_options['arf_suffix_icon'] );
}
$fields_option[$key_field] = trim(json_encode($arf_field_options));
}
}
$res_field_id = $fields_option['id'];
$type_array[$res_field_id] = $fields_option['type'];
$new_field_id = $arffield->create($fields_option, true, true, $res_field_id);
if($val_fields->type !='html'){
$new_id_array[$i]['old_id'] = $res_field_id;
$new_id_array[$i]['new_id'] = $new_field_id;
$new_id_array[$i]['name'] = $fields_option['name'];
$new_id_array[$i]['type'] = $fields_option['type'];
}
if ($fields_option['type'] == 'html') {
$value_array = json_decode($fields_option['field_options'], true);
$content_array[$new_field_id]['html_content'] = str_replace('[ENTERKEY]',"\n",$value_array['description']);
}
if ($fields_option['type'] != 'hidden') {
if( isset( $old_field_orders[$res_field_id] ) ){
$new_field_order[$new_field_id] = $old_field_orders[$res_field_id];
$old_field_order_type[$res_field_id] = $fields_option['type'];
$new_field_order_type[$new_field_id] = $fields_option['type'];
}
if( isset( $old_inner_field_orders[$res_field_id] ) ){
$new_inner_field_order[$new_field_id] = $old_inner_field_orders[$res_field_id];
}
if( 'arf_repeater' == $fields_option['type'] || 'section' == $fields_option['type'] ){
$repeater_fields[$res_field_id] = $new_field_id;
}
if( 'divider' == $fields_option['type'] ){
$section_fields[] = $i;
$divider_fields[$res_field_id] = $new_field_id;
}
}
$ar_email_subject = isset($ar_email_subject) ? $ar_email_subject : '';
if ($ar_email_subject == '')
$ar_email_subject = $_SESSION['ar_email_subject_org'];
else
$ar_email_subject = $ar_email_subject;
$ar_email_subject = str_replace( $res_field_id, $new_field_id, $ar_email_subject);
$ar_email_subject = $arformhelper->replace_field_shortcode_import($ar_email_subject, $res_field_id, $new_field_id);
$ar_email_message = isset($ar_email_message) ? $ar_email_message : '';
if ($ar_email_message == '')
$ar_email_message = isset($_SESSION['ar_email_message_org']) ? $_SESSION['ar_email_message_org'] : '';
else
$ar_email_message = $ar_email_message;
$ar_email_message = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_email_message);
$ar_email_message = $arformhelper->replace_field_shortcode_import($ar_email_message, $res_field_id, $new_field_id);
$arf_pre_dup_field = isset($arf_pre_dup_field) ? $arf_pre_dup_field : '';
if ($arf_pre_dup_field == '')
$arf_pre_dup_field = isset($_SESSION['arf_pre_dup_field']) ? $_SESSION['ar_email_message_org'] : '';
else
$arf_pre_dup_field = $arf_pre_dup_field;
$arf_pre_dup_field = str_replace($res_field_id, $new_field_id, $arf_pre_dup_field);
$ar_admin_email_message = isset($ar_admin_email_message) ? $ar_admin_email_message : '';
if ($ar_admin_email_message == '')
$ar_admin_email_message = isset($_SESSION['ar_admin_email_message_org']) ? $_SESSION['ar_admin_email_message_org'] : '';
else
$ar_admin_email_message = $ar_admin_email_message;
$ar_admin_email_message = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_admin_email_message);
$ar_admin_email_message = $arformhelper->replace_field_shortcode_import($ar_admin_email_message, $res_field_id, $new_field_id);
$ar_admin_from_name = isset($ar_admin_from_name) ? $ar_admin_from_name : '';
if ($ar_admin_from_name == '')
$ar_admin_from_name = isset($_SESSION['arf_admin_from_name']) ? $_SESSION['arf_admin_from_name'] : '';
else
$ar_admin_from_name = $ar_admin_from_name;
$ar_admin_from_name = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_admin_from_name);
$ar_admin_from_name = $arformhelper->replace_field_shortcode_import($ar_admin_from_name, $res_field_id, $new_field_id);
$admin_email_subject = isset($admin_email_subject) ? $admin_email_subject : '';
if ($admin_email_subject == '')
$admin_email_subject = isset($_SESSION['admin_email_subject']) ? $_SESSION['admin_email_subject'] : '';
else
$admin_email_subject = $admin_email_subject;
$admin_email_subject = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $admin_email_subject);
$admin_email_subject = $arformhelper->replace_field_shortcode_import($admin_email_subject, $res_field_id, $new_field_id);
$reply_to = isset($reply_to) ? $reply_to : '';
if ($reply_to == '')
$reply_to = isset($_SESSION['reply_to']) ? $_SESSION['reply_to'] : '';
else
$reply_to = $reply_to;
$reply_to = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $reply_to);
$reply_to = $arformhelper->replace_field_shortcode_import($reply_to, $res_field_id, $new_field_id);
$ar_email_to = isset($ar_email_to) ? $ar_email_to : '';
if ($ar_email_to == '')
$ar_email_to = isset($_SESSION['ar_email_to_org']) ? $_SESSION['ar_email_to_org'] : '';
else
$ar_email_to = $ar_email_to;
$ar_admin_from_email = isset($ar_admin_from_email) ? $ar_admin_from_email : '';
if ($ar_admin_from_email == '')
$ar_admin_from_email = isset($_SESSION['ar_admin_from_email']) ? $_SESSION['ar_admin_from_email'] : '';
else
$ar_admin_from_email = $ar_admin_from_email;
$ar_admin_from_email = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_admin_from_email);
$ar_admin_from_email = $arformhelper->replace_field_shortcode_import($ar_admin_from_email, $res_field_id, $new_field_id);
$ar_user_from_email = isset($ar_user_from_email) ? $ar_user_from_email : '';
if ($ar_user_from_email == '')
$ar_user_from_email = isset($_SESSION['ar_user_from_email']) ? $_SESSION['ar_user_from_email'] : '';
else
$ar_user_from_email = $ar_user_from_email;
$ar_user_from_email = str_replace('[' . $res_field_id . ']', '[' . $new_field_id . ']', $ar_user_from_email);
$ar_user_from_email = $arformhelper->replace_field_shortcode_import($ar_user_from_email, $res_field_id, $new_field_id);
unset($field_values);
$i++;
}
$running_total_fields = array();
if (in_array('html', $type_array)) {
if (!empty($content_array) && !empty($new_id_array)) {
foreach ($content_array as $key_type => $value_type) {
$arf_html_content_new = $value_type['html_content'];
foreach ($new_id_array as $key_new => $value_new) {
$arf_html_content = ':' . $value_new["old_id"] . ']';
$replace_with_arf_html_content = ':' . $value_new["new_id"] . ']';
if( $value_new['type'] == 'checkbox' || $value_new['type'] == 'arf_multiselect' || $value_new['type'] == 'matrix' ){
$pattern_ch = "/\:(\d+)(\.\d+)/";
$pattern = "/\:(\d+)/";
preg_match_all($pattern,$replace_with_arf_html_content,$Matches);
preg_match_all($pattern,$arf_html_content,$Matches1);
if( isset($Matches[1]) && count($Matches[1]) > 0){
foreach($Matches[1] as $kk => $Match){
$arf_html_content_new = preg_replace($pattern_ch,':'.$Match.'$2',$arf_html_content_new);
$running_total_fields[$Match][] = $key_type;
}
}
} else {
$arf_html_content_new = str_replace($arf_html_content, $replace_with_arf_html_content, $arf_html_content_new);
$pattern = "/\:\d+/";
preg_match_all($pattern,$arf_html_content_new,$matches);
if( isset($matches[0]) && $matches[0] != '' ){
foreach( $matches[0] as $k => $val ){
$running_total_fields[preg_replace('/[^0-9]/','',$val)][] = $key_type;
}
}
}
}
$fleld_data = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $key_type));
$fleld_data_options = json_decode($fleld_data[0]->field_options, 1);
$fleld_data_options['description'] = $arf_html_content_new;
$field_data_opts = addslashes( json_encode( $fleld_data_options ) );
$wpdb->query("UPDATE " . $MdlDb->fields . " SET field_options ='" . $field_data_opts . "' WHERE id=" . $key_type);
}
}
}
$result_diff = array_diff($old_field_orders, $new_field_order);
foreach ($result_diff as $key => $value) {
$new_field_order[$key] = $value;
}
foreach( $new_id_array as $k => $val ){
$old_id = $val['old_id'];
$new_id = $val['new_id'];
$arr1 = isset( $old_inner_field_orders[$old_id] ) ? $old_inner_field_orders[$old_id] : array();
$arr2 = isset( $new_inner_field_order[$new_id] ) ? $new_inner_field_order[$new_id] : array();
if( isset( $arr1 ) && isset( $arr2 ) && !empty( $arr1 ) && !empty( $arr2 ) ){
$uparr2 = array();
foreach( $arr2 as $iik => $iiv ){
$exploded_data = explode('|', $iiv );
$fid = $exploded_data[0];
$ford = $exploded_data[1];
if( preg_match('/^(\d)+$/', $fid ) ){
$fk = $arformcontroller->arfSearchArray($fid,'old_id',$new_id_array);
$uparr2[$iik] = $new_id_array[$fk]['new_id'].'|'.$ford;
} else {
if( preg_match('/(_confirm)/', $fid ) ){
$fnid = str_replace('_confirm', '', $fid );
$fk = $arformcontroller->arfSearchArray( $fnid, 'old_id', $new_id_array );
$uparr2[$iik] = $new_id_array[$fk]['new_id'].'_confirm|'.$ford;
}
}
}
$inner_diff = array_diff( $arr1, $arr2 );
if( count( $inner_diff) > 0 ){
foreach( $inner_diff as $ik => $iv ){
$new_inner_field_order[$new_id][$ik] = $iv;
}
} else {
$new_inner_field_order[$new_id] = $uparr2;
}
}
}
$updated_inner_field_resize_width = array();
foreach( $new_field_resize_width as $parent_id => $parent_arr ){
$fkey = $arformcontroller->arfSearchArray( $parent_id, 'old_id', $new_id_array );
if( '' !== $fkey ){
$parent_id = $new_id_array[$fkey]['new_id'];
}
if( !isset( $updated_inner_field_resize_width[$parent_id] ) ){
$updated_inner_field_resize_width[$parent_id] = array();
}
foreach( $parent_arr as $k => $v ){
$exploded_data = explode('|', $v);
$fid = $exploded_data[0];
$fwidth = $exploded_data[1];
$ford = $exploded_data[2];
if( preg_match('/^(\d)+$/', $fid) ){
$fikey = $arformcontroller->arfSearchArray( $fid, 'old_id', $new_id_array );
if( '' !== $fikey ){
$fid = $new_id_array[$fikey]['new_id'];
}
$updated_inner_field_resize_width[$parent_id][] = $fid.'|'.$fwidth.'|'.$ford;
} else {
if( preg_match('/(_confirm)/', $fid ) ){
$fnid = str_replace('_confirm', '', $fid);
$fikey = $arformcontroller->arfSearchArray( $fnid, 'old_id', $new_id_array );
if( '' !== $fikey ){
$updated_inner_field_resize_width[$parent_id][] = $new_id_array[$fikey]['new_id'].'_confirm|'.$fwidth.'|'.$ford;;
}
}
}
}
}
$result_type_diff = array_diff( $old_field_order_type, $new_field_order_type );
foreach( $result_type_diff as $key => $value ){
$new_field_order_type[$key] = $value;
}
$final_field_order = array();
$final_inner_field_order = array();
$new_temp_field = array();
foreach ($new_field_order as $key => $value) {
if(strpos($key, '_confirm') !== false) {
$field_ext_extract = explode('_', $key);
$old_value = $old_field_orders[$field_ext_extract[0]];
$new_id = array_search($old_value, $new_field_order);
$final_field_order[$new_id.'_confirm'] = $value;
$fleld_data_confirm = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $new_id));
$fleld_data_confirm_options = json_decode($fleld_data_confirm[0]->field_options, 1);
if($fleld_data_confirm_options['type'] == 'email'){
$new_temp_field['confirm_email_'.$new_id] = array();
$new_temp_field['confirm_email_'.$new_id]['key'] = $fleld_data_confirm_options['key'];
$new_temp_field['confirm_email_'.$new_id]['order'] = $value;
$new_temp_field['confirm_email_'.$new_id]['parent_field_id'] = $new_id;
$new_temp_field['confirm_email_'.$new_id]['confirm_inner_class'] = $fleld_data_confirm_options['confirm_email_inner_classes'];;
}
}
else{
$final_field_order[$key] = $value;
}
}
foreach( $new_inner_field_order as $parent_field_id => $inner_fields ){
foreach( $inner_fields as $val ){
$exploded_data = explode('|',$val);
$key = $exploded_data[0];
$value = $exploded_data[1];
if( strpos($key,'_confirm') !== false ){
$field_ext_extract = explode('_', $key);
$new_id = $field_ext_extract[0];
$final_inner_field_order[$parent_field_id][] = $key.'|'.$value;
$fleld_data_confirm = $wpdb->get_results($wpdb->prepare("SELECT field_options FROM " . $MdlDb->fields . " WHERE id=%d" , $new_id));
$fleld_data_confirm_options = json_decode($fleld_data_confirm[0]->field_options, 1);
if($fleld_data_confirm_options['type'] == 'email'){
$new_temp_field['confirm_email_'.$new_id] = array();
$new_temp_field['confirm_email_'.$new_id]['key'] = $fleld_data_confirm_options['key'];
$new_temp_field['confirm_email_'.$new_id]['order'] = $value;
$new_temp_field['confirm_email_'.$new_id]['parent_field_id'] = $new_id;
$new_temp_field['confirm_email_'.$new_id]['confirm_inner_class'] = $fleld_data_confirm_options['confirm_email_inner_classes'];;
}
} else {
$final_inner_field_order[$parent_field_id][] = $key.'|'.$value;
}
}
}
$running_total_fields = array_map('array_unique', array_map('array_values',$running_total_fields));
if( isset($running_total_fields) && count($running_total_fields) > 0 ){
foreach($running_total_fields as $k => $rtfield_id){
foreach($rtfield_id as $i => $rtfield ){
$is_rt_enable = $wpdb->get_results($wpdb->prepare("SELECT enable_running_total FROM `".$MdlDb->fields."` WHERE id = %d",$k));
if( isset($is_rt_enable) && count($is_rt_enable) > 0 ){
foreach($is_rt_enable as $i => $rtenable){
if( isset($rtenable->enable_running_total) && $rtenable->enable_running_total != '' && $rtenable->enable_running_total > 0 ){
if( strpos($rtfield,$rtenable->enable_running_total) == false )
$new_total_field = $rtfield.','.$rtenable->enable_running_total;
$wpdb->update($MdlDb->fields,array('enable_running_total' => arf_sanitize_value($new_total_field)),array('id'=> $k));
} else {
$wpdb->update($MdlDb->fields,array('enable_running_total' => arf_sanitize_value($rtfield)),array('id'=> $k));
}
}
}
}
}
}
$getForm = $wpdb->get_results($wpdb->prepare("SELECT options FROM `".$MdlDb->forms."` WHERE id = %d",$form_id));
$formOpt = maybe_unserialize($getForm[0]->options);
$newOpt = maybe_unserialize($general_option['options']);
$newOpt['arf_field_order'] = json_encode($final_field_order);
$newOpt['arf_inner_field_order'] = json_encode( $final_inner_field_order );
$newOpt['arf_inner_field_resize_width'] = json_encode( $updated_inner_field_resize_width );
$general_option['options'] = maybe_serialize($newOpt);
$new_values = array();
foreach (maybe_unserialize($cssoptions) as $k => $v) {
if (( preg_match('/color/', $k) or in_array($k, array('arferrorbgsetting', 'arferrorbordersetting', 'arferrortextsetting')) ) && !in_array($k, array('arfcheckradiocolor'))) {
$new_values[$k] = str_replace('#', '', $v);
} else {
$new_values[$k] = $v;
}
}
$new_values1 = maybe_serialize($new_values);
if (!empty($new_values)) {
$query_results = wp_cache_get('arf_import_css_'.$form_id);
if( false === $query_results ){
$query_results = $wpdb->query($wpdb->prepare("update " . $MdlDb->forms . " set form_css = '%s' where id = '%d'", $cssoptions_db, $form_id));
wp_cache_set('arf_import_css_'.$form_id, $query_results, '', 60);
}
$use_saved = $saving = true;
$arfssl = (is_ssl()) ? 1 : 0;
$loaded_field = $type_array;
$form = $arfform->getOne( $form_id );
$common_file_name = FORMPATH . '/core/css_create_common.php';
$rtl_file_name = FORMPATH . '/core/css_create_rtl.php';
$form->form_css = maybe_unserialize( $form->form_css );
if( 'standard' == $arfinputstyle || 'rounded' == $arfinputstyle ){
$filename = FORMPATH . '/core/css_create_main.php';
$wp_upload_dir = wp_upload_dir();
$target_path = $wp_upload_dir['basedir'] . '/arforms/maincss';
$css = $warn = "/* WARNING: Any changes made to this file will be lost when your ARForms settings are updated */";
$css .= "\n";
if (ob_get_length())
ob_end_flush();
ob_start();
include $filename;
include $common_file_name;
if( is_rtl() ){
include $rtl_file_name;
}
$css .= ob_get_contents();
ob_end_clean();
$css .= "\n " . $warn;
$css_file = $target_path . '/maincss_' . $form_id . '.css';
$css = str_replace('##','#',$css);
if (!file_exists($css_file)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file, $css, 0777);
} else if (is_writable($css_file)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file, $css, 0777);
} else {
$error = 'File Not writable';
}
} else if( 'material' == $arfinputstyle ){
$filename1 = FORMPATH . '/core/css_create_materialize.php';
$wp_upload_dir = wp_upload_dir();
$target_path1 = $wp_upload_dir['basedir'] . '/arforms/maincss';
$css1 = $warn1 = "/* WARNING: Any changes made to this file will be lost when your ARForms settings are updated */";
$css1 .= "\n";
if (ob_get_length())
ob_end_flush();
ob_start();
include $filename1;
include $common_file_name;
if( is_rtl() ){
include $rtl_file_name;
}
$css1 .= ob_get_contents();
ob_end_clean();
$css1 .= "\n " . $warn1;
$css_file1 = $target_path1 . '/maincss_materialize_' . $form_id . '.css';
$css1 = str_replace('##','#',$css1);
if (!file_exists($css_file1)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file1, $css1, 0777);
} else if (is_writable($css_file1)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file1, $css1, 0777);
} else {
$error = 'File Not writable';
}
} else if( 'material_outlined' == $arfinputstyle ){
$filename2 = FORMPATH . '/core/css_create_materialize_outline.php';
$wp_upload_dir = wp_upload_dir();
$target_path1 = $wp_upload_dir['basedir'] . '/arforms/maincss';
$css2 = $warn2 = "/* WARNING: Any changes made to this file will be lost when your ARForms settings are updated */";
$css2 .= "\n";
if (ob_get_length())
ob_end_flush();
ob_start();
include $filename2;
include $common_file_name;
if( is_rtl() ){
include $rtl_file_name;
}
$css2 .= ob_get_contents();
ob_end_clean();
$css2 .= "\n " . $warn2;
$css_file2 = $target_path1 . '/maincss_materialize_outlined_' . $form_id . '.css';
$css2 = str_replace('##','#',$css2);
if (!file_exists($css_file2)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file2, $css2, 0777);
} else if (is_writable($css_file2)) {
WP_Filesystem();
global $wp_filesystem;
$wp_filesystem->put_contents($css_file2, $css2, 0777);
} else {
$error = 'File Not writable';
}
}
}
else {
$query_results = true;
}
//code end here.
//code start here for update autoresponder maping variables and update in satabase..
ob_start();
$autoresponder_fname_ses = isset($_SESSION['arf_fields'][$autoresponder_fname]) ? $_SESSION['arf_fields'][$autoresponder_fname] : '';
$autoresponder_lname_ses = isset($_SESSION['arf_fields'][$autoresponder_lname]) ? $_SESSION['arf_fields'][$autoresponder_lname] : '';
$autoresponder_email_ses = isset($_SESSION['arf_fields'][$autoresponder_email]) ? $_SESSION['arf_fields'][$autoresponder_email] : '';
$autoresponder_fname = (isset($autoresponder_fname) and $autoresponder_fname_ses != '' ) ? $autoresponder_fname_ses : '';
$autoresponder_lname = (isset($autoresponder_lname) and $autoresponder_lname_ses != '') ? $autoresponder_lname_ses : '';
$autoresponder_email = (isset($autoresponder_email) and $autoresponder_email_ses != '') ? $autoresponder_email_ses : '';
$wpdb->update($MdlDb->forms, array('autoresponder_fname' => arf_sanitize_value($autoresponder_fname), 'autoresponder_lname' => arf_sanitize_value($autoresponder_lname), 'autoresponder_email' => arf_sanitize_value($autoresponder_email,'email')), array('id' => $form_id));
$wpdb->update($MdlDb->forms, array('options' => $general_option['options'],'temp_fields'=>maybe_serialize($new_temp_field)), array('id' => $form_id));
$sel_rec = $wpdb->prepare("select options from " . $MdlDb->forms . " where id = %d", $form_id);
$res_rec = $wpdb->get_results($sel_rec, 'ARRAY_A');
$opt = $res_rec[0]['options'];
$arf_formfield_other_css = $option_arr_new['arf_form_other_css'];
foreach ($new_id_array as $id_info_arr) {
$arf_formfield_other_css = stripslashes(str_replace($id_info_arr['old_id'], $id_info_arr['new_id'], $arf_formfield_other_css ));
}
$arf_form_other_css = stripslashes( str_replace( $old_form_id, $form_id, $arf_formfield_other_css) );
$form_custom_css = stripslashes(str_replace($old_form_id, $form_id, $val_main->form_custom_css));
$form_custom_css = str_replace('[REPLACE_SITE_URL]', site_url(), $form_custom_css);
$form_custom_css = str_replace('[ENTERKEY]', '<br>', $form_custom_css);
$option_arr_new = maybe_unserialize($opt);
$option_arr_new['form_custom_css'] = $form_custom_css;
$option_arr_new['arf_form_other_css'] = $arf_form_other_css;
$option_arr_new['ar_email_subject'] = isset($ar_email_subject) ? $ar_email_subject : '';
$option_arr_new['ar_email_message'] = isset($ar_email_message) ? $ar_email_message : '';
$option_arr_new['ar_admin_email_message'] = isset($ar_admin_email_message) ? $ar_admin_email_message : '';
$option_arr_new['ar_email_to'] = isset($ar_email_to) ? $ar_email_to : '';
$option_arr_new['ar_admin_from_email'] = isset($ar_admin_from_email) ? $ar_admin_from_email : '';
$option_arr_new['ar_user_from_email'] = isset($ar_user_from_email) ? $ar_user_from_email : '';
$option_arr_new['ar_admin_from_name'] = isset($ar_admin_from_name) ? $ar_admin_from_name : '';
$option_arr_new['admin_email_subject'] = isset($admin_email_subject) ? $admin_email_subject : '';
$option_arr_new['arf_pre_dup_field'] = isset($arf_pre_dup_field) ? $arf_pre_dup_field : '';
$option_arr_new['reply_to'] = $reply_to;
if ($val_main->site_url != site_url()) {
$option_arr_new['success_action'] = isset($option_arr_new['success_action']) ? $option_arr_new['success_action'] : '';
if ($option_arr_new['success_action'] == 'page')
$option_arr_new['success_action'] = 'message';
}
$submit_coditional_logic_rules = array();
$conditional_logic_new_fields = array();
$conditional_logic_res_fields = array();
if (count($_SESSION['arf_fields']) > 0 and is_array($_SESSION['arf_fields'])) {
if (!empty($option_arr_new['submit_conditional_logic']) && $option_arr_new['submit_conditional_logic']['enable'] == '1' && count($option_arr_new['submit_conditional_logic']['rules']) > 0) {
foreach ($_SESSION['arf_fields'] as $original_id => $field_new_id) {
foreach ($option_arr_new['submit_conditional_logic']['rules'] as $new_rule) {
if ($new_rule['field_id'] == $original_id) {
$sub_cl_field_id = $field_new_id;
$sub_cl_field_type = $new_rule['field_type'];
$field_type_db = wp_cache_get('arf_import_form_field_'.$sub_cl_field_id);
if( false == $field_type_db ){
$field_type_db = $wpdb->get_row($wpdb->prepare("SELECT type FROM `".$MdlDb->fields."` WHERE id = %d",$sub_cl_field_id) );
wp_cache_set('arf_import_form_field_'.$sub_cl_field_id, $field_type_db, '', 60);
}
if( isset($field_type_db) && isset($field_type_db->type) && $sub_cl_field_type != $field_type_db ){
$new_rule['field_type'] = $field_type_db->type;
}
$submit_coditional_logic_rules[$new_rule['id']] = array(
'id' => $new_rule['id'],
'field_id' => $field_new_id,
'field_type' => $new_rule['field_type'],
'operator' => $new_rule['operator'],
'value' => $new_rule['value'],
);
array_push($conditional_logic_new_fields,$new_rule['field_id']);
}
}
}
}
}
if (isset($submit_coditional_logic_rules) && !empty($submit_coditional_logic_rules)) {
$option_arr_new['submit_conditional_logic']['rules'] = $submit_coditional_logic_rules;
}
/* added for conditional mail rules */
$arf_conditional_mail_rules = array();
if (isset($_SESSION['arf_conditional_mail_rules']) && count($_SESSION['arf_conditional_mail_rules']) > 0 and is_array($_SESSION['arf_conditional_mail_rules'])) {
if (!empty($option_arr_new['arf_conditional_mail_rules'])) {
foreach ($option_arr_new['arf_conditional_mail_rules'] as $new_rule) {
$_SESSION['arf_fields'][$new_rule['field_id_mail']] = isset($_SESSION['arf_fields'][$new_rule['field_id_mail']]) ? $_SESSION['arf_fields'][$new_rule['field_id_mail']] : '';
$_SESSION['arf_fields'][$new_rule['send_mail_field']] = isset($_SESSION['arf_fields'][$new_rule['send_mail_field']]) ? $_SESSION['arf_fields'][$new_rule['send_mail_field']] : '';
$cl_email_field_id = $_SESSION['arf_fields'][$new_rule['field_id_mail']];
$cl_email_field_type = $new_rule['field_type_mail'];
$email_field_type = wp_cache_get('arf_import_form_field_'.$cl_email_field_id);
if( false == $email_field_type ){
$email_field_type = $wpdb->get_row($wpdb->prepare("SELECT type FROM `".$MdlDb->fields."` WHERE id = %d",$cl_email_field_id));
wp_cache_set('arf_import_form_field_'.$cl_email_field_id, $email_field_type, '', 60);
}
if( isset($email_field_type) && isset($email_field_type->type) && $email_field_type->type != $cl_email_field_type ){
$new_rule['field_type_mail'] = $email_field_type->type;
}
$arf_conditional_mail_rules[$new_rule['id_mail']] = array(
'id_mail' => $new_rule['id_mail'],
'field_id_mail' => $_SESSION['arf_fields'][$new_rule['field_id_mail']],
'field_type_mail' => $new_rule['field_type_mail'],
'operator_mail' => $new_rule['operator_mail'],
'value_mail' => $new_rule['value_mail'],
'send_mail_field' => $_SESSION['arf_fields'][$new_rule['send_mail_field']]
);
}
}
}
if (isset($arf_conditional_mail_rules) && !empty($arf_conditional_mail_rules)) {
$option_arr_new['arf_conditional_mail_rules'] = $arf_conditional_mail_rules;
}
/* for conditional logic new */
$conditional_logic = isset($option_arr_new['arf_conditional_logic_rules']) ? $option_arr_new['arf_conditional_logic_rules'] : array();
/* remove conditional logic condition because conditional logic doesnt set in arformslite */
$option_arr_new = maybe_serialize(apply_filters('arf_import_update_field_outside', $option_arr_new, $_SESSION['arf_fields'], $form_id));
$wpdb->update($MdlDb->forms, array('options' => $option_arr_new), array('id' => $form_id));
if( isset($conditional_logic_new_fields) && count($conditional_logic_new_fields) > 0 ){
$conditional_logic_new_fields = array_unique($conditional_logic_new_fields);
foreach( $conditional_logic_new_fields as $ncfk => $new_cl_field_id){
$wpdb->update($MdlDb->fields,array('conditional_logic'=> arf_sanitize_value(1,'number')),array('id'=>$new_cl_field_id));
}
}
global $wpdb, $MdlDb;
$res = get_option('arf_ar_type');
$res1 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 3), 'ARRAY_A');
$res2 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 1), 'ARRAY_A');
$res3 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 4), 'ARRAY_A');
$res4 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 5), 'ARRAY_A');
$res5 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 6), 'ARRAY_A');
$res6 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 8), 'ARRAY_A');
$res7 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 9), 'ARRAY_A');
$res11 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 10), 'ARRAY_A');
$res14 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 14), 'ARRAY_A');
$res15 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 15), 'ARRAY_A');
$res16 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 16), 'ARRAY_A');
$res17 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 17), 'ARRAY_A');
$res18 = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->autoresponder . " WHERE responder_id = %d", 18), 'ARRAY_A');
if (isset($res1[0]['responder_api_key']) && $res1[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->aweber )) {
foreach ($val_main->autoresponder->aweber->children() as $autores_key1 => $autores_val1) {
$aweber_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$aweber_arr['enable'] = '';
$aweber_arr['is_global'] = 1;
$aweber_arr['type'] = '';
$aweber_arr['type_val'] = '';
}
$aweber = maybe_serialize($aweber_arr);
if (isset($res2[0]['responder_api_key']) && $res2[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->mailchimp )) {
foreach ($val_main->autoresponder->mailchimp->children() as $autores_key1 => $autores_val1) {
$mailchimp_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$mailchimp_arr['enable'] = '';
$mailchimp_arr['is_global'] = 1;
$mailchimp_arr['type'] = '';
$mailchimp_arr['type_val'] = '';
}
$mailchimp = maybe_serialize($mailchimp_arr);
if (isset($res3[0]['responder_api_key']) && $res3[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->getresponse )) {
foreach ($val_main->autoresponder->getresponse->children() as $autores_key1 => $autores_val1) {
$getresponse_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$getresponse_arr['enable'] = '';
$getresponse_arr['is_global'] = 1;
$getresponse_arr['type'] = '';
$getresponse_arr['type_val'] = '';
}
$getresponse = maybe_serialize($getresponse_arr);
if (isset($res4[0]['responder_api_key']) && $res4[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->gvo )) {
foreach ($val_main->autoresponder->gvo->children() as $autores_key1 => $autores_val1) {
$gvo_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$gvo_arr['enable'] = '';
$gvo_arr['is_global'] = 1;
$gvo_arr['type'] = '';
$gvo_arr['type_val'] = '';
}
$gvo = maybe_serialize($gvo_arr);
if (isset($res5[0]['responder_api_key']) && $res5[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->ebizac )) {
foreach ($val_main->autoresponder->ebizac->children() as $autores_key1 => $autores_val1) {
$ebizac_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$ebizac_arr['enable'] ='';
$ebizac_arr['is_global'] = 1;
$ebizac_arr['type'] = '';
$ebizac_arr['type_val'] = '';
}
$ebizac = maybe_serialize($ebizac_arr);
if (isset($res6[0]['responder_api_key']) && $res6[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->icontact ) ) {
foreach ($val_main->autoresponder->icontact->children() as $autores_key1 => $autores_val1) {
$icontact_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$icontact_arr['enable'] ='';
$icontact_arr['is_global'] = 1;
$icontact_arr['type'] = '';
$icontact_arr['type_val'] = '';
}
$icontact = maybe_serialize($icontact_arr);
if ( isset($res7[0]['responder_api_key']) && $res7[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->constant_contact ) ) {
foreach ($val_main->autoresponder->constant_contact->children() as $autores_key1 => $autores_val1) {
$constant_contact_arr[$autores_key1] = (string) trim($autores_val1);
}
} else {
$constant_contact_arr['enable'] = '';
$constant_contact_arr['is_global'] = 1;
$constant_contact_arr['type'] ='';
$constant_contact_arr['type_val'] = '';
}
$constant_contact = maybe_serialize($constant_contact_arr);
if (isset($res17[0]['responder_api_key']) && $res17[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->convertkit ) ) {
foreach ($val_main->autoresponder->convertkit->children() as $autores_key1 => $autores_val1) {
$convertkit_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$convertkit_arr['enable'] = '';
$convertkit_arr['is_global'] = 1;
$convertkit_arr['type'] ='';
}
$convertkit = maybe_serialize($convertkit_arr);
if (isset($res16[0]['responder_api_key']) && $res16[0]['responder_api_key'] != '' && isset( $val_main->autoresponder->sendinblue )) {
foreach ($val_main->autoresponder->sendinblue->children() as $autores_key1 => $autores_val1) {
$sendinblue_arr[$autores_key1] = (string) trim($autores_val1);
}
}else{
$sendinblue_arr['enable'] = '';
$sendinblue_arr['is_global'] = 1;
$sendinblue_arr['type'] = '';
}
$sendinblue = maybe_serialize($sendinblue_arr);
if( !empty( $res18[0]['responder_api_key'] ) && isset( $val_main->autoresponder->drip ) ){
foreach( $val_main->autoresponder->drip->children() as $autores_key1 => $autores_val1 ){
$drip_arr[$autores_key1] = (string) trim( $autores_val1 );
}
} else {
$drip_arr['enable'] = '';
$drip_arr['is_global'] = 1;
$drip_arr['type'] = '';
}
$drip = maybe_serialize( $drip_arr );
$frm_id = $form_id;
$update = $wpdb->query($wpdb->prepare("insert into " . $MdlDb->ar . " (aweber ,mailchimp, getresponse, gvo, ebizac,icontact, constant_contact, enable_ar, frm_id) values ('%s', '%s','%s', '%s', %s, '%s', '%s', '%s', '%d')", $aweber, $mailchimp, $getresponse, $gvo, $ebizac, $icontact, $constant_contact, maybe_serialize(json_decode(trim($val_main->autoresponder->enable_ar),true)), $frm_id));
$id = isset($id) ? $id : '';
$record = isset($record) ? $record : '';
if ($id){
$resopt = $wpdb->get_row($wpdb->prepare("select * from " . $MdlDb->forms . " where id =%d",$id), 'ARRAY_A');
}
$resopt = isset($resopt) ? $resopt : array();
$opt = isset($resopt["form_css"]) ? $resopt["form_css"] : '';
$formname = isset($resopt["name"]) ? $resopt["name"] : '';
$description = isset($resopt["description"]) ? $resopt["description"] : '';
$autoresponder_fname = isset($resopt["autoresponder_fname"]) ? $resopt["autoresponder_fname"] : '';
$autoresponder_lname = isset($resopt["autoresponder_lname"]) ? $resopt["autoresponder_lname"] : '';
$autoresponder_email = isset($resopt["autoresponder_email"]) ? $resopt["autoresponder_email"] : '';
$update = $wpdb->query($wpdb->prepare("update " . $MdlDb->forms . " set name = '%s' , description = '%s', autoresponder_fname = '%s', autoresponder_lname = '%s', autoresponder_email = '%s', form_css = '%s' where id = '%d'", arf_sanitize_value($formname), arf_sanitize_value($description), arf_sanitize_value($autoresponder_fname), arf_sanitize_value($autoresponder_lname), arf_sanitize_value($autoresponder_email, 'email'), $opt, $record));
//code end here.
if (isset($val_main->form_entries) && count($val_main->form_entries->children()) > 0) {
include_once(FORMPATH . '/js/filedrag/simple_image.php');
global $user_ID, $wpdb;
$entry_values = array();
$entry_values_new = array();
$vls = array();
$entry_values['form_id'] = $frm_id;
if ($user_ID) {
$entry_values['user_id'] = $user_ID;
}
foreach ($val_main->form_entries->children() as $key_fields => $val_fields) {
$upload_files = array();
$entry_values['entry_key'] = $armainhelper->get_unique_key('', $MdlDb->entries, 'entry_key');
foreach ($val_fields as $key_field => $val_field) {
$field_nm = str_replace('_ARF_', ' ', (string)$val_field['field_label']);
$field_nm = str_replace('_ARF_SLASH_', '/', $field_nm);
if ($field_nm == 'Browser') {
$entry_values['browser_info'] = (string) $val_field;
} else if ($field_nm == 'Country') {
$entry_values['country'] = (string) $val_field;
} else if ($field_nm == "Created Date") {
$entry_values['created_date'] = (string) $val_field;
} else if ($field_nm == "IP Address") {
$entry_values['ip_address'] = (string) $val_field;
} else if ($field_nm == "Submit Type") {
$vls['form_display_type'] = (string) trim($val_field);
} else {
$field_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $MdlDb->fields . " WHERE form_id = %d", $frm_id));
foreach ($field_data as $k => $v) {
if ($v->name == $field_nm) {
$field_type = $val_field->attributes();
$entry_value = array();
if ($field_type['field_type'] == 'file' && $v->type == 'file' && trim($val_field) != '' ) {
$old_values_field = explode('|', trim($val_field));
foreach ($old_values_field as $old_val_field) {
$newfilename = (string) $old_val_field;
$image_url = $newfilename;
$img_url = explode('/', $image_url);
$img_url = $img_url[count($img_url) - 1];
$file_upload_field_key = $v->field_key;
/******/
$new_file = basename($newfilename);
$full_image_name = pathinfo($newfilename);
$image_name = arf_sanitize_value($full_image_name['filename']);
$image_extention = arf_sanitize_value($full_image_name['extension']);
$file_path = $arformhelper->get_file_upload_path();
$file_path = $arformhelper->replace_file_upload_path_shrtcd($file_path, $form_id);
$upload_baseurl = get_home_url() . "/" . $file_path;
$upload_basepath = ABSPATH . $file_path;
$image_path = $upload_baseurl . $new_file;
$image_path1 = $upload_basepath . $new_file;
$info = getimagesize($image_path1);
$mime_type = arf_sanitize_value($info['mime']);
$args = array("post_title" => $image_name . '.' . $image_extention, 'post_name' => $image_name, 'post_type' => 'attachment', 'post_mime_type' => $mime_type, "guid" => $image_path);
$entry_value[] = $lastid = wp_insert_post($args);
$path = '';
if (preg_match('/image\//', $mime_type)) {
$path = $file_path;
$uploading_image = new SimpleImage();
$uploading_image->load($upload_basepath . $new_file);
$uploading_image->resizeToHeight(100);
$uploading_image->save($upload_basepath . 'thumbs/' . $new_file);
}
else {
$path = $file_path . "thumbs/";
}
$wpdb->query($wpdb->prepare("insert into " . $wpdb->prefix . "postmeta (post_id,meta_key,meta_value) values ('%d','_wp_attached_file','%s')", $lastid, $path . $new_file));
}
$entry_values_new ['item_meta'][$v->id] = implode('|', $entry_value);
$entry_value = array();
} else {
if (strtolower($field_type) == 'checkbox') {
$values = explode('^|^', (string) $val_field);
$entry_values_new['item_meta'][$v->id] = array_map('trim',$values);
} else {
$entry_values_new['item_meta'][$v->id] = (string) trim($val_field);
}
}
}
}
}
$referrerinfo = $armainhelper->get_referer_info();
$entry_values['browser_info'] = isset($entry_values['browser_info']) ? $entry_values['browser_info'] : '';
$entry_values['description'] = maybe_serialize(array('browser' => $entry_values['browser_info'], 'referrer' => $referrerinfo));
}
$create_entry = true;
if ($create_entry) {
$query_results = $wpdb->insert($MdlDb->entries, $entry_values);
}
if (isset($query_results) and $query_results) {
$entry_id = $wpdb->insert_id;
global $arfsavedentries;
$arfsavedentries[] = (int) $entry_id;
if (isset($vls['form_display_type']) and $vls['form_display_type'] != '') {
global $wpdb;
$arf_meta_insert = array(
'entry_value' => arf_sanitize_value($vls['form_display_type']),
'field_id' => arf_sanitize_value(0,'integer'),
'entry_id' => arf_sanitize_value($entry_id, 'integer'),
'created_date' => current_time('mysql'),
);
$wpdb->insert($wpdb->prefix . 'arf_entry_values', $arf_meta_insert, array('%s', '%d', '%d', '%s'));
}
if (isset($entry_values_new['item_meta']))
$arfrecordmeta->update_entry_metas($entry_id, $entry_values_new['item_meta']);
}
}
}
}
}
?>
<script type="text/javascript" language="javascript"> setTimeout(function () {
success_msg();
}, 10);</script>
<div id="success_message" class="arf_success_message">
<div class="message_descripiton">
<div style="float: left; margin-right: 15px;"><?php echo addslashes(esc_html__('Form is imported successfully.', 'ARForms')); ?></div>
<div class="message_svg_icon">
<svg style="height: 14px;width: 14px;">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M6.075,14.407l-5.852-5.84l1.616-1.613l4.394,4.385L17.181,0.411l1.616,1.613L6.392,14.407H6.075z"></path>
</svg>
</div>
</div>
</div>
<?php
} else {
?>
<script type="text/javascript" language="javascript"> setTimeout(function () {
error_msg();
}, 10);</script>
<div id="error_message" class="arf_error_message">
<div class="message_descripiton">
<div style="float: left; margin-right: 15px;" id=""><?php echo addslashes(esc_html__('File is not proper.', 'ARForms')); ?></div>
<div class="message_svg_icon">
<svg style="height: 14px;width: 14px;"><path fill-rule="evenodd" clip-rule="evenodd" fill="#ffffff" d="M10.702,10.909L6.453,6.66l-4.249,4.249L1.143,9.848l4.249-4.249L1.154,1.361l1.062-1.061l4.237,4.237l4.238-4.237l1.061,1.061L7.513,5.599l4.249,4.249L10.702,10.909z"></path></svg>
</div>
</div>
</div>
<?php
}
}
}
?>
<div style="clear:both"></div>
<div class="modal-body" style="clear:both;padding:15px;">
<div class="opt_export_div">
<label style="font-size:16px;cursor:auto;"><span></span>
<span class="lbltitle"><?php echo esc_html__('Export Form(s)', 'ARForms'); ?> / <?php echo addslashes(esc_html__('Entries', 'ARForms')); ?></span>
</label>
<span class="arf_helptip_container">
<a href="<?php echo ARFURL; ?>/documentation/index.html#import_export" target="_blank" title="" class="arf_adminhelp_icon">
<svg width="30px" height="30px" viewBox="0 0 26 32" class="arfsvgposition arfhelptip tipso_style" data-tipso="help" title="help">
<?php echo ARF_LIFEBOUY_ICON;?>
</svg>
</a>
</span>
</div>
<div style="clear:both; margin-top:20px;"></div>
<div class="export_opt_part" id="export_opt_part" style="display:block; margin-left:15px;">
<?php $plugin_url_list = plugin_dir_url(__FILE__); ?>
<form id="exportForm" onSubmit="return check_import_form_selected();" method="post">
<input type="hidden" value="<?php echo site_url() . '/index.php?plugin=ARForms'; ?>" name="ARFSCRIPTURL_cus" id="ARFSCRIPTURL_cus" />
<div id="export_forms" class="export_forms" >
<div class="export_options" style="padding-left:93px;<?php echo (is_rtl()) ? 'float:right;width:100%;margin-bottom:4px;' : 'float:left;width:100%;margin-bottom:4px;';?>">
<div class="arf_radio_wrapper">
<div class="arf_custom_radio_div" >
<div class="arf_custom_radio_wrapper">
<input type="radio" class="arf_submit_action arf_custom_radio" name="opt_export" id="opt_export_form" value="opt_export_form" checked="checked" />
<svg width="18px" height="18px">
<?php echo ARF_CUSTOM_UNCHECKEDRADIO_ICON; ?>
<?php echo ARF_CUSTOM_CHECKEDRADIO_ICON; ?>
</svg>
</div>
</div>
<span>
<label for="opt_export_form"><?php echo addslashes(esc_html__('Form(s) Only', 'ARForms')); ?></label>
</span>
</div>
<div class="arf_radio_wrapper">
<div class="arf_custom_radio_div" >
<div class="arf_custom_radio_wrapper">
<input type="radio" class="arf_submit_action arf_custom_radio" name="opt_export" id="opt_export_entries" value="opt_export_entries" />
<svg width="18px" height="18px">
<?php echo ARF_CUSTOM_UNCHECKEDRADIO_ICON; ?>
<?php echo ARF_CUSTOM_CHECKEDRADIO_ICON; ?>
</svg>
</div>
</div>
<span>
<label for="opt_export_entries"><?php echo addslashes(esc_html__('Entries Only', 'ARForms')); ?></label>
</span>
</div>
<div class="arf_radio_wrapper" style="<?php echo (!is_rtl()) ? 'width:60%;' : '';?>">
<div class="arf_custom_radio_div" >
<div class="arf_custom_radio_wrapper">
<input type="radio" class="arf_submit_action arf_custom_radio" name="opt_export" id="opt_export_both" value="opt_export_both" />
<svg width="18px" height="18px">
<?php echo ARF_CUSTOM_UNCHECKEDRADIO_ICON; ?>
<?php echo ARF_CUSTOM_CHECKEDRADIO_ICON; ?>
</svg>
</div>
</div>
<span>
<label for="opt_export_both"><?php echo addslashes(esc_html__('Forms + Entries', 'ARForms')); ?></label>
</span>
</div>
</div>
<table class="form-table">
<tr id="send_attachment_with_xml" style="display:none;">
<td style="<?php echo (is_rtl()) ? 'padding-right:90px;' : 'padding-left:90px;';?>">
<label class="lblnotetitle" style="<?php echo (is_rtl()) ? 'float:right;' : 'float:left;';?>margin-bottom:5px;"><?php echo sprintf(esc_html__("( Please note that entries' attachment will not be exported.You have to copy %s folder manualy to your new location where you are going to import this setting. )", 'ARForms'),'<b>wp_content/uploads/arforms/userfiles</b>'); ?></label>
</td>
</tr>
<tr>
<td colspan="2">
<span class="lblsubtitle selection_msg lblnotetitle" style="<?php echo (is_rtl()) ? 'width: 135px;margin-right: 0px;float:right;margin-left: 42px;' : 'width: 135px;float:left;margin-left: -56px;';?>">
<?php echo esc_html__('Please Select Form', 'ARForms'); ?>
</span>
<div class="" style="<?php echo (is_rtl()) ? 'float:right; width:250px; font-size:15px;text-align:right;margin-right: -29px;margin-top:2px;' : 'float:left; width:250px; font-size:15px;text-align:left;margin-top:2px;';?>">
<?php $arformhelper->forms_dropdown_new('frm_add_form_id', '', 'Select form', '', '', 'mutliple', 1, 1, 'arf_import_export_dropdown') ?>
</div>
<div id="arf_xml_select_form_error" style="clear: both;height:29px; width:360px; text-align:right; line-height:29px;font-weight:bold;display:none;color:#FF0000;"><?php echo esc_html__('Please Select Form', 'ARForms'); ?></div>
</td>
</tr>
<tr class="display_form_import_export_data" style="display:none;">
<td colspan="2">
<span class="lblsubtitle lblnotetitle" style="<?php echo (is_rtl()) ? 'width: 135px;margin-right: 0px;float:right;margin-left: 42px;' : 'width: 130px;float:left;margin-left:-58px; margin-top:15px;';?>">
<?php echo addslashes(esc_html__('Select Date', 'ARForms')); ?> (<?php echo addslashes(esc_html__('optional', 'ARForms')); ?>)
</span>
<?php
if (is_rtl()) {
$sel_frm_date_wrap = 'float:right;text-align:right;';
$sel_frm_sel_date = 'float:right;';
$sel_frm_button = 'float:right;';
} else {
$sel_frm_date_wrap = 'float:left;text-align:left; width:310px; display:grid;';
$sel_frm_sel_date = 'float:left;';
$sel_frm_button = 'float:left;';
}
?>
<div style="position:relative;<?php echo $sel_frm_date_wrap; ?>">
<div style="<?php echo $sel_frm_sel_date; ?>position: relative;left:5px;">
<div class="arfentrytitle arf_import_export_form_cls"><?php echo addslashes(esc_html__('From', 'ARForms')); ?></div>
<div class="arfentrytitle arf_import_export_to_cls"><?php echo addslashes(esc_html__('To', 'ARForms')); ?></div>
</div>
<div style="margin-left:5px;">
<div style="position:relative; float:left;">
<input type="text" class="txtmodal1 arf_import_export_input_cls" id="datepicker_from3" name="datepicker_from3" value="" autocomplete="off"/></div>
<div style="position:relative; float:right;">
<input type="text" class="txtmodal1 arf_import_export_input_to_cls" id="datepicker_to3" name="datepicker_to3" value="" autocomplete="off"/></div>
</div>
</div>
<div id="arf_xml_select_date_error" class="arf_import_export_error" ><?php echo esc_html__('Entry not found for selected time period', 'ARForms'); ?></div>
</td>
</tr>
<tr class="display_form_entry_separator" style="display:none;">
<td colspan="2">
<span class="lblsubtitle" style="<?php echo (is_rtl()) ? 'width: 135px;margin-right: 0px;float:right;margin-left: 42px;' : 'width: 135px;float:left;margin-left: -56px;';?>">
<?php echo addslashes(esc_html__('CSV File Separator', 'ARForms')); ?>
</span>
<div class="arf_radio_wrapper">
<div class="arf_custom_radio_div" >
<div class="arf_custom_radio_wrapper">
<input type="radio" name="arfexportentryseparator" id="arf_comma_separate" class="arf_submit_action arf_custom_radio" value="arf_comma" <?php checked(get_option('arf_form_entry_separator'), 'arf_comma') ?>/>
<svg width="18px" height="18px">
<?php echo ARF_CUSTOM_UNCHECKEDRADIO_ICON; ?>
<?php echo ARF_CUSTOM_CHECKEDRADIO_ICON; ?>
</svg>
</div>
</div>
<span>
<label for="arf_comma_separate"><?php echo addslashes(esc_html__('Comma ( , )', 'ARForms')); ?></label>
</span>
</div>
<div class="arf_radio_wrapper">
<div class="arf_custom_radio_div" >
<div class="arf_custom_radio_wrapper">
<input type="radio" name="arfexportentryseparator" id="arf_semicolon_separate" class="arf_submit_action arf_custom_radio" value="arf_semicolon" <?php checked(get_option('arf_form_entry_separator'), 'arf_semicolon'); ?> />
<svg width="18px" height="18px">
<?php echo ARF_CUSTOM_UNCHECKEDRADIO_ICON; ?>
<?php echo ARF_CUSTOM_CHECKEDRADIO_ICON; ?>
</svg>
</div>
</div>
<span>
<label for="arf_semicolon_separate"><?php echo addslashes(esc_html__('Semicolon ( ; )', 'ARForms')); ?></label>
</span>
</div>
<div class="arf_radio_wrapper">
<div class="arf_custom_radio_div" >
<div class="arf_custom_radio_wrapper">
<input type="radio" name="arfexportentryseparator" id="arf_pipe_separate" class="arf_submit_action arf_custom_radio" value="arf_pipe" <?php checked(get_option('arf_form_entry_separator'), 'arf_pipe') ?>/>
<svg width="18px" height="18px">
<?php echo ARF_CUSTOM_UNCHECKEDRADIO_ICON; ?>
<?php echo ARF_CUSTOM_CHECKEDRADIO_ICON; ?>
</svg>
</div>
</div>
<span>
<label for="arf_pipe_separate"><?php echo addslashes(esc_html__('Pipe ( | )', 'ARForms')); ?></label>
</span>
</div>
</td>
</tr>
<br>
<tr>
<td colspan="2" style="<?php echo (is_rtl()) ? 'padding-right:93px;' : 'padding-left:93px;';?>">
<input type="hidden" id="arf_export_action" name="s_action" value="opt_export_form">
<input name="export_button" type="submit" id="export_button" class="rounded_button arf_btn_dark_blue arfexportbtn" value="<?php echo addslashes(esc_html__('Export', 'ARForms')); ?>">
</td>
</tr>
</table>
</form>
</div>
<br />
<div style="width:100%; margin-top:10px; border-bottom:1px solid #E3E4E7;"></div>
<br />
<div style="width: 100%;height: 100%;display: inline-block;">
<div class="opt_import_div" style="<?php echo (is_rtl()) ? 'float:right;' : 'float:left;';?>">
<label style="font-size:15px;cursor:auto;"><span></span>
<span class="lbltitle"><?php echo esc_html__('Import Form(s)', 'ARForms'); ?></span>
</label>
<br /><br />
</div>
<div class="import_opt_part" id="import_opt_part" style="display:block;margin-top:-9px;">
<form action="" method="post" enctype="multipart/form-data" >
<table class="form-table">
<tr>
<td colspan="2"><span class="lblsubtitle" style="width: 130px;<?php echo (is_rtl()) ? 'float:right;' : 'float:left;';?>"><?php echo addslashes(esc_html__('Exported File Content', 'ARForms')); ?></span>
<textarea id="arf_import_textarea" cols="100" rows="15" name="arf_import_textarea" class="txtmultimodal1 text_area_import_export_page" style="overflow:hidden;width: 450px !important;height: 170px;<?php echo (is_rtl()) ? 'float:right;' : 'float:left;';?>"></textarea>
<div class="arf_tooltip_main" style=""><img src="<?php echo ARFIMAGESURL ?>/tooltips-icon.png" alt="?" class="arfhelptip tipso_style" title="<?php echo addslashes(esc_html__('Please open your exported file, copy entire content & paste it here.', 'ARForms')); ?>" data-tipso="<?php echo addslashes(esc_html__('Please open your exported file, copy entire content & paste it here.', 'ARForms')); ?>" style="margin-left:10px; margin-top:4px;"/></div>
<div class="arf_import_textarea_error_wrapper">
<span id="arf_import_content_null" class="arf_importerr"><?php echo addslashes(esc_html__('Please enter content','ARForms'));?></span>
</div>
</td>
</tr>
<tr style="margin-top:10px;">
<td></td>
<td></td>
</tr>
<tr>
<td style="padding:0;">
<input type="hidden" name="arf_xml_file_name" id="arf_xml_file_name" value="" /><input type="hidden" name="arf_import_disable" id="arf_import_disable" value="1" /><input type="hidden" name="arf_nonce" value="<?php echo wp_create_nonce( 'arf_import_form' ); ?>" />
<input type="submit" id="arf_import_btn" name="arf_import_btn" class="rounded_button arf_btn_dark_blue arf_importbtn" value="<?php echo addslashes(esc_html__('Import', 'ARForms')); ?>" style="margin-left: 144px"> <span id="import_loader" style="display:none; margin-left:10px;"><img src="<?php echo ARFURL . '/images/loading_299_1.gif'; ?>" height="15" /></span>
</td>
</tr>
</table>
</form>
</div>
</div>
<br />
</div>
</div>
</div>
</div>
</div>
<div class="documentation_link" align="right" style="clear:both;"><a href="<?php echo ARFURL; ?>/documentation/index.html" style="margin-right:10px;" target="_blank" class="arlinks">
<?php echo addslashes(esc_html__('Documentation', 'ARForms')); ?>
</a>|<a href="https://helpdesk.arpluginshop.com/submit-a-ticket/" style="margin-left:10px;" target="_blank" class="arlinks">
<?php echo addslashes(esc_html__('Support', 'ARForms')); ?>
</a></div>
</div>
<script type="text/javascript" data-cfasync="false">
jQuery(document).ready(function (options) {
jQuery(document).on('change','#frm_add_form_id_name',function(){
jQuery('#arf_xml_select_form_error').hide();
});
});
jQuery('#arf_import_zip').on('click', function (e) {
var value = jQuery('#import_form_old_version_file').val();
if(value == '')
{
jQuery('.arf_blank_file').css('display','block');
return false;
}
});
jQuery(document).ready(function () {
jQuery("#arf_import_btn").click(function () {
if (jQuery('#arf_import_disable').val() == 0) {
return false;
}
if (jQuery('#arf_import_textarea').val() == ''){
jQuery('#arf_import_textarea').css('border-color', "red");
jQuery('.arf_import_textarea_error_wrapper').show();
return false;
}
});
jQuery("#frm_add_form_id option:first").hide();
jQuery(document).on('click', 'input[name="opt_export"]', function () {
if (jQuery(this).val() == 'opt_export_entries') {
jQuery('.dt_dl').css('display', 'block');
jQuery('#is_single_form').val("1");
jQuery('.multiple_select_box').css('display', 'none');
jQuery('#frm_add_form_id').parent('div').css('float', 'left');
jQuery('.display_form_entry_separator').show();
jQuery('.display_form_import_export_data').show();
jQuery('.selection_msg').html('<?php echo addslashes(esc_html__('Please Select Form', 'ARForms')); ?>');
if(jQuery('body').hasClass('rtl')){
jQuery('.selection_msg').css('float', 'right');
}
else{
jQuery('.selection_msg').css('float', 'left');
}
} else {
if( jQuery(this).val() == 'opt_export_both'){
jQuery('.display_form_import_export_data').hide();
} else {
jQuery('.display_form_import_export_data').hide();
}
jQuery('#arf_xml_select_date_error').hide();
jQuery("#frm_add_form_id option:first").hide();
jQuery('.dt_dl').css('display', 'none');
jQuery('#is_single_form').val("0");
jQuery('.multiple_select_box').css('display', 'block');
jQuery('#frm_add_form_id').parent('div').css('float', 'left');
jQuery('.display_form_entry_separator').hide();
jQuery('.selection_msg').html('<?php echo addslashes(esc_html__('Select one or more form', 'ARForms')); ?>');
if(jQuery('body').hasClass('rtl')){
jQuery('.selection_msg').css('float', 'right');
}
else{
jQuery('.selection_msg').css('float', 'left');
}
}
});
jQuery(document).on('click', 'input[name="arfexportentryseparator"]', function () {
var separator = jQuery(this).val();
jQuery.ajax({
url: ajaxurl,
type: 'POST',
dataType: 'json',
data: "action=arf_change_entries_separator&separator=" + separator,
success: function (response) {
}
});
});
<?php
$wp_format_date = get_option('date_format');
if ($wp_format_date == 'F j, Y') {
$date_format_new = 'MMMM D, YYYY';
$start_date_new = 'January 01, 1970';
$end_date_new = 'December 31, 2050';
} else if($wp_format_date == 'Y-m-d'){
$date_format_new = 'YYYY-MM-DD';
$start_date_new = '1970-1-1';
$end_date_new = '2050-12-1';
} else if ($wp_format_date == 'm/d/Y') {
$date_format_new = 'MM/DD/YYYY';
$start_date_new = '01/01/1970';
$end_date_new = '12/31/2050';
} else if ($wp_format_date == 'd/m/Y') {
$date_format_new = 'DD/MM/YYYY';
$start_date_new = '01/01/1970';
$end_date_new = '31/12/2050';
} else if ($wp_format_date == 'Y/m/d') {
$date_format_new = 'DD/MM/YYYY';
$start_date_new = '01/01/1970';
$end_date_new = '31/12/2050';
} else {
$date_format_new = 'MM/DD/YYYY';
$start_date_new = '01/01/1970';
$end_date_new = '12/31/2050';
}
?>
var locale = jQuery("#locale").val();
jQuery("#datepicker_from3").datetimepicker({
useCurrent: true,
format: '<?php echo $date_format_new ;?>',
locale: locale,
minDate: moment('<?php echo $start_date_new;?>','<?php echo $date_format_new;?>'),
maxDate: moment('<?php echo $end_date_new;?>', '<?php echo $date_format_new;?>')
});
jQuery("#datepicker_to3").datetimepicker({
useCurrent: false,
format: '<?php echo $date_format_new ;?>',
locale: locale,
minDate: moment('<?php echo $start_date_new;?>','<?php echo $date_format_new;?>'),
maxDate: moment('<?php echo $end_date_new;?>', '<?php echo $date_format_new;?>')
});
jQuery("#datepicker_from3").on("dp.change", function (e) {
jQuery("#datepicker_to3").data("DateTimePicker").minDate(e.date);
});
jQuery("#datepicker_to3").on("dp.change", function (e) {
jQuery("#datepicker_from3").data("DateTimePicker").maxDate(e.date);
});
});
</script>