generated from render-examples/wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob-submit.php
93 lines (72 loc) · 3.84 KB
/
job-submit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/**
* Content for job submission (`[submit_job_form]`) shortcode.
*
* This template can be overridden by copying it to yourtheme/job_manager/job-submit.php.
*
* @see https://wpjobmanager.com/document/template-overrides/
* @author Automattic
* @package wp-job-manager
* @category Template
* @version 1.33.1
*/
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
global $job_manager;
?>
<div class="mx-4">
<form action="<?php echo esc_url($action); ?>" method="post" id="submit-job-form" class="job-manager-form" enctype="multipart/form-data">
<?php
if (isset($resume_edit) && $resume_edit) {
printf('<p><strong>' . esc_html__("You are editing an existing job. %s", 'wp-job-manager') . '</strong></p>', '<a href="?new=1&key=' . esc_attr($resume_edit) . '">' . esc_html__('Create A New Job', 'wp-job-manager') . '</a>');
}
?>
<?php do_action('submit_job_form_start'); ?>
<?php if (apply_filters('submit_job_form_show_signin', true)) : ?>
<?php get_job_manager_template('account-signin.php'); ?>
<?php endif; ?>
<?php if (job_manager_user_can_post_job() || job_manager_user_can_edit_job($job_id)) : ?>
<!-- Job Information Fields -->
<?php do_action('submit_job_form_job_fields_start'); ?>
<?php foreach ($job_fields as $key => $field) : ?>
<fieldset class="fieldset-<?php echo esc_attr($key); ?> fieldset-type-<?php echo esc_attr($field['type']); ?>">
<label for="<?php echo esc_attr($key); ?>"><?php echo wp_kses_post($field['label']) . wp_kses_post(apply_filters('submit_job_form_required_label', $field['required'] ? '' : ' <small>' . __('(optional)', 'wp-job-manager') . '</small>', $field)); ?></label>
<div class="field <?php echo $field['required'] ? 'required-field' : ''; ?>">
<?php get_job_manager_template('form-fields/' . $field['type'] . '-field.php', ['key' => $key, 'field' => $field]); ?>
</div>
</fieldset>
<?php endforeach; ?>
<?php do_action('submit_job_form_job_fields_end'); ?>
<!-- Company Information Fields -->
<?php if ($company_fields) : ?>
<h2><?php esc_html_e('Company Details', 'wp-job-manager'); ?></h2>
<?php do_action('submit_job_form_company_fields_start'); ?>
<?php foreach ($company_fields as $key => $field) : ?>
<fieldset class="fieldset-<?php echo esc_attr($key); ?> fieldset-type-<?php echo esc_attr($field['type']); ?>">
<label for="<?php echo esc_attr($key); ?>"><?php echo wp_kses_post($field['label']) . wp_kses_post(apply_filters('submit_job_form_required_label', $field['required'] ? '' : ' <small>' . __('(optional)', 'wp-job-manager') . '</small>', $field)); ?></label>
<div class="field <?php echo $field['required'] ? 'required-field' : ''; ?>">
<?php get_job_manager_template('form-fields/' . $field['type'] . '-field.php', ['key' => $key, 'field' => $field]); ?>
</div>
</fieldset>
<?php endforeach; ?>
<?php do_action('submit_job_form_company_fields_end'); ?>
<?php endif; ?>
<?php do_action('submit_job_form_end'); ?>
<p>
<input type="hidden" name="job_manager_form" value="<?php echo esc_attr($form); ?>" />
<input type="hidden" name="job_id" value="<?php echo esc_attr($job_id); ?>" />
<input type="hidden" name="step" value="<?php echo esc_attr($step); ?>" />
<input type="submit" name="submit_job" class="button" value="<?php echo esc_attr($submit_button_text); ?>" />
<?php
if (isset($can_continue_later) && $can_continue_later) {
echo '<input type="submit" name="save_draft" class="button secondary save_draft" value="' . esc_attr__('Save Draft', 'wp-job-manager') . '" formnovalidate />';
}
?>
<span class="spinner" style="background-image: url(<?php echo esc_url(includes_url('images/spinner.gif')); ?>);"></span>
</p>
<?php else : ?>
<?php do_action('submit_job_form_disabled'); ?>
<?php endif; ?>
</form>
</div>