Origin commit
This commit is contained in:
49
templates/submission/submission-form.php
Executable file
49
templates/submission/submission-form.php
Executable file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
if ( ! function_exists( 'cmb2_get_metabox_form' ) || ! isset( $metaboxes ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$nonce = wp_nonce_field( 'submitted-property', 'submission_action', true );
|
||||
|
||||
?>
|
||||
<div class="property-submission-form">
|
||||
<div class="box-content-inner">
|
||||
<div class="metabox-fields-front space-padding-lr-40 space-padding-tb-30">
|
||||
|
||||
|
||||
<div class="submission-heading text-center">
|
||||
<?php if ( ! $post_id ) : ?>
|
||||
<h1><?php esc_html_e( 'Add New Property', 'opalestate-pro' ); ?></h1>
|
||||
<p><?php esc_html_e( 'Adding a property is straigh forward, we are broken it down into a few steps' ); ?></p>
|
||||
<?php else : ?>
|
||||
<h1><?php esc_html_e( 'Edit Property', 'opalestate-pro' ); ?></h1>
|
||||
<p><?php esc_html_e( 'Edit a property is straigh forward, we are broken it down into a few steps' ); ?></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<?php do_action( 'opalestate_submission_form_before' ); ?>
|
||||
<?php if ( $navigation ) : ?>
|
||||
<div class="opalestate-submission-tab">
|
||||
<div class="opalestate-submission-tab-head">
|
||||
<?php $i=1; foreach ( $navigation as $key => $value ): ?>
|
||||
<?php if ( $value['status'] ) : ?>
|
||||
<a href="#opalestate-submission-<?php echo esc_attr( $key ); ?>" class="tab-item">
|
||||
<span class="tab-item-text"><?php echo ($i++) . '. ' . esc_html( $value['title'] ); ?></span>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<div class="opalestate-box opalestate-submission-tab-wrap">
|
||||
<?php
|
||||
echo cmb2_get_metabox_form( $metaboxes[ OPALESTATE_PROPERTY_PREFIX . 'front' ], $post_id, [
|
||||
'form_format' => '<form action="//' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . '" class="cmb-form opalestate-submission-form" method="post" id="%1$s" enctype="multipart/form-data" encoding="multipart/form-data"><input type="hidden" name="object_id" value="%2$s">%3$s<button type="submit" name="submit-cmb" value="%4$s" class="button-primary btn btn-primary btn-submit-cmb">'. esc_html__( 'Save property', 'opalestate-pro' ).'</button>'.$nonce.'</form>',
|
||||
'save_button' => esc_html__( 'Save property', 'opalestate-pro' ),
|
||||
] ); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php do_action( 'opalestate_submission_form_after' ); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user