forked from Automattic/WP-Job-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-job-manager.php
165 lines (141 loc) · 7.41 KB
/
wp-job-manager.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
/*
Plugin Name: WP Job Manager
Plugin URI: https://wpjobmanager.com/
Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
Version: 1.22.3
Author: Mike Jolley
Author URI: http://mikejolley.com
Requires at least: 4.1
Tested up to: 4.2
Text Domain: wp-job-manager
Domain Path: /languages
Copyright: 2015 Mike Jolley
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* WP_Job_Manager class.
*/
class WP_Job_Manager {
/**
* Constructor - get the plugin hooked in and ready
*/
public function __construct() {
// Define constants
define( 'JOB_MANAGER_VERSION', '1.22.3' );
define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
// Includes
include( 'includes/class-wp-job-manager-install.php' );
include( 'includes/class-wp-job-manager-post-types.php' );
include( 'includes/class-wp-job-manager-ajax.php' );
include( 'includes/class-wp-job-manager-shortcodes.php' );
include( 'includes/class-wp-job-manager-api.php' );
include( 'includes/class-wp-job-manager-forms.php' );
include( 'includes/class-wp-job-manager-geocode.php' );
include( 'includes/class-wp-job-manager-cache-helper.php' );
if ( is_admin() ) {
include( 'includes/admin/class-wp-job-manager-admin.php' );
}
// Init classes
$this->forms = new WP_Job_Manager_Forms();
$this->post_types = new WP_Job_Manager_Post_Types();
// Activation - works with symlinks
register_activation_hook( basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ), array( 'WP_Job_Manager_Ajax', 'add_endpoint' ), 10 );
register_activation_hook( basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ), array( $this->post_types, 'register_post_types' ), 10 );
register_activation_hook( basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ), array( 'WP_Job_Manager_Install', 'install' ), 10 );
register_activation_hook( basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ), 'flush_rewrite_rules', 15 );
// Switch theme
add_action( 'switch_theme', array( $this->post_types, 'register_post_types' ), 10 );
add_action( 'switch_theme', 'flush_rewrite_rules', 15 );
// Actions
add_action( 'after_setup_theme', array( $this, 'load_plugin_textdomain' ) );
add_action( 'after_setup_theme', array( $this, 'include_template_functions' ), 11 );
add_action( 'widgets_init', array( $this, 'widgets_init' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'frontend_scripts' ) );
add_action( 'admin_init', array( $this, 'updater' ) );
}
/**
* Handle Updates
*/
public function updater() {
if ( version_compare( JOB_MANAGER_VERSION, get_option( 'wp_job_manager_version' ), '>' ) ) {
WP_Job_Manager_Install::install();
}
}
/**
* Localisation
*/
public function load_plugin_textdomain() {
load_textdomain( 'wp-job-manager', WP_LANG_DIR . "/wp-job-manager/wp-job-manager-" . apply_filters( 'plugin_locale', get_locale(), 'wp-job-manager' ) . ".mo" );
load_plugin_textdomain( 'wp-job-manager', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
/**
* Load functions
*/
public function include_template_functions() {
include( 'wp-job-manager-functions.php' );
include( 'wp-job-manager-template.php' );
}
/**
* Widgets init
*/
public function widgets_init() {
include_once( 'includes/class-wp-job-manager-widgets.php' );
}
/**
* Register and enqueue scripts and css
*/
public function frontend_scripts() {
$ajax_url = WP_Job_Manager_Ajax::get_endpoint();
$ajax_filter_deps = array( 'jquery', 'jquery-deserialize' );
// WPML workaround until this is standardized
if ( defined( 'ICL_LANGUAGE_CODE' ) ) {
$ajax_url = add_query_arg( 'lang', ICL_LANGUAGE_CODE, $ajax_url );
}
if ( apply_filters( 'job_manager_chosen_enabled', true ) ) {
wp_register_script( 'chosen', JOB_MANAGER_PLUGIN_URL . '/assets/js/jquery-chosen/chosen.jquery.min.js', array( 'jquery' ), '1.1.0', true );
wp_register_script( 'wp-job-manager-term-multiselect', JOB_MANAGER_PLUGIN_URL . '/assets/js/term-multiselect.min.js', array( 'jquery', 'chosen' ), JOB_MANAGER_VERSION, true );
wp_register_script( 'wp-job-manager-multiselect', JOB_MANAGER_PLUGIN_URL . '/assets/js/multiselect.min.js', array( 'jquery', 'chosen' ), JOB_MANAGER_VERSION, true );
wp_enqueue_style( 'chosen', JOB_MANAGER_PLUGIN_URL . '/assets/css/chosen.css' );
$ajax_filter_deps[] = 'chosen';
}
if ( apply_filters( 'job_manager_ajax_file_upload_enabled', true ) ) {
wp_register_script( 'jquery-iframe-transport', JOB_MANAGER_PLUGIN_URL . '/assets/js/jquery-fileupload/jquery.iframe-transport.js', array( 'jquery' ), '1.8.3', true );
wp_register_script( 'jquery-fileupload', JOB_MANAGER_PLUGIN_URL . '/assets/js/jquery-fileupload/jquery.fileupload.js', array( 'jquery', 'jquery-iframe-transport', 'jquery-ui-widget' ), '5.42.3', true );
wp_register_script( 'wp-job-manager-ajax-file-upload', JOB_MANAGER_PLUGIN_URL . '/assets/js/ajax-file-upload.min.js', array( 'jquery', 'jquery-fileupload' ), JOB_MANAGER_VERSION, true );
ob_start();
get_job_manager_template( 'form-fields/uploaded-file-html.php', array( 'name' => '', 'value' => '', 'extension' => 'jpg' ) );
$js_field_html_img = ob_get_clean();
ob_start();
get_job_manager_template( 'form-fields/uploaded-file-html.php', array( 'name' => '', 'value' => '', 'extension' => 'zip' ) );
$js_field_html = ob_get_clean();
wp_localize_script( 'wp-job-manager-ajax-file-upload', 'job_manager_ajax_file_upload', array(
'ajax_url' => $ajax_url,
'js_field_html_img' => esc_js( str_replace( "\n", "", $js_field_html_img ) ),
'js_field_html' => esc_js( str_replace( "\n", "", $js_field_html ) ),
'i18n_invalid_file_type' => __( 'Invalid file type. Accepted types:', 'wp-job-manager' )
) );
}
wp_register_script( 'jquery-deserialize', JOB_MANAGER_PLUGIN_URL . '/assets/js/jquery-deserialize/jquery.deserialize.js', array( 'jquery' ), '1.2.1', true );
wp_register_script( 'wp-job-manager-ajax-filters', JOB_MANAGER_PLUGIN_URL . '/assets/js/ajax-filters.min.js', $ajax_filter_deps, JOB_MANAGER_VERSION, true );
wp_register_script( 'wp-job-manager-job-dashboard', JOB_MANAGER_PLUGIN_URL . '/assets/js/job-dashboard.min.js', array( 'jquery' ), JOB_MANAGER_VERSION, true );
wp_register_script( 'wp-job-manager-job-application', JOB_MANAGER_PLUGIN_URL . '/assets/js/job-application.min.js', array( 'jquery' ), JOB_MANAGER_VERSION, true );
wp_register_script( 'wp-job-manager-job-submission', JOB_MANAGER_PLUGIN_URL . '/assets/js/job-submission.min.js', array( 'jquery' ), JOB_MANAGER_VERSION, true );
wp_localize_script( 'wp-job-manager-ajax-filters', 'job_manager_ajax_filters', array(
'ajax_url' => $ajax_url,
'is_rtl' => is_rtl() ? 1 : 0,
'i18n_load_prev_listings' => __( 'Load previous listings', 'wp-job-manager' )
) );
wp_localize_script( 'wp-job-manager-job-dashboard', 'job_manager_job_dashboard', array(
'i18n_confirm_delete' => __( 'Are you sure you want to delete this listing?', 'wp-job-manager' )
) );
wp_enqueue_style( 'wp-job-manager-frontend', JOB_MANAGER_PLUGIN_URL . '/assets/css/frontend.css' );
}
}
$GLOBALS['job_manager'] = new WP_Job_Manager();