:  " >
:  " >
:  " >
:  " >
:  " >
:  " >
:  
:  " >
:  " >
:

  You can use only these HTML tags like p, h1, h2, h3, h4, h5, h6, b, em to make more visualize instructions.", "appointzilla"); ?>" >
   
: />       
:        
         

" style="width: 470px;">



" style="width: 470px;">



" style="width: 470px;">



" style="width: 470px;">



$_POST['CalendarSlotTime'], 'day_start_time' => $_POST['DayStartTime'], 'day_end_time' => $_POST['DayEndTime'], 'calendar_view' => $_POST['CalendarView'], 'calendar_start_day' => $_POST['CalendarStartDay'], 'booking_button_text' => $_POST['BookingButtonText'], 'booking_time_slot' => $_POST['BookingTimeSlot'], 'show_service_cost' => $_POST['ServiceCost'], 'show_service_duration' => $_POST['ServiceDuration'], 'apcal_booking_instructions' => $_POST['BookingInstructions'], ); update_option('apcal_calendar_settings', serialize($CalendarSettingsArray)); } /** * Saving Notification Settings */ if($Action == "save-notification-settings") { if( !wp_verify_nonce($_POST['wp_nonce_noti'],'appointment_noti_nonce_check') ){ print 'Sorry, your nonce did not verify.'; exit; } if(isset($_POST['enable']) == 'on') { //wp-mail if($_POST['emailtype'] == 'wpmail') { update_option('emailstatus', $_POST['enable']); update_option('emailtype', $_POST['emailtype']); $EmailDetails = array ( 'wpemail' => $_POST['wpemail'] ); update_option( 'emaildetails', serialize($EmailDetails)); } //php-mail if($_POST['emailtype'] == 'phpmail') { update_option('emailstatus', $_POST['enable']); update_option('emailtype', $_POST['emailtype']); $EmailDetails = array ( 'phpemail' => $_POST['phpemail']); update_option('emaildetails', serialize($EmailDetails)); } //smtp mail if($_POST['emailtype'] == 'smtp') { update_option('emailstatus', $_POST['enable']); update_option('emailtype', $_POST['emailtype']); $EmailDetails = array ( 'hostname' => $_POST['hostname'], 'portno' => $_POST['portno'], 'smtpemail' => $_POST['smtpemail'], 'password' => $_POST['password'], ); update_option('emaildetails', serialize($EmailDetails)); } } else { delete_option('emailstatus'); delete_option('emailtype'); delete_option('emaildetails'); } } /** * Saving Notification Message */ if($Action == "new-appointment-admin-message") { if( !wp_verify_nonce($_POST['wp_nonce_noti_msg'],'appointment_noti_msg_nonce_check') ){ print 'Sorry, your nonce did not verify.'; exit; } $Subject = $_POST['Subject']; $Body = $_POST['Body']; update_option("new_appointment_admin_subject", $Subject); update_option("new_appointment_admin_body", $Body); } if($Action == "new-appointment-client-message") { if( !wp_verify_nonce($_POST['wp_nonce_noti_msg'],'appointment_noti_msg_nonce_check') ){ print 'Sorry, your nonce did not verify.'; exit; } $Subject = $_POST['Subject']; $Body = $_POST['Body']; update_option("new_appointment_client_subject", $Subject); update_option("new_appointment_client_body", $Body); } if($Action == "approve-appointment-client-message") { if( !wp_verify_nonce($_POST['wp_nonce_noti_msg'],'appointment_noti_msg_nonce_check') ){ print 'Sorry, your nonce did not verify.'; exit; } $Subject = $_POST['Subject']; $Body = $_POST['Body']; update_option("approve_appointment_client_subject", $Subject); update_option("approve_appointment_client_body", $Body); } if($Action == "cancel-appointment-client-message") { if( !wp_verify_nonce($_POST['wp_nonce_noti_msg'],'appointment_noti_msg_nonce_check') ){ print 'Sorry, your nonce did not verify.'; exit; } $Subject = $_POST['Subject']; $Body = $_POST['Body']; update_option("cancel_appointment_client_subject", $Subject); update_option("cancel_appointment_client_body", $Body); } } ?>