Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/wp-freeio/templates/misc/ |
Upload File : |
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div class="resume-form-wrapper widget box-employer">
<h1 class="widget-title"><?php _e( 'Edit Resume', 'wp-freeio' ) ; ?></h1>
<?php
$post_status = get_post_status($post_id);
if ( $post_status == 'pending' || $post_status == 'pending_approve' ) {
?>
<div class="alert alert-danger"><?php esc_html_e('Your resume has to be confirmed by an administrator before publish.', 'wp-freeio'); ?></div>
<?php
do_action('wp-freeio-resume-form-status-pending', $post_status, $post_id);
} elseif ( $post_status == 'expired' ) {
?>
<div class="alert alert-danger"><?php esc_html_e('Your resume has expired.', 'wp-freeio'); ?></div>
<?php
do_action('wp-freeio-resume-form-status-expired', $post_status, $post_id);
}
do_action('wp-freeio-resume-form-status', $post_status, $post_id);
if ( ! empty( $_SESSION['messages'] ) ) : ?>
<ul class="messages">
<?php foreach ( $_SESSION['messages'] as $message ) { ?>
<?php
$status = !empty( $message[0] ) ? $message[0] : 'success';
if ( !empty( $message[1] ) ) {
?>
<li class="message_line <?php echo esc_attr( $status ) ?>">
<?php echo wp_kses_post( $message[1] ); ?>
</li>
<?php
}
}
unset( $_SESSION['messages'] );
?>
</ul>
<?php endif; ?>
<?php
echo cmb2_get_metabox_form( $metaboxes_form, $post_id, array(
'form_format' => '<form action="//' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . '" class="cmb-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<input type="submit" name="submit-cmb-resume" value="%4$s" class="button-primary"></form>',
'save_button' => __( 'Save Resume', 'wp-freeio' ),
) );
?>
</div>