????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/themes/Magnificent/ |
Upload File : |
<?php if ( ! isset( $_SESSION ) ) session_start(); /* Template Name: Contact Page */ ?> <?php $et_ptemplate_settings = array(); $et_ptemplate_settings = maybe_unserialize( get_post_meta(get_the_ID(),'et_ptemplate_settings',true) ); $fullwidth = isset( $et_ptemplate_settings['et_fullwidthpage'] ) ? (bool) $et_ptemplate_settings['et_fullwidthpage'] : false; $et_regenerate_numbers = isset( $et_ptemplate_settings['et_regenerate_numbers'] ) ? (bool) $et_ptemplate_settings['et_regenerate_numbers'] : false; $et_error_message = ''; $et_contact_error = false; if ( isset($_POST['et_contactform_submit']) ) { if ( !isset($_POST['et_contact_captcha']) || empty($_POST['et_contact_captcha']) ) { $et_error_message .= '<p>' . esc_html__('Make sure you entered the captcha. ','Magnificent') . '</p>'; $et_contact_error = true; } else if ( $_POST['et_contact_captcha'] <> ( $_SESSION['et_first_digit'] + $_SESSION['et_second_digit'] ) ) { $et_numbers_string = $et_regenerate_numbers ? esc_html__('Numbers regenerated.','Magnificent') : ''; $et_error_message .= '<p>' . esc_html__('You entered the wrong number in captcha. ','Magnificent') . $et_numbers_string . '</p>'; if ($et_regenerate_numbers) { unset( $_SESSION['et_first_digit'] ); unset( $_SESSION['et_second_digit'] ); } $et_contact_error = true; } else if ( empty($_POST['et_contact_name']) || empty($_POST['et_contact_email']) || empty($_POST['et_contact_subject']) || empty($_POST['et_contact_message']) ){ $et_error_message .= '<p>' . esc_html__('Make sure you fill all fields. ','Magnificent') . '</p>'; $et_contact_error = true; } if ( !is_email( $_POST['et_contact_email'] ) ) { $et_error_message .= '<p>' . esc_html__('Invalid Email. ','Magnificent') . '</p>'; $et_contact_error = true; } } else { $et_contact_error = true; if ( isset($_SESSION['et_first_digit'] ) ) unset( $_SESSION['et_first_digit'] ); if ( isset($_SESSION['et_second_digit'] ) ) unset( $_SESSION['et_second_digit'] ); } if ( !isset($_SESSION['et_first_digit'] ) ) $_SESSION['et_first_digit'] = $et_first_digit = rand(1, 15); else $et_first_digit = $_SESSION['et_first_digit']; if ( !isset($_SESSION['et_second_digit'] ) ) $_SESSION['et_second_digit'] = $et_second_digit = rand(1, 15); else $et_second_digit = $_SESSION['et_second_digit']; if ( ! $et_contact_error && isset( $_POST['_wpnonce-et-contact-form-submitted'] ) && wp_verify_nonce( $_POST['_wpnonce-et-contact-form-submitted'], 'et-contact-form-submit' ) ) { $et_email_to = ( isset($et_ptemplate_settings['et_email_to']) && !empty($et_ptemplate_settings['et_email_to']) ) ? $et_ptemplate_settings['et_email_to'] : get_site_option('admin_email'); $et_site_name = is_multisite() ? $current_site->site_name : get_bloginfo('name'); $contact_name = stripslashes( sanitize_text_field( $_POST['et_contact_name'] ) ); $contact_email = sanitize_email( $_POST['et_contact_email'] ); $headers = 'From: ' . $contact_name . ' <' . $contact_email . '>' . "\r\n"; $headers .= 'Reply-To: ' . $contact_name . ' <' . $contact_email . '>'; wp_mail( apply_filters( 'et_contact_page_email_to', $et_email_to ), sprintf( '[%s] ' . stripslashes( sanitize_text_field( $_POST['et_contact_subject'] ) ), $et_site_name ), stripslashes( wp_strip_all_tags( $_POST['et_contact_message'] ) ), apply_filters( 'et_contact_page_headers', $headers, $contact_name, $contact_email ) ); $et_error_message = '<p>' . esc_html__('Thanks for contacting us','Magnificent') . '</p>'; } ?> <?php get_header(); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php get_template_part('includes/breadcrumbs'); ?> <?php if (get_option('magnificent_integration_single_top') <> '' && get_option('magnificent_integrate_singletop_enable') == 'on') echo(get_option('magnificent_integration_single_top')); ?> <div id="entries"<?php if ($fullwidth) echo ' class="fullwidth"'; ?>> <div class="entry post entry-full"> <div class="border"> <div class="bottom"> <div class="entry-content clearfix"> <h1 class="title"><?php the_title(); ?></h1> <?php if (get_option('magnificent_page_thumbnails') == 'on') { ?> <?php $thumb = ''; $width = 218; $height = 218; $classtext = ''; $titletext = get_the_title(); $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext); $thumb = $thumbnail["thumb"]; ?> <?php if($thumb <> '') { ?> <div class="thumbnail"> <?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?> <span class="overlay"></span> </div> <!-- end .thumbnail --> <?php }; ?> <?php }; ?> <?php the_content(); ?> <?php wp_link_pages(array('before' => '<p><strong>'.esc_html__('Pages','Magnificent').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> <div id="et-contact"> <div id="et-contact-message"><?php echo($et_error_message); ?> </div> <?php if ( $et_contact_error ) { ?> <form action="<?php echo esc_url( get_permalink( get_the_ID() ) ); ?>" method="post" id="et_contact_form"> <div id="et_contact_left"> <p class="clearfix"> <label for="et_contact_name" class="et_contact_form_label"><?php esc_html_e('Name','Magnificent'); ?></label> <input type="text" name="et_contact_name" value="<?php if ( isset($_POST['et_contact_name']) ) echo esc_attr($_POST['et_contact_name']); else esc_attr_e('Name','Magnificent'); ?>" id="et_contact_name" class="input" /> </p> <p class="clearfix"> <label for="et_contact_email" class="et_contact_form_label"><?php esc_html_e('Email Address','Magnificent'); ?></label> <input type="text" name="et_contact_email" value="<?php if ( isset($_POST['et_contact_email']) ) echo esc_attr($_POST['et_contact_email']); else esc_attr_e('Email Address','Magnificent'); ?>" id="et_contact_email" class="input" /> </p> <p class="clearfix"> <label for="et_contact_subject" class="et_contact_form_label"><?php esc_html_e('Subject','Magnificent'); ?></label> <input type="text" name="et_contact_subject" value="<?php if ( isset($_POST['et_contact_subject']) ) echo esc_attr($_POST['et_contact_subject']); else esc_attr_e('Subject','Magnificent'); ?>" id="et_contact_subject" class="input" /> </p> </div> <!-- #et_contact_left --> <div id="et_contact_right"> <p class="clearfix"> <?php esc_html_e('Captcha: ','Magnificent'); echo '<br/>'; echo esc_attr($et_first_digit) . ' + ' . esc_attr($et_second_digit) . ' = '; ?> <input type="text" name="et_contact_captcha" value="<?php if ( isset($_POST['et_contact_captcha']) ) echo esc_attr($_POST['et_contact_captcha']); ?>" id="et_contact_captcha" class="input" size="2" /> </p> </div> <!-- #et_contact_right --> <div class="clear"></div> <p class="clearfix"> <label for="et_contact_message" class="et_contact_form_label"><?php esc_html_e('Message','Magnificent'); ?></label> <textarea class="input" id="et_contact_message" name="et_contact_message"><?php if ( isset($_POST['et_contact_message']) ) echo esc_textarea($_POST['et_contact_message']); else echo esc_textarea( __('Message','Magnificent') ); ?></textarea> </p> <input type="hidden" name="et_contactform_submit" value="et_contact_proccess" /> <input type="reset" id="et_contact_reset" value="<?php esc_attr_e('Reset','Magnificent'); ?>" /> <input class="et_contact_submit" type="submit" value="<?php esc_attr_e('Submit','Magnificent'); ?>" id="et_contact_submit" /> <?php wp_nonce_field( 'et-contact-form-submit', '_wpnonce-et-contact-form-submitted' ); ?> </form> <?php } ?> </div> <!-- end #et-contact --> <div class="clear"></div> <?php edit_post_link(esc_html__('Edit this page','Magnificent')); ?> </div> <!-- end .entry-content --> </div> <!-- end .bottom --> </div> <!-- end .border --> </div> <!-- end .entry --> <div class="clear"></div> <?php if (get_option('magnificent_integration_single_bottom') <> '' && get_option('magnificent_integrate_singlebottom_enable') == 'on') echo(get_option('magnificent_integration_single_bottom')); ?> </div> <!-- end #entries --> <?php endwhile; endif; ?> <?php if (!$fullwidth) { ?> <div id="sidebar-right" class="sidebar"> <div class="block"> <div class="block-border"> <div class="block-content"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Right Top') ) : ?> <?php endif; ?> </div> <!-- end .block-content --> </div> <!-- end .block-border --> </div> <!-- end .block --> <div class="block"> <div class="block-border"> <div class="block-content"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Right Bottom') ) : ?> <?php endif; ?> </div> <!-- end .block-content --> </div> <!-- end .block-border --> </div> <!-- end .block --> </div> <!-- end #sidebar-right --> <?php } ?> <?php get_footer(); ?>