HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: /home/honghock/public_html/wp-content/plugins/easyjobs/public/partials/default/list.php
<?php
/**
 * Render job list for shortcode
 *
 * @since 1.0.0
 */
if ( ! isset( $jobs ) && empty( $jobs ) ) {
    $jobs = [];
}
?>
<?php if ( $ej_is_search || ( isset($jobs) && ! empty( $jobs ) && ! empty( $job_with_page_id ) ) ) : ?>
	<div class="easyjobs-shortcode-wrapper translate" id="easyjobs-list">
        <div class="ej-section">
		    <?php if ( ! empty( $company->ejel_enabled ) && ! empty( $company->ejel_job_list_enabled ) ) : ?>
                <div class="d-flex ej-job-filter-wrap">
                    <div class="ej-section-title">
						<?php if ( empty( $company->ejel_hide_job_list_heading_icon ) ) : ?>
                            <span class="ej-section-title-icon">
                                <?php if( ! empty( $company->ejel_joblist_heading_icon ) ) : ?>
                                <?php printf( '%s', $company->ejel_joblist_heading_icon ); // XSS : ok ?>
                                <?php else : ?>
                                <i class="easyjobs-icon easyjobs-briefcase"></i>                            
                                <?php endif; ?>
                            </span>
						<?php endif; ?>

						<?php if ( empty( $company->ejel_hide_job_list_heading_text ) ) : ?>
                            <span class="ej-section-title-text">
					<?php
					if ( empty ( $company->ejel_joblist_heading ) ) {
						echo esc_html(
							get_theme_mod(
								'easyjobs_landing_job_list_heading',
								esc_html__( 'Open Job Positions', 'easyjobs' )
							)
						);
					} else {
						esc_html_e( $company->ejel_joblist_heading, 'easyjobs' );
					}
					?>
				</span>
						<?php endif; ?>

                    </div>
					<?php
                        if (isset($company->show_job_filter) && $company->show_job_filter) {
                            Easyjobs_Helper::job_filter( $jobs, $company, $ej_categories, $ej_locations, $settings );
                        }
                    ?>
                </div>
            <?php else: ?>
                <div class="d-flex ej-job-filter-wrap">
                    <div class="ej-section-title">
                        <span class="ej-section-title-icon"><i class="easyjobs-icon easyjobs-briefcase"></i></span>
                        <span class="ej-section-title-text">
                                <?php
                                if ( empty ( $company->ejel_joblist_heading ) ) {
                                    echo esc_html(
                                        get_theme_mod(
                                            'easyjobs_landing_job_list_heading',
                                            esc_html__( 'Open Job Positions', 'easyjobs' )
                                        )
                                    );
                                } else {
                                    esc_html_e( $company->ejel_joblist_heading, 'easyjobs' );
                                }
                                ?>
                            </span>
                    </div>
                    <?php
                        if ($company->show_job_filter) {
                            Easyjobs_Helper::job_filter( $jobs, $company, $ej_categories, $ej_locations );
                        }
                    ?>
                </div>
            <?php endif;?>
            <?php if ( ( ! empty( $jobs ) && ! empty( $job_with_page_id )) ) : ?>
                <div class="ej-section-content">
                    <div class="ej-job-list">
                        <?php foreach ( $jobs as $job ) : ?>
                            <?php
                            if ( empty( $company->ejel_enabled ) && $job->is_expired ) {
                                continue;
                            } else {
                                // Elementor Integration
                                if( $job->is_expired && 'yes' === $settings['easyjobs_show_open_job'] ) {
                                    continue;
                                }
                            }
                            ?>
                            <div class="ej-job-list-item ej-job-list-item-cat" data-category="<?php echo esc_html($job->category->id); ?>" data-location="<?php echo esc_html($job->job_address_id); ?>">
                                <div class="ej-job-list-item-inner">
                                    <div class="ej-job-list-item-col <?php if(isset($job->is_pinned) && $job->is_pinned) echo 'ej-has-badge'; ?>">
                                        <h2 class="ej-job-title">
                                            <a href="<?php echo esc_url( get_the_permalink( $job_with_page_id[ $job->id ] ) ); ?>"><?php echo esc_html( $job->title ); ?></a>
                                        </h2>
                                        <?php if ( ! get_theme_mod( 'easyjobs_landing_hide_job_metas', false ) ) : ?>
                                            <div class="ej-job-list-info">
                                                <div class="ej-job-list-info-block ej-job-list-company-name notranslate">
                                                    <i class="easyjobs-icon easyjobs-briefcase-2"></i>
                                                    <a href="<?php echo esc_url( $job->company_easyjob_url ); ?>" target="_blank">
                                                        <?php echo esc_html( $job->company_name ); ?>
                                                    </a>
                                                </div>
                                                <div class="ej-job-list-info-block ej-job-list-location">
                                                    <?php if ($job->is_remote || !empty($job->job_address->city) || !empty($job->job_address->country)) { ?>
                                                        <i class="easyjobs-icon easyjobs-map-maker"></i>
                                                    <?php } ?>
                                                    <?php if ( $job->is_remote ) : ?>
                                                        <span>
                                                            <?php esc_html_e( 'Anywhere', 'easyjobs' ); ?>
                                                        </span>
                                                    <?php else : ?>
                                                        <span>
                                                            <?php if ( ! empty( $job->job_address->city ) ) : ?>
                                                                <?php echo esc_html( $job->job_address->city->name ); ?>
                                                            <?php endif; ?>
                                                            <?php if ( ! empty( $job->job_address->country ) ) : ?>
                                                                <?php if ( ! empty( $job->job_address->city ) ) :
                                                                    echo ", ";
                                                                endif; ?>
                                                                <?php echo esc_html( $job->job_address->country->name ); ?>
                                                            <?php endif; ?>
                                                        </span>
                                                    <?php endif ?>
                                                </div>
                                            </div>
                                        <?php endif; ?>
                                    </div>
                                    <div class="ej-job-list-item-col ej-job-time-col">
                                        <?php
                                        if ( ! $job->is_expired ) :
                                            ?>
                                            <p class="ej-deadline">
                                                <?php echo esc_html( $job->expire_at ); ?>
                                            </p>
                                            <?php if ( !empty( $job->vacancies ) ) { ?>
                                                <p class="ej-list-sub">
                                                    <?php esc_html_e( 'No of vacancies: ', 'easyjobs' ); ?> <?php echo $job->vacancies ? esc_html( $job->vacancies ) : '1'; ?>
                                                </p>
                                            <?php } ?>
                                        <?php else : ?>
                                            <p class="ej-list-title ej-expired">
                                                <?php esc_html_e( 'Expired', 'easyjobs' ); ?>
                                            </p>
                                        <?php endif; ?>
                                    </div>
                                    <div class="ej-job-list-item-col ej-job-apply-btn">
                                        <a href="<?php echo ! empty( $job->apply_url ) ? esc_url( $job->apply_url ) : '#'; ?>" class="ej-btn ej-info-btn-light" target="_blank">
                                            <?php empty( $company->ejel_apply_button_text ) ? esc_html_e( 'Apply', 'easyjobs' ) : esc_html_e( $company->ejel_apply_button_text ); ?>
                                        </a>
                                    </div>
                                </div>
                            </div>
                        <?php endforeach; ?>
                    </div>
                    <?php if (isset($jobs_data) && isset($jobs_data->last_page) && ($jobs_data->last_page > 1)) { 
                        Easyjobs_Helper::job_pagination($jobs_data, $sanitized_get_data, $permalink, $prev_page_url, $next_page_url, $paginate_data);
                     } ?>
                </div>
            <?php else : ?>
                <h3 class="empty-message">
                    <?php esc_html_e( 'No jobs found.', 'easyjobs' ); ?>
                </h3>
            <?php endif; ?>
        </div>
	</div>

<?php else : ?>
    <h3 class="empty-message mt-10">
        <?php esc_html_e( 'No jobs found.', 'easyjobs' ); ?>
    </h3>
<?php endif; ?>