File manager - Edit - /home/verseaumee/blueversion/wp-content/plugins/wp-freeio/templates/misc/job-applicants.php
Back
<?php if ( ! defined( 'ABSPATH' ) ) { exit; } wp_enqueue_script('wpfi-select2'); wp_enqueue_style('wpfi-select2'); ?> <div class="box-applicants widget"> <h3 class="widget-title"><?php echo esc_html__('Applicant','wp-freeio') ?></h3> <div class="search-orderby-wrapper flex-middle-sm"> <div class="search-applicants-form widget-search"> <form action="" method="get"> <div class="input-group"> <input type="text" placeholder="<?php echo esc_html__( 'Search ...', 'wp-freeio' ); ?>" class="form-control" name="search" value="<?php echo esc_attr(isset($_GET['search']) ? $_GET['search'] : ''); ?>"> <select name="job_id"> <option value=""><?php esc_html_e('Filter by job', 'wp-freeio'); ?></option> <?php if ( !empty($job_ids) ) { $selected = !empty($_GET['job_id']) ? $_GET['job_id'] : ''; ?> <?php foreach ($job_ids as $job_id) { ?> <option value="<?php echo esc_attr($job_id); ?>" <?php selected($selected, $job_id); ?>><?php echo get_the_title($job_id); ?></option> <?php } ?> <?php } ?> </select> <span class="input-group-btn"> <button class="search-submit btn btn-sm btn-search" name="submit"> <i class="flaticon-magnifying-glass"></i> </button> </span> </div> <input type="hidden" name="paged" value="1" /> </form> </div> <div class="sort-applicants-form sortby-form"> <?php $orderby_options = apply_filters( 'wp_freeio_my_jobs_orderby', array( 'menu_order' => esc_html__( 'Default', 'wp-freeio' ), 'newest' => esc_html__( 'Newest', 'wp-freeio' ), 'oldest' => esc_html__( 'Oldest', 'wp-freeio' ), ) ); $orderby = isset( $_GET['orderby'] ) ? wp_unslash( $_GET['orderby'] ) : 'newest'; ?> <div class="orderby-wrapper flex-middle"> <span class="text-sort"> <?php echo esc_html__('Sort by: ','wp-freeio'); ?> </span> <form class="my-jobs-ordering" method="get"> <select name="orderby" class="orderby"> <?php foreach ( $orderby_options as $id => $name ) : ?> <option value="<?php echo esc_attr( $id ); ?>" <?php selected( $orderby, $id ); ?>><?php echo esc_html( $name ); ?></option> <?php endforeach; ?> </select> <input type="hidden" name="paged" value="1" /> <?php WP_Freeio_Mixes::query_string_form_fields( null, array( 'orderby', 'submit', 'paged' ) ); ?> </form> </div> </div> </div> <?php if ( !empty($job_ids) && is_array($job_ids) ) { if ( !empty($_GET['job_id']) ) { $job_ids = array($_GET['job_id']); } foreach ($job_ids as $job_id) { $jids = apply_filters( 'wp-freeio-translations-post-ids', $job_id ); if ( !is_array($jids) ) { $jids = array($jids); } $current_page = 1; $query_vars = array( 'post_type' => 'job_applicant', 'posts_per_page' => get_option('posts_per_page'), 'paged' => $current_page, 'post_status' => 'publish', 'meta_query' => array( array( 'key' => WP_FREEIO_APPLICANT_PREFIX.'job_id', 'value' => $jids, 'compare' => 'IN', ), ) ); if ( isset($_GET['search']) ) { $query_vars['s'] = $_GET['search']; } if ( isset($_GET['orderby']) ) { switch ($_GET['orderby']) { case 'menu_order': $query_vars['orderby'] = array( 'menu_order' => 'ASC', 'date' => 'DESC', 'ID' => 'DESC', ); break; case 'newest': $query_vars['orderby'] = 'date'; $query_vars['order'] = 'DESC'; break; case 'oldest': $query_vars['orderby'] = 'date'; $query_vars['order'] = 'ASC'; break; } } $applicants = new WP_Query($query_vars); $query_vars = array( 'post_type' => 'job_applicant', 'posts_per_page' => 1, 'paged' => 1, 'post_status' => 'publish', 'meta_query' => array( array( 'key' => WP_FREEIO_APPLICANT_PREFIX.'job_id', 'value' => $jids, 'compare' => 'IN', ), array( 'key' => WP_FREEIO_APPLICANT_PREFIX.'rejected', 'value' => '1', 'compare' => '=', ) ) ); $rejected = WP_Freeio_Query::get_posts($query_vars); $query_vars = array( 'post_type' => 'job_applicant', 'posts_per_page' => 1, 'paged' => 1, 'post_status' => 'publish', 'meta_query' => array( array( 'key' => WP_FREEIO_APPLICANT_PREFIX.'job_id', 'value' => $jids, 'compare' => 'IN', ), array( 'key' => WP_FREEIO_APPLICANT_PREFIX.'approved', 'value' => '1', 'compare' => '=', ) ) ); $approved = WP_Freeio_Query::get_posts($query_vars); ?> <div class="job-applicants"> <div class="heading"> <h3 class="job-title"><?php echo get_the_title($job_id); ?></h3> <div class="total-applicants show-total-applicants active" data-job_id="<?php echo esc_attr($job_id); ?>" data-nonce="<?php echo esc_attr(wp_create_nonce( 'wp-freeio-show-applicants-nonce' )); ?>"> <?php echo sprintf(__('Total(s): %s', 'wp-freeio'), '<span class="number">'.$applicants->found_posts.'</span>'); ?> </div> <div class="approved-applicants show-approved-applicants" data-job_id="<?php echo esc_attr($job_id); ?>" data-nonce="<?php echo esc_attr(wp_create_nonce( 'wp-freeio-show-approved-applicants-nonce' )); ?>"> <?php echo sprintf(__('Approved: %s', 'wp-freeio'), '<span class="number">'.$approved->found_posts.'</span>'); ?> </div> <div class="rejected-applicants show-rejected-applicants" data-job_id="<?php echo esc_attr($job_id); ?>" data-nonce="<?php echo esc_attr(wp_create_nonce( 'wp-freeio-show-rejected-applicants-nonce' )); ?>"> <?php echo sprintf(__('Rejected(s): %s', 'wp-freeio'), '<span class="number">'.$rejected->found_posts.'</span>'); ?> </div> </div> <div class="applicants-wrapper"> <?php if ( $applicants->have_posts() ) { ?> <div class="applicants-inner"> <?php while ( $applicants->have_posts() ) : $applicants->the_post(); global $post; $rejected = WP_Freeio_Applicant::get_post_meta($post->ID, 'rejected', true); $approved = WP_Freeio_Applicant::get_post_meta($post->ID, 'approved', true); if ( $rejected ) { echo WP_Freeio_Template_Loader::get_template_part( 'content-rejected-applicant' ); } elseif ( $approved ) { echo WP_Freeio_Template_Loader::get_template_part( 'content-approved-applicant' ); } else { echo WP_Freeio_Template_Loader::get_template_part( 'content-applicant' ); } endwhile; ?> </div> <?php if ( $applicants->max_num_pages > $current_page ) { ?> <form class="applicants-pagination-form"> <button class="apus-loadmore-btn"><?php esc_html_e( 'Load more', 'wp-freeio' ); ?></button> <input type="hidden" name="paged" value="<?php echo esc_attr($current_page + 1); ?>"> <input type="hidden" name="job_id" value="<?php echo esc_attr($job_id); ?>"> <?php WP_Freeio_Mixes::query_string_form_fields( null, array( 'job_id', 'submit', 'paged' ) ); ?> </form> <?php } ?> <?php wp_reset_postdata(); } else { ?> <div class="no-found"><?php esc_html_e('No applicants found.', 'wp-freeio'); ?></div> <?php } ?> </div> </div> <?php } } else { ?> <div class="no-found"><?php esc_html_e('No applicants found.', 'wp-freeio'); ?></div> <?php } ?> </div>
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings