-
Notifications
You must be signed in to change notification settings - Fork 368
/
wp-job-manager-functions.php
1866 lines (1632 loc) · 56.9 KB
/
wp-job-manager-functions.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Global WP Job Manager functions.
*
* New global functions are discouraged whenever possible.
*
* @package wp-job-manager
*/
if ( ! function_exists( 'get_job_listings' ) ) :
/**
* Queries job listings with certain criteria and returns them.
*
* @since 1.0.5
* @param string|array|object $args Arguments used to retrieve job listings.
* @return WP_Query
*/
function get_job_listings( $args = [] ) {
global $job_manager_keyword;
$args = wp_parse_args(
$args,
[
'search_location' => '',
'search_keywords' => '',
'search_categories' => [],
'job_types' => [],
'post_status' => [],
'offset' => 0,
'posts_per_page' => 20,
'orderby' => 'date',
'order' => 'DESC',
'featured' => null,
'filled' => null,
'remote_position' => null,
'fields' => 'all',
'featured_first' => 0,
]
);
/**
* Perform actions that need to be done prior to the start of the job listings query.
*
* @since 1.26.0
*
* @param array $args Arguments used to retrieve job listings.
*/
do_action( 'get_job_listings_init', $args );
if ( ! empty( $args['post_status'] ) ) {
$post_status = $args['post_status'];
} elseif ( 0 === intval( get_option( 'job_manager_hide_expired', get_option( 'job_manager_hide_expired_content', 1 ) ) ) ) {
$post_status = [ 'publish', 'expired' ];
} else {
$post_status = 'publish';
}
$query_args = [
'post_type' => \WP_Job_Manager_Post_Types::PT_LISTING,
'post_status' => $post_status,
'ignore_sticky_posts' => 1,
'offset' => absint( $args['offset'] ),
'posts_per_page' => intval( $args['posts_per_page'] ), // phpcs:ignore WordPress.WP.PostsPerPage.posts_per_page_posts_per_page -- Known slow query.
'orderby' => $args['orderby'],
'order' => $args['order'],
'tax_query' => [], // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_tax_query -- Empty.
'meta_query' => [], // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query -- Empty.
'update_post_term_cache' => false,
'update_post_meta_cache' => false,
'cache_results' => false,
'fields' => $args['fields'],
];
if ( $args['posts_per_page'] < 0 ) {
$query_args['no_found_rows'] = true;
}
$remote_position_search = false;
if ( ! is_null( $args['remote_position'] ) ) {
$remote_position_search = [
'key' => '_remote_position',
'value' => '1',
'compare' => $args['remote_position'] ? '=' : '!=',
];
if ( '!=' === $remote_position_search['compare'] && apply_filters( 'job_manager_get_job_listings_remote_position_check_not_exists', true, $args ) ) {
$remote_position_search = [
'relation' => 'OR',
$remote_position_search,
[
'key' => '_remote_position',
'compare' => 'NOT EXISTS',
],
];
}
}
if ( ! empty( $args['search_location'] ) ) {
$location_meta_keys = [ 'geolocation_formatted_address', '_job_location', 'geolocation_state_long' ];
$location_search = [ 'relation' => 'OR' ];
$locations = explode( ';', $args['search_location'] );
foreach ( $locations as $location ) {
$location = trim( $location );
if ( ! empty( $location ) ) {
$location_subquery = [ 'relation' => 'OR' ];
foreach ( $location_meta_keys as $meta_key ) {
$location_subquery[] = [
'key' => $meta_key,
'value' => $location,
'compare' => 'like',
];
}
$location_search[] = $location_subquery;
}
}
if ( $remote_position_search ) {
$location_search = [
'relation' => 'AND',
$remote_position_search,
$location_search,
];
}
$query_args['meta_query'][] = $location_search;
} elseif ( $remote_position_search ) {
$query_args['meta_query'][] = $remote_position_search;
}
if ( ! is_null( $args['featured'] ) ) {
$query_args['meta_query'][] = [
'key' => '_featured',
'value' => '1',
'compare' => $args['featured'] ? '=' : '!=',
];
}
if ( ! is_null( $args['filled'] ) || 1 === absint( get_option( 'job_manager_hide_filled_positions' ) ) ) {
$query_args['meta_query'][] = [
'key' => '_filled',
'value' => '1',
'compare' => $args['filled'] ? '=' : '!=',
];
}
if ( ! empty( $args['job_types'] ) ) {
$query_args['tax_query'][] = [
'taxonomy' => \WP_Job_Manager_Post_Types::TAX_LISTING_TYPE,
'field' => 'slug',
'terms' => $args['job_types'],
];
}
if ( ! empty( $args['search_categories'] ) ) {
$field = is_numeric( $args['search_categories'][0] ) ? 'term_id' : 'slug';
$operator = 'all' === get_option( 'job_manager_category_filter_type', 'all' ) && count( $args['search_categories'] ) > 1 ? 'AND' : 'IN';
$query_args['tax_query'][] = [
'taxonomy' => \WP_Job_Manager_Post_Types::TAX_LISTING_CATEGORY,
'field' => $field,
'terms' => array_values( $args['search_categories'] ),
'include_children' => 'AND' !== $operator,
'operator' => $operator,
];
}
if ( 'featured' === $args['orderby'] ) {
$query_args['orderby'] = [
'menu_order' => 'ASC',
'date' => 'DESC',
'ID' => 'DESC',
];
}
if ( 'rand_featured' === $args['orderby'] ) {
$query_args['orderby'] = [
'menu_order' => 'ASC',
'rand' => 'ASC',
];
}
if ( isset( $args['featured_first'] ) ) {
$args['featured_first'] = filter_var( $args['featured_first'], FILTER_VALIDATE_BOOLEAN );
}
if ( true === $args['featured_first'] && 'featured' !== $args['orderby'] && 'rand_featured' !== $args['orderby'] ) {
$query_args['orderby'] = [
'menu_order' => 'ASC',
$query_args['orderby'] => $query_args['order'],
];
}
$job_manager_keyword = sanitize_text_field( $args['search_keywords'] );
if ( ! empty( $job_manager_keyword ) && strlen( $job_manager_keyword ) >= apply_filters( 'job_manager_get_listings_keyword_length_threshold', 2 ) ) {
$query_args['s'] = $job_manager_keyword;
add_filter( 'posts_search', 'get_job_listings_keyword_search', 10, 2 );
}
$query_args = apply_filters( 'job_manager_get_listings', $query_args, $args );
if ( empty( $query_args['meta_query'] ) ) {
unset( $query_args['meta_query'] );
}
if ( empty( $query_args['tax_query'] ) ) {
unset( $query_args['tax_query'] );
}
/** This filter is documented in wp-job-manager.php */
$query_args['lang'] = apply_filters( 'wpjm_lang', null );
// Filter args.
$query_args = apply_filters( 'get_job_listings_query_args', $query_args, $args );
do_action( 'before_get_job_listings', $query_args, $args );
$should_cache = 'rand_featured' !== $args['orderby'] && 'rand' !== $args['orderby'];
// Cache results.
if ( apply_filters( 'get_job_listings_cache_results', $should_cache ) ) {
$to_hash = wp_json_encode( $query_args );
$query_args_hash = 'jm_' . md5( $to_hash . JOB_MANAGER_VERSION ) . WP_Job_Manager_Cache_Helper::get_transient_version( 'get_job_listings' );
$result = false;
$cached_query_posts = get_transient( $query_args_hash );
if ( is_string( $cached_query_posts ) ) {
$cached_query_posts = json_decode( $cached_query_posts, false );
if (
$cached_query_posts
&& is_object( $cached_query_posts )
&& isset( $cached_query_posts->max_num_pages )
&& isset( $cached_query_posts->found_posts )
&& isset( $cached_query_posts->posts )
&& is_array( $cached_query_posts->posts )
) {
if ( in_array( $query_args['fields'], [ 'ids', 'id=>parent' ], true ) ) {
// For these special requests, just return the array of results as set.
$posts = $cached_query_posts->posts;
} else {
$posts = array_map( 'get_post', $cached_query_posts->posts );
}
$result = new WP_Query();
$result->parse_query( $query_args );
$result->posts = $posts;
$result->found_posts = intval( $cached_query_posts->found_posts );
$result->max_num_pages = intval( $cached_query_posts->max_num_pages );
$result->post_count = count( $posts );
}
}
if ( false === $result ) {
$result = new WP_Query( $query_args );
$cacheable_result = [];
$cacheable_result['posts'] = array_values( $result->posts );
$cacheable_result['found_posts'] = $result->found_posts;
$cacheable_result['max_num_pages'] = $result->max_num_pages;
set_transient( $query_args_hash, wp_json_encode( $cacheable_result ), DAY_IN_SECONDS );
}
} else {
$result = new WP_Query( $query_args );
}
do_action( 'after_get_job_listings', $query_args, $args );
remove_filter( 'posts_search', 'get_job_listings_keyword_search', 10 );
return $result;
}
endif;
if ( ! function_exists( '_wpjm_shuffle_featured_post_results_helper' ) ) :
/**
* Helper function to maintain featured status when shuffling results.
*
* @param WP_Post $a
* @param WP_Post $b
*
* @return bool
*/
function _wpjm_shuffle_featured_post_results_helper( $a, $b ) {
if ( -1 === $a->menu_order || -1 === $b->menu_order ) {
// Left is featured.
if ( 0 === $b->menu_order ) {
return -1;
}
// Right is featured.
if ( 0 === $a->menu_order ) {
return 1;
}
}
return wp_rand( -1, 1 );
}
endif;
if ( ! function_exists( 'get_job_listings_keyword_search' ) ) :
/**
* Adds join and where query for keywords.
*
* @since 1.21.0
* @since 1.26.0 Moved from the `posts_clauses` filter to the `posts_search` to use WP Query's keyword
* search for `post_title` and `post_content`.
* @since 2.4.0 Reimplemented to provide the same functionality with WP core search:
* - Support for double quotes and negating terms (-).
* - Breaks down terms into individual words.
* - Meta and taxonomy name search happens together with search in title, excerpt and post content.
*
* @param string $search The search string.
* @param WP_Query $wp_query The query.
*
* @return string
*/
function get_job_listings_keyword_search( $search, $wp_query ) {
global $wpdb;
if ( ! function_exists( 'job_manager_construct_secondary_conditions' ) && ! function_exists( 'job_manager_construct_post_conditions' ) ) {
/**
* Constructs SQL clauses that return posts which have metas and terms that include or exclude the search term.
*
* @param string $search_term The search term.
* @param bool $is_excluding Whether posts should be excluded if they match the search terms.
* @param string $wildcard_search The wildcard character or empty string for exact matches.
*
* @return array The SQL clauses.
*/
function job_manager_construct_secondary_conditions( $search_term, $is_excluding, $wildcard_search ) {
global $wpdb;
if ( empty( $search_term ) ) {
return [];
}
$searchable_meta_keys = [
'_application',
'_company_name',
'_company_tagline',
'_company_website',
'_company_twitter',
'_job_location',
];
/**
* Filters the meta keys that are used in job search.
*
* @param array $searchable_meta_keys The meta keys.
*/
$searchable_meta_keys = apply_filters( 'job_listing_searchable_meta_keys', $searchable_meta_keys );
$not_string = $is_excluding ? 'NOT ' : '';
$conditions = [];
$meta_value = $wildcard_search . $wpdb->esc_like( $search_term ) . $wildcard_search;
/**
* Can be used to disable searching post meta for job searches.
*
* @param bool $enable_meta_search Return false to disable meta search.
*/
if ( apply_filters( 'job_listing_search_post_meta', true ) ) {
// Only selected meta keys.
if ( $searchable_meta_keys ) {
$meta_keys = implode( "','", array_map( 'esc_sql', $searchable_meta_keys ) );
// phpcs:disable WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Variables are safe or escaped.
$conditions[] = $wpdb->prepare( "{$wpdb->posts}.ID {$not_string}IN ( SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key IN ( '{$meta_keys}' ) AND meta_value LIKE %s )", $meta_value );
} else {
// No meta keys defined, search all post meta value.
$conditions[] = $wpdb->prepare( "{$wpdb->posts}.ID {$not_string}IN ( SELECT post_id FROM {$wpdb->postmeta} WHERE meta_value LIKE %s )", $meta_value );
// phpcs:enable WordPress.DB.PreparedSQL.InterpolatedNotPrepared
}
}
// Search taxonomy.
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Variables are safe or escaped.
$conditions[] = $wpdb->prepare( "{$wpdb->posts}.ID {$not_string}IN ( SELECT object_id FROM {$wpdb->term_relationships} AS tr LEFT JOIN {$wpdb->term_taxonomy} AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id LEFT JOIN {$wpdb->terms} AS t ON tt.term_id = t.term_id WHERE t.name LIKE %s )", $meta_value );
return $conditions;
}
/**
* Constructs SQL clauses that return posts which include or exclude the search term in the provided columns.
* The function replicates the functionality of WP_Query::parse_search.
*
* @see WP_Query::parse_search()
*
* @param string $search_term The search term to match.
* @param bool $is_excluding Whether posts that match the search term should be excluded.
* @param string $wildcard_search The wildcard character or empty string for exact matches.
* @param array $search_columns The columns to check.
*
* @return array The SQL clauses.
*/
function job_manager_construct_post_conditions( $search_term, $is_excluding, $wildcard_search, $search_columns ) {
global $wpdb;
if ( $is_excluding ) {
$like_op = 'NOT LIKE';
} else {
$like_op = 'LIKE';
}
$like = $wildcard_search . $wpdb->esc_like( $search_term ) . $wildcard_search;
$conditions = [];
foreach ( $search_columns as $search_column ) {
$search_column = esc_sql( $search_column );
//phpcs:disabled WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Variables are safe or escaped.
$conditions[] = $wpdb->prepare( "( {$wpdb->posts}.$search_column $like_op %s )", $like );
}
// Filter documented in WP_Query::get_posts.
$allow_query_attachment_by_filename = apply_filters( 'wp_allow_query_attachment_by_filename', false );
if ( ! empty( $allow_query_attachment_by_filename ) ) {
// sq1 is the wp_postmeta join for attachments in WP_Query::get_posts.
$conditions[] = $wpdb->prepare( "(sq1.meta_value $like_op %s)", $like );
//phpcs:enabled WordPress.DB.PreparedSQL.InterpolatedNotPrepared
}
return $conditions;
}
}
/**
* This function aims to provide similar search functionality with WP core while also including meta and taxonomy terms
* in the searched columns. The functionality of WP_Query::parse_search is replicated but with additional SQL
* clauses which are generated in the job_manager_construct_secondary_conditions function.
*/
$default_search_columns = [ 'post_title', 'post_excerpt', 'post_content' ];
$search_columns = ! empty( $wp_query->query_vars['search_columns'] ) ? $wp_query->query_vars['search_columns'] : $default_search_columns;
if ( ! is_array( $search_columns ) ) {
$search_columns = [ $search_columns ];
}
// Filter documented in WP_Query::parse_search.
$search_columns = (array) apply_filters( 'post_search_columns', $search_columns, $wp_query->query_vars['s'], $wp_query );
// Use only supported search columns.
$search_columns = array_intersect( $search_columns, $default_search_columns );
if ( empty( $search_columns ) ) {
$search_columns = $default_search_columns;
}
// Search terms starting with the exclusion prefix should be removed from the job search results.
$exclusion_prefix = apply_filters( 'wp_query_search_exclusion_prefix', '-' );
$wildcard_search = ! empty( $wp_query->query_vars['exact'] ) ? '' : '%';
$new_search = '';
$searchand = '';
foreach ( $wp_query->query_vars['search_terms'] as $search_term ) {
$is_excluding = $exclusion_prefix && str_starts_with( $search_term, $exclusion_prefix );
if ( $is_excluding ) {
$search_term = substr( $search_term, 1 );
$andor_op = 'AND';
} else {
$andor_op = 'OR';
}
$conditions = job_manager_construct_post_conditions( $search_term, $is_excluding, $wildcard_search, $search_columns );
$conditions = array_merge( $conditions, job_manager_construct_secondary_conditions( $search_term, $is_excluding, $wildcard_search ) );
$new_search .= "$searchand(" . implode( " $andor_op ", $conditions ) . ')';
$searchand = ' AND ';
}
if ( ! empty( $new_search ) ) {
$new_search = " AND ({$new_search}) ";
if ( ! is_user_logged_in() ) {
$new_search .= " AND ({$wpdb->posts}.post_password = '') ";
}
} else {
return $search;
}
return $new_search;
}
endif;
if ( ! function_exists( 'get_job_listing_post_statuses' ) ) :
/**
* Gets post statuses used for jobs.
*
* @since 1.12.0
* @return array
*/
function get_job_listing_post_statuses() {
return apply_filters(
'job_listing_post_statuses',
[
'draft' => _x( 'Draft', 'post status', 'wp-job-manager' ),
'expired' => _x( 'Expired', 'post status', 'wp-job-manager' ),
'preview' => _x( 'Preview', 'post status', 'wp-job-manager' ),
'pending' => _x( 'Pending approval', 'post status', 'wp-job-manager' ),
'pending_payment' => _x( 'Pending payment', 'post status', 'wp-job-manager' ),
'publish' => _x( 'Active', 'post status', 'wp-job-manager' ),
'future' => _x( 'Scheduled', 'post status', 'wp-job-manager' ),
]
);
}
endif;
if ( ! function_exists( 'get_featured_job_ids' ) ) :
/**
* Gets the ids of featured jobs.
*
* @since 1.0.4
* @return array
*/
function get_featured_job_ids() {
return get_posts(
[
'posts_per_page' => -1,
'suppress_filters' => false,
'post_type' => \WP_Job_Manager_Post_Types::PT_LISTING,
'post_status' => 'publish',
'meta_key' => '_featured', // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_key -- Used in production with no issues.
'meta_value' => '1', // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_value -- Used in production with no issues.
'fields' => 'ids',
]
);
}
endif;
if ( ! function_exists( 'get_job_listing_types' ) ) :
/**
* Gets job listing types.
*
* @since 1.0.0
* @param string|array $fields
* @return WP_Term[]
*/
function get_job_listing_types( $fields = 'all' ) {
if ( ! get_option( 'job_manager_enable_types' ) ) {
return [];
} else {
$args = [
'fields' => $fields,
'hide_empty' => false,
'order' => 'ASC',
'orderby' => 'name',
];
$args = apply_filters( 'get_job_listing_types_args', $args );
// Prevent users from filtering the taxonomy.
$args['taxonomy'] = \WP_Job_Manager_Post_Types::TAX_LISTING_TYPE;
return get_terms( $args );
}
}
endif;
if ( ! function_exists( 'get_job_listing_categories' ) ) :
/**
* Gets job categories.
*
* @since 1.0.0
* @return array
*/
function get_job_listing_categories() {
if ( ! get_option( 'job_manager_enable_categories' ) ) {
return [];
}
$args = [
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => false,
];
/**
* Change the category query arguments.
*
* @since 1.31.0
*
* @param array $args
*/
$args = apply_filters( 'get_job_listing_category_args', $args );
// Prevent users from filtering the taxonomy.
$args['taxonomy'] = \WP_Job_Manager_Post_Types::TAX_LISTING_CATEGORY;
return get_terms( $args );
}
endif;
if ( ! function_exists( 'job_manager_get_filtered_links' ) ) :
/**
* Shows links after filtering jobs
*
* @since 1.0.6
* @param array $args
* @return string
*/
function job_manager_get_filtered_links( $args = [] ) {
$job_categories = [];
$types = get_job_listing_types();
// Convert to slugs.
if ( $args['search_categories'] ) {
foreach ( $args['search_categories'] as $category ) {
if ( is_numeric( $category ) ) {
$category_object = get_term_by( 'id', $category, \WP_Job_Manager_Post_Types::TAX_LISTING_CATEGORY );
if ( ! is_wp_error( $category_object ) ) {
$job_categories[] = $category_object->slug;
}
} else {
$job_categories[] = $category;
}
}
}
$links = apply_filters(
'job_manager_job_filters_showing_jobs_links',
[
'reset' => [
'name' => __( 'Reset', 'wp-job-manager' ),
'url' => '#',
],
'rss_link' => [
'name' => __( 'RSS', 'wp-job-manager' ),
'url' => get_job_listing_rss_link(
apply_filters(
'job_manager_get_listings_custom_filter_rss_args',
[
'job_types' => isset( $args['filter_job_types'] ) ? implode( ',', $args['filter_job_types'] ) : '',
'search_location' => $args['search_location'],
'job_categories' => implode( ',', $job_categories ),
'search_keywords' => $args['search_keywords'],
]
)
),
],
],
$args
);
if (
count( (array) $args['filter_job_types'] ) === count( $types )
&& empty( $args['search_keywords'] )
&& empty( $args['search_location'] )
&& empty( $args['search_categories'] )
&& ! apply_filters( 'job_manager_get_listings_custom_filter', false )
) {
unset( $links['reset'] );
}
$return = '';
foreach ( $links as $key => $link ) {
$attrs = ! empty( $link['onclick'] ) ? ' onclick="' . esc_attr( $link['onclick'] ) . '"' : '';
$return .= '<a href="' . esc_url( $link['url'] ) . '" class="' . esc_attr( $key ) . '"' . $attrs . '>' . wp_kses_post( $link['name'] ) . '</a>';
}
return $return;
}
endif;
if ( ! function_exists( 'get_job_listing_rss_link' ) ) :
/**
* Get the Job Listing RSS link
*
* @since 1.0.0
* @param array $args
* @return string
*/
function get_job_listing_rss_link( $args = [] ) {
$rss_link = add_query_arg( urlencode_deep( array_merge( [ 'feed' => WP_Job_Manager_Post_Types::get_job_feed_name() ], $args ) ), home_url() );
return $rss_link;
}
endif;
if ( ! function_exists( 'wp_job_manager_notify_new_user' ) ) :
/**
* Handles notification of new users.
*
* @since 1.23.10
* @param int $user_id
* @param string|bool $password
*/
function wp_job_manager_notify_new_user( $user_id, $password ) {
global $wp_version;
if ( version_compare( $wp_version, '4.3.1', '<' ) ) {
// phpcs:ignore WordPress.WP.DeprecatedParameters.Wp_new_user_notificationParam2Found
wp_new_user_notification( $user_id, $password );
} else {
$notify = 'admin';
if ( empty( $password ) ) {
$notify = 'both';
}
wp_new_user_notification( $user_id, null, $notify );
}
}
endif;
if ( ! function_exists( 'wp_job_manager_create_account' ) ) :
/**
* Handles account creation.
*
* @since 1.0.0
* @param string|array|object $args containing username, email, role.
* @param string $deprecated role string.
* @return WP_Error|bool True if account was created.
*/
function wp_job_manager_create_account( $args, $deprecated = '' ) {
// Soft Deprecated in 1.20.0.
if ( ! is_array( $args ) ) {
$args = [
'username' => '',
'password' => false,
'email' => $args,
'role' => $deprecated,
];
} else {
$defaults = [
'username' => '',
'email' => '',
'password' => false,
'role' => get_option( 'default_role' ),
];
$args = wp_parse_args( $args, $defaults );
}
$username = sanitize_user( $args['username'], true );
$email = apply_filters( 'user_registration_email', sanitize_email( $args['email'] ) );
if ( empty( $email ) ) {
return new WP_Error( 'validation-error', __( 'Invalid email address.', 'wp-job-manager' ) );
}
if ( empty( $username ) ) {
$username = sanitize_user( current( explode( '@', $email ) ), true );
}
if ( ! is_email( $email ) ) {
return new WP_Error( 'validation-error', __( 'Your email address isn’t correct.', 'wp-job-manager' ) );
}
if ( email_exists( $email ) ) {
return new WP_Error( 'validation-error', __( 'This email is already registered, please choose another one.', 'wp-job-manager' ) );
}
// Ensure username is unique.
$append = 1;
$o_username = $username;
while ( username_exists( $username ) ) {
$username = $o_username . $append;
$append ++;
}
// Final error checking.
$reg_errors = new WP_Error();
$reg_errors = apply_filters( 'job_manager_registration_errors', $reg_errors, $username, $email );
do_action( 'job_manager_register_post', $username, $email, $reg_errors );
if ( $reg_errors->get_error_code() ) {
return $reg_errors;
}
// Create account.
$new_user = [
'user_login' => $username,
'user_pass' => $args['password'],
'user_email' => $email,
'role' => $args['role'],
];
// User is forced to set up account with email sent to them. This password will remain a secret.
if ( empty( $new_user['user_pass'] ) ) {
$new_user['user_pass'] = wp_generate_password();
}
$user_id = wp_insert_user( apply_filters( 'job_manager_create_account_data', $new_user ) );
if ( is_wp_error( $user_id ) ) {
return $user_id;
}
/**
* Send notification to new users.
*
* @since 1.28.0
*
* @param int $user_id
* @param string|bool $password
* @param array $new_user {
* Information about the new user.
*
* @type string $user_login Username for the user.
* @type string $user_pass Password for the user (may be blank).
* @type string $user_email Email for the new user account.
* @type string $role New user's role.
* }
*/
do_action( 'wpjm_notify_new_user', $user_id, $args['password'], $new_user );
// Login.
add_action( 'set_logged_in_cookie', '_wpjm_update_global_login_cookie' );
wp_set_auth_cookie( $user_id, true, is_ssl() );
wp_set_current_user( $user_id );
remove_action( 'set_logged_in_cookie', '_wpjm_update_global_login_cookie' );
return true;
}
endif;
/**
* Allows for immediate access to the logged in cookie after mid-request login.
*
* @since 1.32.2
* @access private
*
* @param string $logged_in_cookie Logged in cookie.
*/
function _wpjm_update_global_login_cookie( $logged_in_cookie ) {
$_COOKIE[ LOGGED_IN_COOKIE ] = $logged_in_cookie;
}
/**
* Checks if the user can upload a file via the Ajax endpoint.
*
* @since 1.26.2
* @return bool
*/
function job_manager_user_can_upload_file_via_ajax() {
$can_upload = is_user_logged_in() && job_manager_user_can_post_job();
if ( has_filter( 'job_manager_ajax_file_upload_enabled' ) ) {
_deprecated_hook( 'job_manager_ajax_file_upload_enabled', '1.30.0', 'job_manager_user_can_upload_file_via_ajax' );
$can_upload = apply_filters( 'job_manager_ajax_file_upload_enabled', $can_upload );
}
/**
* Override ability of a user to upload a file via Ajax.
*
* @since 1.26.2
* @param bool $can_upload True if they can upload files from Ajax endpoint.
*/
return apply_filters( 'job_manager_user_can_upload_file_via_ajax', $can_upload );
}
/**
* Checks if an the user can post a job. If accounts are required, and reg is enabled, users can post (they signup at the same time).
*
* @since 1.5.1
* @return bool
*/
function job_manager_user_can_post_job() {
$can_post = true;
if ( ! is_user_logged_in() ) {
if ( job_manager_user_requires_account() && ! job_manager_enable_registration() ) {
$can_post = false;
}
}
return apply_filters( 'job_manager_user_can_post_job', $can_post );
}
/**
* Checks if the user can edit a job.
*
* @since 1.5.1
* @param int|WP_Post $job_id
* @return bool
*/
function job_manager_user_can_edit_job( $job_id ) {
$can_edit = true;
if ( ! is_user_logged_in() || ! $job_id ) {
$can_edit = false;
} else {
$job = get_post( $job_id );
if ( ! $job || \WP_Job_Manager_Post_Types::PT_LISTING !== $job->post_type || ( absint( $job->post_author ) !== get_current_user_id() && ! current_user_can( 'edit_post', $job_id ) ) ) {
$can_edit = false;
}
}
return apply_filters( 'job_manager_user_can_edit_job', $can_edit, $job_id );
}
/**
* Checks if the visitor is currently on a WPJM page, job listing, or taxonomy.
*
* @since 1.30.0
*
* @return bool
*/
function is_wpjm() {
/**
* Filter the result of is_wpjm()
*
* @since 1.30.0
*
* @param bool $is_wpjm
*/
return apply_filters( 'is_wpjm', ( is_wpjm_page() || has_wpjm_shortcode() || is_wpjm_job_listing() || is_wpjm_taxonomy() ) );
}
/**
* Checks if the visitor is currently on a WPJM page.
*
* @since 1.30.0
*
* @return bool
*/
function is_wpjm_page() {
$is_wpjm_page = is_post_type_archive( \WP_Job_Manager_Post_Types::PT_LISTING );
if ( ! $is_wpjm_page ) {
$wpjm_page_ids = array_filter(
[
get_option( 'job_manager_submit_job_form_page_id', false ),
get_option( 'job_manager_job_dashboard_page_id', false ),
get_option( 'job_manager_jobs_page_id', false ),
]
);
/**
* Filters a list of all page IDs related to WPJM.
*
* @since 1.30.0
*
* @param int[] $wpjm_page_ids
*/
$wpjm_page_ids = array_unique( apply_filters( 'job_manager_page_ids', $wpjm_page_ids ) );
if ( ! empty( $wpjm_page_ids ) ) {
$is_wpjm_page = is_page( $wpjm_page_ids );
}
}
/**
* Filter the result of is_wpjm_page()
*
* @since 1.30.0
*
* @param bool $is_wpjm_page
*/
return apply_filters( 'is_wpjm_page', $is_wpjm_page );
}
/**
* Checks if the provided content or the current single page or post has a WPJM shortcode.
*
* @param string|null $content Content to check. If not provided, it uses the current post content.
* @param string|array|null $tag Check specifically for one or more shortcodes. If not provided, checks for any WPJM shortcode.
*
* @return bool
*/
function has_wpjm_shortcode( $content = null, $tag = null ) {
global $post;
$has_wpjm_shortcode = false;
if ( null === $content && is_singular() && is_a( $post, 'WP_Post' ) ) {
$content = $post->post_content;
}
if ( ! empty( $content ) ) {
$wpjm_shortcodes = [ 'submit_job_form', 'job_dashboard', 'jobs', 'job', 'job_summary', 'job_apply' ];
/**
* Filters a list of all shortcodes associated with WPJM.
*
* @since 1.30.0
*
* @param string[] $wpjm_shortcodes
*/
$wpjm_shortcodes = array_unique( apply_filters( 'job_manager_shortcodes', $wpjm_shortcodes ) );
if ( null !== $tag ) {
if ( ! is_array( $tag ) ) {
$tag = [ $tag ];
}
$wpjm_shortcodes = array_intersect( $wpjm_shortcodes, $tag );
}
foreach ( $wpjm_shortcodes as $shortcode ) {
if ( has_shortcode( $content, $shortcode ) ) {
$has_wpjm_shortcode = true;
break;
}
}
}
/**
* Filter the result of has_wpjm_shortcode()
*
* @since 1.30.0
*
* @param bool $has_wpjm_shortcode
*/