File: /home/c1190199/public_html/wp-content/themes/TheProfessional/page-contact.php
<?php session_start();
/*
Template Name: Contact Page
*/
?>
<?php the_post(); ?>
<?php
$et_ptemplate_settings = array();
$et_ptemplate_settings = maybe_unserialize( get_post_meta($post->ID,'et_ptemplate_settings',true) );
$fullwidth = isset( $et_ptemplate_settings['et_fullwidthpage'] ) ? (bool) $et_ptemplate_settings['et_fullwidthpage'] : (bool) $et_ptemplate_settings['et_fullwidthpage'];
$et_regenerate_numbers = isset( $et_ptemplate_settings['et_regenerate_numbers'] ) ? (bool) $et_ptemplate_settings['et_regenerate_numbers'] : (bool) $et_ptemplate_settings['et_regenerate_numbers'];
$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>' . __('Aseg�rate de haber resuelto la suma correctamente. ','Professional') . '</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 ? __('N�meros regenerados.') : '';
$et_error_message .= '<p>' . __('Resuelve bien la suma. ','Professional') . $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>' . __('Ingresa tu nombre completo. ','Professional') . '</p>';
$et_contact_error = true;
}
if ( !is_email( $_POST['et_contact_email'] ) ) {
$et_error_message .= '<p>' . __('Email no v�lido. ','Professional') . '</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 ) {
$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');
wp_mail($et_email_to, sprintf( '[%s] ' . esc_html($_POST['et_contact_subject']), $current_site->site_name ), esc_html($_POST['et_contact_message']),'From: "'. esc_html($_POST['et_contact_name']) .'" <' . esc_html($_POST['et_contact_email']) . '>');
$et_error_message = '<p>' . __('MENSAJE ENVIADO! Gracias por contactarnos, te responderemos a la brevedad.','Professional') . '</p>';
}
?>
<?php get_header(); ?>
<?php if (get_option('professional_integration_single_top') <> '' && get_option('professional_integrate_singletop_enable') == 'on') echo(get_option('professional_integration_single_top')); ?>
<div id="content-top"<?php if (!$fullwidth) echo ' class="top-alt"'; ?>></div>
<div id="content" class="clearfix<?php if (!$fullwidth) echo(' content-alt'); ?>">
<div id="content-area">
<?php include(TEMPLATEPATH . '/includes/breadcrumbs.php'); ?>
<?php if (get_option('professional_integration_single_top') <> '' && get_option('professional_integrate_singletop_enable') == 'on') echo(get_option('professional_integration_single_top')); ?>
<div class="entry clearfix post">
<h1 class="title"><?php the_title(); ?></h1>
<?php if (get_option('professional_page_thumbnails') == 'on') { ?>
<?php $thumb = '';
$width = 184;
$height = 184;
$classtext = '';
$titletext = get_the_title();
$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
$thumb = $thumbnail["thumb"]; ?>
<?php if($thumb <> '') { ?>
<div class="thumb alignleft">
<?php print_thumbnail($thumb, $thumbnail["use_timthumb"], $titletext, $width, $height, $classtext); ?>
<span class="overlay"></span>
</div> <!-- end .thumb -->
<?php }; ?>
<?php }; ?>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p><strong>'.__('Pages','Professional').':</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(get_permalink($post->ID)); ?>" method="post" id="et_contact_form">
<div id="et_contact_left">
<p class="clearfix">
<input type="text" name="et_contact_name" value="<?php if ( isset($_POST['et_contact_name']) ) echo esc_attr($_POST['et_contact_name']); else _e('Nombre','Professional'); ?>" id="et_contact_name" class="input" />
</p>
<p class="clearfix">
<input type="text" name="et_contact_email" value="<?php if ( isset($_POST['et_contact_email']) ) echo esc_attr($_POST['et_contact_email']); else _e('Email','Professional'); ?>" id="et_contact_email" class="input" />
</p>
<p class="clearfix">
<input type="text" name="et_contact_subject" value="<?php if ( isset($_POST['et_contact_subject']) ) echo esc_attr($_POST['et_contact_subject']); else _e('Asunto','Professional'); ?>" id="et_contact_subject" class="input" />
</p>
</div> <!-- #et_contact_left -->
<div id="et_contact_right">
<p class="clearfix">
<?php
_e('Resuelve la suma: ','Professional');
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">
<textarea class="input" id="et_contact_message" name="et_contact_message"><?php if ( isset($_POST['et_contact_message']) ) echo esc_attr($_POST['et_contact_message']); else _e('Mensaje...','Professional'); ?></textarea>
</p>
<input type="hidden" name="et_contactform_submit" value="et_contact_proccess" />
<input type="reset" id="et_contact_reset" value="<?php _e('Reset','Professional'); ?>" />
<input class="et_contact_submit" type="submit" value="<?php _e('Enviar','Professional'); ?>" id="et_contact_submit" />
</form>
<?php } ?>
</div> <!-- end #et-contact -->
<div class="clear"></div>
<?php edit_post_link(__('Editar esta página','Professional')); ?>
</div> <!-- end .entry -->
<?php if (get_option('professional_integration_single_bottom') <> '' && get_option('professional_integrate_singlebottom_enable') == 'on') echo(get_option('professional_integration_single_bottom')); ?>
</div> <!-- end #content-area -->
<?php if (!$fullwidth) get_sidebar(); ?>
</div> <!-- end #content -->
<div id="content-bottom"<?php if (!$fullwidth) echo ' class="bottom-alt"'; ?>></div>
<?php get_footer(); ?>