Opal-Estate-Pro/templates/messages/enquiry-form.php
2019-09-25 13:44:59 +07:00

51 lines
2.2 KiB
PHP
Executable File

<?php
global $post;
if ( ! opalestate_get_option( 'enable_single_enquire_form' ) ) {
return;
}
$message = sprintf( __( 'Hi, I am interested in %s (Property ID: %s)', 'opalestate-pro' ), get_the_title(), get_the_ID() );
$property_id = get_the_ID();
$heading = esc_html__( 'Enquire about property', 'opalestate-pro' );
$object = OpalEstate_User_Message::get_instance();
$fields = $object->get_equiry_form_fields( $message );
$form = OpalEstate()->html->render_form( $fields );
$id = 'send-enquiry-form';
?>
<?php if ( isset( $nowrap ) && $nowrap ) : ?>
<form method="post" class="opalestate-message-form">
<?php do_action( 'opalestate_message_form_before' ); ?>
<?php echo $form; ?>
<?php do_action( 'opalestate_message_form_after' ); ?>
<?php wp_nonce_field( $id, 'message_action' ); ?>
<button class="button btn btn-primary btn-3d" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> <?php esc_html_e( ' Processing', 'opalestate-pro' ); ?>" type="submit"
name="contact-form"><?php echo esc_html__( 'Send message', 'opalestate-pro' ); ?></button>
</form>
<?php else : ?>
<div class="opalestate-box-content property-enquire-form">
<div class="opalestate-box">
<div class="property-equire-form-container">
<h5 class="contact-form-title"><?php echo $heading; ?></h5>
<div class="box-content">
<form method="post" class="opalestate-message-form">
<?php do_action( 'opalestate_message_form_before' ); ?>
<?php echo $form; ?>
<?php do_action( 'opalestate_message_form_after' ); ?>
<?php wp_nonce_field( $id, 'message_action' ); ?>
<button class="button btn btn-primary btn-3d" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> <?php esc_html_e( ' Processing', 'opalestate-pro' ); ?>"
type="submit" name="contact-form"><?php echo esc_html__( 'Send message', 'opalestate-pro' ); ?></button>
</form>
</div><!-- /.agent-contact-form -->
</div><!-- /.agent-contact-->
</div>
</div>
<?php endif; ?>