Post Class for Resume Database

Useful functions for building a resume database in WordPress

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
<?php
/**
 * @ Author: Carl Victor Fontanos.
 * @ Class: NGP_Posts
 *
 */



add_action('wp_ajax_cvf_ngp_frontend_display_resumes', array('NGP_Posts', 'cvf_ngp_frontend_display_resumes') );
add_action('wp_ajax_nopriv_cvf_ngp_frontend_display_resumes', array('NGP_Posts', 'cvf_ngp_frontend_display_resumes') );

add_action('wp_ajax_cvf_ngp_create_new_resume', array('NGP_Posts', 'cvf_ngp_create_new_resume') );
add_action('wp_ajax_nopriv_cvf_ngp_create_new_resume', array('NGP_Posts', 'cvf_ngp_create_new_resume') );

add_action('wp_ajax_cvf_ngp_create_new_resume_form', array('NGP_Posts', 'cvf_ngp_create_new_resume_form') );
add_action('wp_ajax_nopriv_cvf_ngp_create_new_resume_form', array('NGP_Posts', 'cvf_ngp_create_new_resume_form') );

add_action('wp_ajax_cvf_ngp_pagination_load_resumes', array('NGP_Posts', 'cvf_ngp_pagination_load_resumes') );
add_action('wp_ajax_nopriv_cvf_ngp_pagination_load_resumes', array('NGP_Posts', 'cvf_ngp_pagination_load_resumes') );

add_action('wp_ajax_cvf_ngp_preveiw_resume', array('NGP_Posts', 'cvf_ngp_preveiw_resume') );
add_action('wp_ajax_nopriv_cvf_ngp_preveiw_resume', array('NGP_Posts', 'cvf_ngp_preveiw_resume') );

add_action('wp_ajax_cvf_ngp_edit_resume', array('NGP_Posts', 'cvf_ngp_edit_resume') );
add_action('wp_ajax_nopriv_cvf_ngp_edit_resume', array('NGP_Posts', 'cvf_ngp_edit_resume') );

add_action('wp_ajax_cvf_ngp_update_resume', array('NGP_Posts', 'cvf_ngp_update_resume') );
add_action('wp_ajax_nopriv_cvf_ngp_update_resume', array('NGP_Posts', 'cvf_ngp_update_resume') );

add_action('wp_ajax_cvf_ngp_delete_attachment', array('NGP_Posts', 'cvf_ngp_delete_attachment') );
add_action('wp_ajax_nopriv_cvf_ngp_delete_attachment', array('NGP_Posts', 'cvf_ngp_delete_attachment') );

add_action('wp_ajax_cvf_ngp_delete_resume', array('NGP_Posts', 'cvf_ngp_delete_resume') );
add_action('wp_ajax_nopriv_cvf_ngp_delete_resume', array('NGP_Posts', 'cvf_ngp_delete_resume') );

add_action('before_delete_post', array('NGP_Posts', 'cvf_ngp_delete_all_resume_attachments') );

add_action('init', array('NGP_Posts', 'cvf_ngp_register_resume_post_type') );

add_action('init', array('NGP_Posts', 'cvf_ngp_register_blog_post_type') );
add_action('init', array('NGP_Posts', 'cvf_ngp_create_blog_categories') );

add_action('generate_rewrite_rules', array('NGP_Posts', 'cvf_ngp_blog_datearchives_rewrite_rules') );

add_action( 'admin_menu', array('NGP_Posts', 'cvf_ngp_remove_menus') );

add_filter ('wp_mail_content_type', array('NGP_Posts', 'cvf_ngp_mail_content_type') );



class NGP_Posts {

    public function __construct() {}

    public static function cvf_ngp_get_category_posts($category_slug, $limit) {

        global $post;

        $args = array(
            'numberposts' => $limit,
            'category_name' => $category_slug,
            'order' => 'ASC',
            'post_status' => 'publish'
        );

        $posts = get_posts( $args );

        return $posts;

    }

    public static function cvf_ngp_get_forums($limit, $type){

        if($type = 'category'){
            $post_parent = 'post_parent = 0';
        } else {
            $post_parent = 'post_parent > 0';
        }
        global $wpdb;

        $table = $wpdb->prefix . 'posts';
        $forums = $wpdb->get_results($wpdb->prepare("
            SELECT * FROM $table WHERE post_type = 'forum' AND $post_parent
            ORDER BY post_title ASC LIMIT %d
            "
, $limit ));

        return $forums;
    }

    public static function cvf_ngp_register_resume_post_type() {

        $labels = array(
            'name'                  => _x('NGP Resumes', 'post type general name'),
            'singular_name'         => _x('Resume', 'post type singular name'),
            'all_items'             => _x('All Resumes', 'post type name'),
            'add_new'               => _x('Create New Resume', 'new post'),
            'add_new_item'          => __('Create New Resume'),
            'edit_item'             => __('Edit Resume'),
            'new_item'              => __('New Resume'),
            'view_item'             => __('View Resume'),
            'search_items'          => __('Search Resumes'),
            'not_found'             => __('No resumes found'),
            'not_found_in_trash'    => __('No resumes found in the Trash'),
            'parent_item_colon'     => ''
        );
        $args = array(
            'labels'                => $labels,
            'public'                => true,
            'publicly_queryable'    => true,
            'show_ui'               => true,
            'query_var'             => true,
            'rewrite'               => true,
            'capability_type'       => 'post',
            'hierarchical'          => false,
            'menu_position'         => 8,
            'supports'              => array('title','editor','thumbnail')
        );

        register_post_type( 'resume' , $args );
    }
   
    public static function cvf_ngp_register_blog_post_type() {

        $labels = array(
            'name'                  => _x('NGP Blogs', 'post type general name'),
            'singular_name'         => _x('Blog', 'post type singular name'),
            'all_items'             => _x('All Blogs', 'post type name'),
            'add_new'               => _x('Create New Blog', 'new post'),
            'add_new_item'          => __('Create New Blog'),
            'edit_item'             => __('Edit Blog'),
            'new_item'              => __('New Blog'),
            'view_item'             => __('View Blog'),
            'search_items'          => __('Search Blogs'),
            'not_found'             => __('No blogs found'),
            'not_found_in_trash'    => __('No blogs found in the Trash'),
            'parent_item_colon'     => ''
        );
        $args = array(
            'labels'                => $labels,
            'public'                => true,
            'publicly_queryable'    => true,
            'show_ui'               => true,
            'query_var'             => true,
            'rewrite'               => true,
            'capability_type'       => 'post',
            'hierarchical'          => false,
            'menu_position'         => 8,
            'has_archive'           => true,
            'supports'              => array('title','editor','thumbnail')
        );

        register_post_type( 'blog' , $args );
    }
   
    public static function cvf_ngp_create_blog_categories() {
        $labels = array(
            'name'              => _x( 'Blog Categories', 'taxonomy general name' ),
            'singular_name'     => _x( 'Blog Category', 'taxonomy singular name' ),
            'search_items'      => __( 'Search Blog Categories' ),
            'all_items'         => __( 'All Blog Categories' ),
            'parent_item'       => __( 'Parent Blog Category' ),
            'parent_item_colon' => __( 'Parent Blog Category:' ),
            'edit_item'         => __( 'Edit Blog Category' ),
            'update_item'       => __( 'Update Blog Category' ),
            'add_new_item'      => __( 'Create New Blog Category' ),
            'new_item_name'     => __( 'New Blog Category Name' ),
            'menu_name'         => __( 'Categories' ),
        );

        $args = array(
            'hierarchical'      => true,
            'labels'            => $labels,
            'show_ui'           => true,
            'show_admin_column' => true,
            'query_var'         => true,
            'rewrite'           => array( 'slug' => 'blog-category' ),
        );

        register_taxonomy( 'blog_categories', array( 'blog' ), $args );
    }

    public static function cvf_ngp_frontend_display_resumes() {

        global $wpdb, $current_user;
        $msg = '';

        if(isset($_POST['page'])){
            $page = sanitize_text_field($_POST['page']);
            $cur_page = $page;
            $page -= 1;
            $per_page = 10;
            $previous_btn = true;
            $next_btn = true;
            $first_btn = true;
            $last_btn = true;
            $start = $page * $per_page;

            $posts = $wpdb->prefix . "posts";
            $postmeta = $wpdb->prefix . "postmeta";

            $where_name = ''; $where_experience = ''; $where_education = ''; $where_country = ''; $where_industry = '';

            if(!empty($_POST['ngp_name'])){
                $where_name = ' AND (p.post_title LIKE "%%' . $_POST['ngp_name'] . '%%") ';
            }
            if(!empty($_POST['ngp_industry'])){
                $where_industry = ' AND (m1.meta_value LIKE "%%' . $_POST['ngp_industry'] . '%%") ';
            }
            if(!empty($_POST['ngp_experience'])){
                $where_experience = ' AND (m2.meta_value LIKE "%%' . $_POST['ngp_experience'] . '%%") ';
            }
            if(!empty($_POST['ngp_country'])){
                $where_country = ' AND (m3.meta_value LIKE "%%' . $_POST['ngp_country'] . '%%") ';
            }
            if(!empty($_POST['ngp_education'])){
                $where_education = ' AND (m4.meta_value LIKE "%%' . $_POST['ngp_education'] . '%%") ';
            }

            $joins = '
                LEFT JOIN '
. $postmeta . ' m1 ON p.ID = m1.post_id AND m1.meta_key = "ngp_industry"
                LEFT JOIN '
. $postmeta . ' m2 ON p.ID = m2.post_id AND m2.meta_key = "ngp_experience"
                LEFT JOIN '
. $postmeta . ' m3 ON p.ID = m3.post_id AND m3.meta_key = "ngp_country"
                LEFT JOIN '
. $postmeta . ' m4 ON p.ID = m4.post_id AND m4.meta_key = "ngp_education" ';

            $all_user_resumes = $wpdb->get_results($wpdb->prepare("
                SELECT p.ID, p.post_title, m1.meta_value as 'ngp_industry', m2.meta_value as 'ngp_experience', m3.meta_value as 'ngp_country', m4.meta_value as 'ngp_education'
                FROM "
. $posts . ' p ' . $joins . "
                WHERE p.post_type = 'resume' AND p.post_status = 'publish' "
. $where_name . $where_industry . $where_experience . $where_country . $where_education . "
                ORDER BY p.post_date DESC LIMIT %d, %d"
, $start, $per_page ) );


            $count = $wpdb->get_var($wpdb->prepare("
                SELECT COUNT(p.ID)
                FROM "
. $posts . ' p ' . $joins . "
                WHERE p.post_type = 'resume' AND post_status = 'publish' "
. $where_name . $where_industry . $where_experience . $where_country . $where_education, array() ) );

            $msg .= '
            <br class = "clear" />

            <table class="table table-striped table-hover table-responsive table-resume">
                <tr>
                    <th>Name</th>
                    <th>Industry</th>
                    <th>Experience</th>
                    <th>Education</th>             
                    <th>Country</th>
                </tr>'
;

            if($all_user_resumes):
                foreach($all_user_resumes as $key => $resume):
                    $msg .= '
                    <tr class = "resume_'
. $resume->ID . '">
                        <td><a href="'
.get_permalink($resume->ID).'" id = "resume-'.$resume->ID.'" class = "resume_title">' . $resume->post_title . '</a></td>
                        <td>'
. $resume->ngp_industry .'</td>
                        <td>'
. $resume->ngp_experience .'</td>
                        <td>'
. $resume->ngp_education .'</td>                 
                        <td>'
. $resume->ngp_country .'</td>
                    </tr>'
;
                endforeach;
            else:
                $msg .= '<tr><td colspan="5">No results found.</td></tr>';
            endif;

            $msg .= '</table>';

            $msg = "<div class='cvf-universal-content'>" . $msg . "</div><br class = 'clear' />";

            $no_of_paginations = ceil($count / $per_page);

            if ($cur_page >= 7) {
                $start_loop = $cur_page - 3;
                if ($no_of_paginations > $cur_page + 3)
                    $end_loop = $cur_page + 3;
                else if ($cur_page <= $no_of_paginations && $cur_page > $no_of_paginations - 6) {
                    $start_loop = $no_of_paginations - 6;
                    $end_loop = $no_of_paginations;
                } else {
                    $end_loop = $no_of_paginations;
                }
            } else {
                $start_loop = 1;
                if ($no_of_paginations > 7)
                    $end_loop = 7;
                else
                    $end_loop = $no_of_paginations;
            }

            $pag_container .= "
            <div class='cvf-universal-pagination'>
                <ul>"
;

            if ($first_btn && $cur_page > 1) {
                $pag_container .= "<li p='1' class='active'>First</li>";
            } else if ($first_btn) {
                $pag_container .= "<li p='1' class='inactive'>First</li>";
            }

            if ($previous_btn && $cur_page > 1) {
                $pre = $cur_page - 1;
                $pag_container .= "<li p='$pre' class='active'>Previous</li>";
            } else if ($previous_btn) {
                $pag_container .= "<li class='inactive'>Previous</li>";
            }
            for ($i = $start_loop; $i <= $end_loop; $i++) {

                if ($cur_page == $i)
                    $pag_container .= "<li p='$i' class = 'selected' >{$i}</li>";
                else
                    $pag_container .= "<li p='$i' class='active'>{$i}</li>";
            }

            if ($next_btn && $cur_page < $no_of_paginations) {
                $nex = $cur_page + 1;
                $pag_container .= "<li p='$nex' class='active'>Next</li>";
            } else if ($next_btn) {
                $pag_container .= "<li class='inactive'>Next</li>";
            }

            if ($last_btn && $cur_page < $no_of_paginations) {
                $pag_container .= "<li p='$no_of_paginations' class='active'>Last</li>";
            } else if ($last_btn) {
                $pag_container .= "<li p='$no_of_paginations' class='inactive'>Last</li>";
            }

            $pag_container = $pag_container . "
                </ul>
            </div>"
;

            echo
            '<div class = "cvf-pagination-content">' . $msg . '</div>' .
            '<div class = "cvf-pagination-nav">' . $pag_container . '</div>';

        }
        exit();
    }

    public static function cvf_ngp_create_new_resume() {

        global $current_user, $wpdb;

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'create_new_resume') {

            foreach($_POST as $k => $value) {
                $_POST[$k] = sanitize_text_field($value);
            }

            $ngp_resume = array(
                'post_title'    => wp_strip_all_tags( $_POST['ngp_name'] ),
                'post_status'   => 'publish',
                'post_type'     => 'resume',
                'post_author'   => $current_user->ID,
            );

            $post_id = wp_insert_post( $ngp_resume );

            update_post_meta($post_id, 'ngp_phone', $_POST['ngp_phone']);
            update_post_meta($post_id, 'ngp_industry', $_POST['ngp_industry']);
            update_post_meta($post_id, 'ngp_headline', $_POST['ngp_headline']);
            update_post_meta($post_id, 'ngp_experience', $_POST['ngp_experience']);
            update_post_meta($post_id, 'ngp_education', $_POST['ngp_education']);
            update_post_meta($post_id, 'ngp_country', $_POST['ngp_country']);
            update_post_meta($post_id, 'ngp_zipcode', $_POST['ngp_zipcode']);
           
            echo $post_id;
           
            $subsribed_users = $wpdb->get_results($wpdb->prepare("
            SELECT * FROM wp_users u
            LEFT JOIN wp_usermeta um ON u.ID = um.user_id
            WHERE um.meta_key = 'ngp_subscribe_joblistings'
            AND um.meta_value = 1"
, array() ));
           
            foreach($subsribed_users as $key => $user) {
               
                $from = get_option('admin_email');
                $headers = 'From: NGPPortfolioCo <"' . $from . '">';
                $subject = "New Job Application Submitted ". $_POST['ngp_headline'] . " (" . $_POST['ngp_industry'] .") - " . $_POST['ngp_name'];
               
                ob_start();
                           
               
                echo '
                <p>Dear '
. $user->display_name . ', <br />
                A new job was posted on NGPPortfolioCo, and the details can be found bellow:
                </p><br />
               
                <table style="width:100%; color: #333; font-family: Arial, Helvetica, sans-serif;" border = "1" >
                    <tr>
                        <th colspan = "2" style = "font-size: 30px; padding: 10px 0; background: #5C0F26; color: #fff; ">NGPPortfolioCO</th>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Country</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_country', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Country</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_country', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Zip Code</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_zipcode', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Education</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_education', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Experience</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_experience', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Phone</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_phone', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Industry</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_industry', true) . '</td>
                    </tr>
                    <tr>
                        <th style = "padding: 10px; margin: 10px;">Job Title / Headline</th>
                        <td style = "padding: 10px;">'
. get_post_meta($post_id, 'ngp_headline', true) . '</td>
                    </tr>
                    </tr>
                        <th style = "padding: 10px; margin: 10px;">Resume</th>
                        <td style = "padding: 10px;">Go to our <a href = "'
. home_url() . '">website</a> to view the attached resume</td>
                    </tr>
                </table>
                <br />
                <p>As a member of NGPPortfolioCo, we will send you new job listings. To view other joba, search our list of current openings:'
. home_url('/resume-database/') . '</p>         
                <br />
                <p>Thank you,<br />
                NGPPortfolioCo Team</p>                
                '
;
                   
                $message = ob_get_contents();
               
                ob_end_clean();

                wp_mail($user->user_email, $subject, $message, $headers);
            }
        }

        exit();
    }
   
    public static function cvf_ngp_mail_content_type() {
        return 'text/html';
    }



    public static function cvf_ngp_create_new_resume_form() {

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'create_new_resume_form') {

            $ngp_field = self::cvf_ngp_get_all_pre_resume_fields(166);

            $new_resume_form .= '
            <h1>Step 1</h1>
            <hr /><br />

            <div class = "col-sm-12 pads">
                <div class = "create-new-resume-response"></div>
            </div>

            <div class = "ngp-create-new-resume-form">
                <div class = "col-sm-6 pads">
                    <div class="form-group">
                        <label for="ngp_name">Full Name</label><br />
                        <input type="text" name="ngp_name" class="form-control ngp_name" />
                    </div>'
;

                    foreach( array_slice($ngp_field, 0, 5) as $field ):
                        $ngp_val = get_post_meta(166, $field->meta_key, false);

                        if ($ngp_val[0]['type'] == 'text' || $ngp_val[0]['type'] == 'number'):
                            $new_resume_form .= '
                            <div class="form-group">
                                <label for="'
. $ngp_val[0]['name'] . '">' . $ngp_val[0]['label'] . ':</label><br />
                                <input type="text" name="'
. $ngp_val[0]['name'] . '" class="form-control ' . $ngp_val[0]['name'] . '" />
                            </div>'
;

                        elseif ($ngp_val[0]['type'] == 'select'):
                            $new_resume_form .= '
                            <div class="form-group">
                                <label for="'
. $ngp_val[0]['name'] . '">' . $ngp_val[0]['label'] . ':</label><br />

                                <select id = "'
. $ngp_val[0]['name'] . '" name="' . $ngp_val[0]['name'] . '" class="ngp-select form-control ' . $ngp_val[0]['name'] . '">
                                    <option value="">- Select '
. $ngp_val[0]['label'] . ' -</option>';
                                    foreach ($ngp_val[0]['choices'] as $val):
                                        $new_resume_form .= '<option value="' . $val . '">' . $val . '</option>';
                                    endforeach;
                                $new_resume_form .= '
                                </select>
                            </div>'
;

                        endif;

                    endforeach;

                $new_resume_form .= '
                </div>

                <div class = "col-sm-6 pads">'
;
                    foreach( array_slice($ngp_field, 5, 12) as $field ):
                        $ngp_val = get_post_meta(166, $field->meta_key, false);

                        if ($ngp_val[0]['type'] == 'text' || $ngp_val[0]['type'] == 'number'):
                            $new_resume_form .= '
                            <div class="form-group">
                                <label for="'
. $ngp_val[0]['name'] . '">' . $ngp_val[0]['label'] . ':</label><br />
                                <input type="text" name="'
. $ngp_val[0]['name'] . '" class="form-control ' . $ngp_val[0]['name'] . '" />
                            </div>'
;

                        elseif ($ngp_val[0]['type'] == 'select'):
                            $new_resume_form .= '
                            <div class="form-group">
                                <label for="'
. $ngp_val[0]['name'] . '">' . $ngp_val[0]['label'] . ':</label><br />

                                <select id = "'
. $ngp_val[0]['name'] . '" name="' . $ngp_val[0]['name'] . '" class="ngp-select form-control ' . $ngp_val[0]['name'] . '">
                                    <option value="">- Select '
. $ngp_val[0]['label'] . ' -</option>';
                                    foreach ($ngp_val[0]['choices'] as $val):
                                        $new_resume_form .= '<option value="' . $val . '">' . $val . '</option>';
                                    endforeach;
                                $new_resume_form .= '
                                </select>
                            </div>'
;
                        endif;
                    endforeach;

                    $new_resume_form .= '
                    <input type = "submit" value = "Submit Resume" class = "btn btn-primary create-new-resume" />
                </div>
            </div>

            <br class = "clear" /><br />
            '
;

            echo $new_resume_form;

        }

        exit();
    }

    public static function cvf_ngp_get_all_pre_resume_fields($post_id) {

        global $wpdb;

        $table = $wpdb->prefix . 'postmeta';
        $pre_resume_fields = $wpdb->get_results($wpdb->prepare("
            SELECT * FROM $table WHERE post_id = %d AND meta_key LIKE '%%field_%%'"
, $post_id ));

        return $pre_resume_fields;

    }

    public static function cvf_ngp_get_all_user_resumes() {

        global $wpdb, $current_user;

        $table = $wpdb->prefix . 'posts';
        $user_resumes = $wpdb->get_results($wpdb->prepare("
            SELECT * FROM $table WHERE post_author = %d
            AND post_type = 'resume' AND post_status = 'publish'"
, $current_user->ID ));

        return $user_resumes;

    }

    public static function cvf_ngp_pagination_load_resumes() {

        global $wpdb, $current_user;
        $msg = '';

        if(isset($_POST['page'])){
            $page = sanitize_text_field($_POST['page']);
            $cur_page = $page;
            $page -= 1;
            $per_page = 5;
            $previous_btn = true;
            $next_btn = true;
            $first_btn = true;
            $last_btn = true;
            $start = $page * $per_page;

            $posts = $wpdb->prefix . "posts";
            $postmeta = $wpdb->prefix . "postmeta";

            $where_name = ''; $where_experience = ''; $where_education = ''; $where_country = ''; $where_industry = '';

            if(!empty($_POST['ngp_name'])){
                $where_name = ' AND (p.post_title LIKE "%%' . $_POST['ngp_name'] . '%%") ';
            }
            if(!empty($_POST['ngp_industry'])){
                $where_industry = ' AND (m1.meta_value LIKE "%%' . $_POST['ngp_industry'] . '%%") ';
            }
            if(!empty($_POST['ngp_experience'])){
                $where_experience = ' AND (m2.meta_value LIKE "%%' . $_POST['ngp_experience'] . '%%") ';
            }
            if(!empty($_POST['ngp_country'])){
                $where_country = ' AND (m3.meta_value LIKE "%%' . $_POST['ngp_country'] . '%%") ';
            }
            if(!empty($_POST['ngp_education'])){
                $where_education = ' AND (m4.meta_value LIKE "%%' . $_POST['ngp_education'] . '%%") ';
            }

            $joins = '
                LEFT JOIN '
. $postmeta . ' m1 ON p.ID = m1.post_id AND m1.meta_key = "ngp_industry"
                LEFT JOIN '
. $postmeta . ' m2 ON p.ID = m2.post_id AND m2.meta_key = "ngp_experience"
                LEFT JOIN '
. $postmeta . ' m3 ON p.ID = m3.post_id AND m3.meta_key = "ngp_country"
                LEFT JOIN '
. $postmeta . ' m4 ON p.ID = m4.post_id AND m4.meta_key = "ngp_education" ';

            $all_user_resumes = $wpdb->get_results($wpdb->prepare("
                SELECT p.ID, p.post_title, m1.meta_value as 'ngp_industry', m2.meta_value as 'ngp_experience', m3.meta_value as 'ngp_country', m4.meta_value as 'ngp_education'
                FROM "
. $posts . ' p ' . $joins . "
                WHERE p.post_type = 'resume' AND p.post_status = 'publish' AND p.post_author = %d "
. $where_name . $where_industry . $where_experience . $where_country . $where_education . "
                ORDER BY p.post_date DESC LIMIT %d, %d"
, $current_user->ID, $start, $per_page ) );


            $count = $wpdb->get_var($wpdb->prepare("
                SELECT COUNT(p.ID)
                FROM "
. $posts . ' p ' . $joins . "
                WHERE p.post_type = 'resume' AND post_status = 'publish' AND post_author = %d "
. $where_name . $where_industry . $where_experience . $where_country . $where_education, $current_user->ID ) );

            $msg .= '
            <br class = "clear" />

            <table class="table table-striped table-hover table-responsive table-resume">
                <tr>
                    <th>Name</th>
                    <th>Experience</th>
                    <th>Education</th>
                    <th>Country</th>
                    <th>Action</th>
                </tr>'
;

            if($all_user_resumes):
                foreach($all_user_resumes as $key => $resume):
                    $msg .= '
                    <tr class = "resume_'
. $resume->ID . '">
                        <td><a href="#" id = "resume-'
.$resume->ID.'" class = "resume_title">' . $resume->post_title . '</a></td>
                        <td>'
. $resume->ngp_experience .'</td>
                        <td>'
. $resume->ngp_education .'</td>
                        <td>'
. $resume->ngp_country .'</td>
                        <td>
                            <a href = "#" title = "Edit" class = "edit_resume" id = "edit-'
. $resume->ID . '"><span class = "glyphicon glyphicon-pencil"></span></a>&nbsp;
                            <a href = "#" title = "Delete" class = "delete_resume" id = "del-'
. $resume->ID . '"><span class = "glyphicon glyphicon-trash"></span></a>
                        </td>
                    </tr>'
;
                endforeach;
            else:
                $msg .= '<tr><td colspan="5">No results found.</td></tr>';
            endif;

            $msg .= '</table>';

            $msg = "<div class='cvf-universal-content'>" . $msg . "</div><br class = 'clear' />";

            $no_of_paginations = ceil($count / $per_page);

            if ($cur_page >= 7) {
                $start_loop = $cur_page - 3;
                if ($no_of_paginations > $cur_page + 3)
                    $end_loop = $cur_page + 3;
                else if ($cur_page <= $no_of_paginations && $cur_page > $no_of_paginations - 6) {
                    $start_loop = $no_of_paginations - 6;
                    $end_loop = $no_of_paginations;
                } else {
                    $end_loop = $no_of_paginations;
                }
            } else {
                $start_loop = 1;
                if ($no_of_paginations > 7)
                    $end_loop = 7;
                else
                    $end_loop = $no_of_paginations;
            }

            $pag_container .= "
            <div class='cvf-universal-pagination'>
                <ul>"
;

            if ($first_btn && $cur_page > 1) {
                $pag_container .= "<li p='1' class='active'>First</li>";
            } else if ($first_btn) {
                $pag_container .= "<li p='1' class='inactive'>First</li>";
            }

            if ($previous_btn && $cur_page > 1) {
                $pre = $cur_page - 1;
                $pag_container .= "<li p='$pre' class='active'>Previous</li>";
            } else if ($previous_btn) {
                $pag_container .= "<li class='inactive'>Previous</li>";
            }
            for ($i = $start_loop; $i <= $end_loop; $i++) {

                if ($cur_page == $i)
                    $pag_container .= "<li p='$i' class = 'selected' >{$i}</li>";
                else
                    $pag_container .= "<li p='$i' class='active'>{$i}</li>";
            }

            if ($next_btn && $cur_page < $no_of_paginations) {
                $nex = $cur_page + 1;
                $pag_container .= "<li p='$nex' class='active'>Next</li>";
            } else if ($next_btn) {
                $pag_container .= "<li class='inactive'>Next</li>";
            }

            if ($last_btn && $cur_page < $no_of_paginations) {
                $pag_container .= "<li p='$no_of_paginations' class='active'>Last</li>";
            } else if ($last_btn) {
                $pag_container .= "<li p='$no_of_paginations' class='inactive'>Last</li>";
            }

            $pag_container = $pag_container . "
                </ul>
            </div>"
;

            echo
            '<div class = "cvf-pagination-content">' . $msg . '</div>' .
            '<div class = "cvf-pagination-nav">' . $pag_container . '</div>';

        }
        exit();
    }

    public static function cvf_ngp_preveiw_resume() {

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'preveiw_resume') {

            $resume_id = $_POST['resume_id'];
            $resume = get_post($resume_id);
           
            $avatar_id = get_post_meta($resume_id, 'ngp_avatar', true);
            $avatar_url = wp_get_attachment_image_src($avatar_id);
           
            if($avatar_url[0]) {
                $avatar = '<img src = "' . $avatar_url[0] . '" class = "img-thumbnail" width = "135" />';
            } else {
                $avatar = '<img src = "' . get_template_directory_uri() . '/images/default_avatar.jpg" class = "img-thumbnail">';
            }
           
            $preview_resume .= '
                <div class = "preview_resume_display">
                    <a href = "#" class = "cvf_goback">Go Back</a>

                    <div class = "col-md-12">
                        <div class = "preview_resume_messages"></div>
                        <br />
                        <div class = "col-sm-2 pads">'
. $avatar . '</div>         
                        <div class = "col-sm-10 pads">
                            <h1>'
. $resume->post_title .'</h1>
                            <hr />
                        </div>             
                    </div>
                   
                    <br class = "clear" /><br />

                    <div class = "col-md-12">
                        <table class = "table table-striped">
                            <tr class="success">
                                <th >Country</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_country', true) . '</td>
                            </tr>
                            <tr class="success">
                                <th>Zip Code</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_zipcode', true) . '</td>
                            </tr>
                            <tr>
                                <th>Education</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_education', true) . '</td>
                            </tr>
                            <tr class="info">
                                <th>Experience</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_experience', true) . '</td>
                            </tr>
                            <tr>
                                <th>Phone</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_phone', true) . '</td>
                            </tr>
                            <tr>
                                <th>Industry</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_industry', true) . '</td>
                            </tr>
                            <tr class="warning">
                                <th>Job Title / Headline</th>
                                <td>'
. get_post_meta($resume_id, 'ngp_headline', true) . '</td>
                            </tr>
                            </tr>
                                <th>Resume</th>'
;
                               
                                $attahcment_id = get_post_meta($resume_id, 'ngp_resume', true);
                                $attachment = wp_get_attachment_url($attahcment_id);
           
                                if ( $attachment != false ) {
                                    $preview_resume .= '<td><a href = "' . $attachment . '" class = "btn btn-primary">Download Resume</td>';
                                } else {
                                    $preview_resume .= '<td>N/A</td>';
                                }
                            $preview_resume .= '
                            </tr>
                        </table>
                    </div>
                </div>'
;

            echo $preview_resume;

        }
        exit();

    }


    public static function cvf_ngp_edit_resume() {

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'edit_resume') {

            $resume_id = $_POST['resume_id'];
            $resume = get_post($resume_id);

            $ngp_education = get_post_meta(166, 'field_54602724d1943', false);
            $ngp_experience = get_post_meta(166, 'field_546026eb1d61f', false);
            $ngp_industry = get_post_meta(166, 'field_5460268eaf31f', false);
            $ngp_country = get_post_meta(166, 'field_546027490c53b', false);
            $ngp_phone = get_post_meta($resume_id, 'ngp_phone', false);
            $ngp_headline = get_post_meta($resume_id, 'ngp_headline', false);
            $ngp_zipcode = get_post_meta($resume_id, 'ngp_zipcode', false);
            $ngp_resume = get_post_meta($resume_id, 'ngp_resume', false);
            $ngp_avatar = get_post_meta($resume_id, 'ngp_avatar', false);

            $edit_resume .= '

                <a href = "#" class = "cvf_goback">Go Back</a>

                <div class = "ngp_edit_resume_response"></div>

                <br clsss = "clear" />

                <div class = "ngp_edit_resume">
                    <div class = "col-md-6 pads">
                        <div class="form-group">
                            <label>Full Name:</label><br />
                            <input type = "text" value = "'
. $resume->post_title .'" class = "form-control ngp_name" />
                        </div>

                        <div class="form-group">
                            <label>Phone:</label><br />
                            <input type = "text" value = "'
. $ngp_phone[0] .'" class = "form-control ngp_phone" />
                        </div>

                        <div class="form-group">
                            <label>Industry:</label><br />
                            <select class = "ngp-select form-control ngp_industry">'
;
                                foreach ($ngp_industry[0]['choices'] as $val):
                                    if($val == get_post_meta($resume->ID, 'ngp_industry', true)):
                                        $edit_resume .= '<option value="' . $val . '" selected = "selected">' . $val . '</option>';
                                    else:
                                        $edit_resume .= '<option value="' . $val . '">' . $val . '</option>';
                                    endif;
                                endforeach;
                            $edit_resume .= '
                            </select>
                        </div>

                        <div class="form-group">
                            <label>Headline or Job Title:</label><br />
                            <input type = "text" value = "'
. $ngp_headline[0] .'" class = "form-control ngp_headline" />
                        </div>

                        <div class="form-group">
                            <label>Experience:</label><br />
                            <select class = "ngp-select form-control ngp_experience">'
;
                                foreach ($ngp_experience[0]['choices'] as $val):
                                    if($val == get_post_meta($resume->ID, 'ngp_experience', true)):
                                        $edit_resume .= '<option value="' . $val . '" selected = "selected">' . $val . '</option>';
                                    else:
                                        $edit_resume .= '<option value="' . $val . '">' . $val . '</option>';
                                    endif;
                                endforeach;
                            $edit_resume .= '
                            </select>
                        </div>

                        <div class="form-group">
                            <label>Education:</label><br />
                            <select class = "ngp-select form-control ngp_education">'
;
                                foreach ($ngp_education[0]['choices'] as $val):
                                    if($val == get_post_meta($resume->ID, 'ngp_education', true)):
                                        $edit_resume .= '<option value="' . $val . '" selected = "selected">' . $val . '</option>';
                                    else:
                                        $edit_resume .= '<option value="' . $val . '">' . $val . '</option>';
                                    endif;
                                endforeach;
                            $edit_resume .= '
                            </select>
                        </div>
                    </div>

                    <div class = "col-md-6 pads">
                        <div class="form-group">
                            <label>Country:</label><br />
                            <select class = "ngp-select form-control ngp_country">'
;
                                foreach ($ngp_country[0]['choices'] as $val):
                                    if($val == get_post_meta($resume->ID, 'ngp_country', true)):
                                        $edit_resume .= '<option value="' . $val . '" selected = "selected">' . $val . '</option>';
                                    else:
                                        $edit_resume .= '<option value="' . $val . '">' . $val . '</option>';
                                    endif;
                                endforeach;
                            $edit_resume .= '
                            </select>
                        </div>

                        <div class="form-group">
                            <label>Zip Code:</label><br />
                            <input type = "text" value = "'
. $ngp_zipcode[0] .'" class = "form-control ngp_zipcode" />
                        </div>
                       
                        <div class = "attachment_resume_holder form-group col-md-6">'
;

                            $attachment = get_post($ngp_resume[0]);

                            if ( $attachment->ID ) {
                                $edit_resume .= '
                                <ul class = "resume-attachment no-margin">
                                    <li><img src = "'
.get_template_directory_uri().'/images/document.png" /></li>
                                    <li>
                                        <p><a href = "'
.$attachment->guid.'" target = "_blank">'.substr($attachment->post_title, 0, 20).'</a></p>
                                        <p>
                                            <a href = "#" class = "delete_attachment" id = "del-'
.$attachment->ID.'">Delete</a> |
                                            <a href = "#" class = "change_attachment" id = "change-'
.$attachment->ID.'" data-toggle="modal" data-target="#upload_file">Change</a>
                                        </p>
                                    </li>
                                </ul>
                                <br class = "clear" />
                                '
;

                            } else {
                                $edit_resume .= '
                                <a href = "#" data-toggle="modal" data-target="#upload_file" class = "btn btn-success"><span class = "glyphicon glyphicon-plus"></span> Add Resume</a><br class = "clear" /><br />'
;
                            }
                       
                        $edit_resume .= '
                        </div>
                       
                        <div class = "avatar_resume_holder form-group col-md-6">'
;
                       
                            $avatar = get_post($ngp_avatar[0]);

                            if ( $avatar->ID ) {
                                $edit_resume .= '
                                <ul class = "resume-attachment no-margin">
                                    <li>'
.wp_get_attachment_image($avatar->ID, array(60,60), 0, array('class' => "img-thumbnail")) .'</li>
                                    <li>
                                        <p><a href = "'
.$avatar->guid.'" target = "_blank">'.$avatar->post_title.'</a></p>
                                        <p>
                                            <a href = "#" class = "delete_avatar" id = "del-'
.$avatar->ID.'">Delete</a> |
                                            <a href = "#" class = "change_attachment" id = "change-'
.$avatar->ID.'" data-toggle="modal" data-target="#upload_avatar">Change</a>
                                        </p>
                                    </li>
                                </ul>
                                <br class = "clear" />
                                '
;

                            } else {
                                $edit_resume .= '
                                <a href = "#" data-toggle="modal" data-target="#upload_avatar" class = "btn btn-success"><span class = "glyphicon glyphicon-upload"></span> Upload Avatar</a><br class = "clear" /><br />'
;
                            }

                        $edit_resume .= '
                        </div>
                       
                        <br class = "clear" />
                       
                        <input type = "hidden" value = "'
. $resume->ID . '" class = "resume_id" >
                        <input type = "submit" value = "Save Resume" class = "btn btn-primary save_edited_resume" >

                    </div>
                </div>

            '
;

            echo $edit_resume;

        }

        exit();
    }

    public static function cvf_ngp_update_resume() {

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'update_resume') {

            foreach($_POST as $k => $value) {
                $_POST[$k] = sanitize_text_field($value);
            }

            $resume_data = array(
              'ID'           => $_POST['resume_id'],
              'post_title'   => $_POST['ngp_name'],
              'post_name'    => $_POST['ngp_name']
            );

            $update_status = wp_update_post( $resume_data );

            update_post_meta($_POST['resume_id'], 'ngp_phone', $_POST['ngp_phone']);
            update_post_meta($_POST['resume_id'], 'ngp_industry', $_POST['ngp_industry']);
            update_post_meta($_POST['resume_id'], 'ngp_headline', $_POST['ngp_headline']);
            update_post_meta($_POST['resume_id'], 'ngp_experience', $_POST['ngp_experience']);
            update_post_meta($_POST['resume_id'], 'ngp_education', $_POST['ngp_education']);
            update_post_meta($_POST['resume_id'], 'ngp_country', $_POST['ngp_country']);
            update_post_meta($_POST['resume_id'], 'ngp_zipcode', $_POST['ngp_zipcode']);

            if($update_status > 0) {
                echo '<br /><p class = "bg-success no-margin"><span class = "glyphicon glyphicon-ok"></span>&nbsp; Resume updated successfully.</p>';
            } else {
                echo '<br /><p class = "bg-danger no-margin">An internal error occured</p>';
            }
        }

        exit();
    }

    public static function cvf_ngp_delete_attachment(){

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'delete_attachment'){

            $attachemnt_id = sanitize_text_field($_POST['attachment_id']);
            $type = sanitize_text_field($_POST['type']);
            $post_id = sanitize_text_field($_COOKIE['ngp_edit_resume']);
   
            if(false === wp_delete_attachment($attachemnt_id, true)) {}

            echo 'success';

        }

        exit();
    }

    public static function cvf_ngp_delete_resume() {

        if(isset($_POST['cvf_action']) && $_POST['cvf_action'] == 'delete_resume'){

            $resume_id = sanitize_text_field($_POST['resume_id']);
            wp_delete_post($resume_id, 1);

            echo 'success';

        }

        exit();
    }

    public static function cvf_ngp_delete_all_resume_attachments($post_id) {

        $attachments = get_posts( array(
            'post_type'      => 'attachment',
            'posts_per_page' => -1,
            'post_status'    => 'any',
            'post_parent'    => $post_id
        ) );

        foreach ( $attachments as $attachment ) {
            if ( false === wp_delete_attachment( $attachment->ID, 1 ) ) { /* Log failure to delete attachements */ }
        }

    }
   
    public static function cvf_ngp_upload_resume_data() {
               
        $user_resumes = self::cvf_ngp_get_all_user_resumes();
        $wp_upload_dir = wp_upload_dir();
        $path = $wp_upload_dir['path'] . '/';

        $count = 0;

        if(isset($_POST['upload_resume_file']) and $_SERVER['REQUEST_METHOD'] == "POST"){
           
            if(!$_FILES['files']['name']) {
                echo "<p class='bg-danger'>Please select a file.</p>";
            }
           
            foreach ($_FILES['files']['name'] as $f => $name) {
           
                if(isset($_POST['resume_avatar'])) {
                    $valid_formats = array("jpg", "jpeg", "gif", "png");
                    $max_file_size = 1024 * 500; # in kb
                    $file_title = 'avatar-'.$_COOKIE['ngp_edit_resume'];
                } else if (isset($_POST['resume_file'])) {
                    $valid_formats = array("doc", "docx", "pdf", "txt");
                    $max_file_size = 1024 * 2000; # in kb
                    $file_title = $name;
                }
               
                $extension = pathinfo($name, PATHINFO_EXTENSION);
                $new_filename = cvf_ngp_generate_random_code(20)  . '.' . $extension;
               
                if ($_FILES['files']['error'][$f] == 4) {}
               
                if ($_FILES['files']['error'][$f] == 0) {
               
                    if ($_FILES['files']['size'][$f] > $max_file_size) {
                        echo "<p class='bg-danger'>$name is too large!.</p>";
                       
                    } elseif( ! in_array($extension, $valid_formats) ){
                        echo "<p class='bg-danger'>$name is not a valid format</p>";
                       
                    } else{
                       
                        if(move_uploaded_file($_FILES["files"]["tmp_name"][$f], $path.$new_filename)) {
                           
                            $count++;

                            $filename = $path.$new_filename;
                            $parent_post_id = $_COOKIE['ngp_edit_resume'];
                            $filetype = wp_check_filetype( basename( $filename ), null );
                            $wp_upload_dir = wp_upload_dir();
                            $attachment = array(
                                'guid'           => $wp_upload_dir['url'] . '/' . basename( $filename ),
                                'post_mime_type' => $filetype['type'],
                                'post_title'     => preg_replace( '/\.[^.]+$/', '', basename( $file_title ) ),
                                'post_content'   => '',
                                'post_status'    => 'inherit'
                            );

                            $attach_id = wp_insert_attachment( $attachment, $filename, $parent_post_id );

                            require_once( ABSPATH . 'wp-admin/includes/image.php' );

                            $attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
                            wp_update_attachment_metadata( $attach_id, $attach_data );
                           
                            if(isset($_POST['resume_file'])) {
                                update_post_meta($_COOKIE['ngp_edit_resume'], 'ngp_resume', $attach_id);
                            } elseif(isset($_POST['resume_avatar'])) {
                                update_post_meta($_COOKIE['ngp_edit_resume'], 'ngp_avatar', $attach_id);
                            }
                           
                            echo 'success';
                           
                        }
                    }
                }
            }
           
            exit();
           
        }
    }
   
   
    public static function cvf_ngp_archive_dates() {
   
        global $wpdb;
       
        $table = $wpdb->prefix . 'posts';
        $archive_dates = $wpdb->get_results($wpdb->prepare("
            SELECT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts
            FROM $table  WHERE post_type = 'blog' AND post_status = 'publish'
            GROUP BY YEAR(post_date), MONTH(post_date)
            ORDER BY post_date DESC"
, array()
        ) );
       
        return $archive_dates;
       
    }
   
    public static function cvf_ngp_blog_datearchives_rewrite_rules($wp_rewrite) {

        $rules = self::cvf_ngp_generate_blog_date_archives('blog', $wp_rewrite);
        $wp_rewrite->rules = $rules + $wp_rewrite->rules;
        return $wp_rewrite;
       
    }

    public static function cvf_ngp_generate_blog_date_archives($cpt, $wp_rewrite) {

        $rules = array();

        $post_type = get_post_type_object($cpt);
        $slug_archive = $post_type->has_archive;
        if ($slug_archive === false) return $rules;
        if ($slug_archive === true) {
            $slug_archive = $post_type->name;
        }

        $dates = array(
            array(
                'rule' => "([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})",
                'vars' => array('year', 'monthnum', 'day')),
            array(
                'rule' => "([0-9]{4})/([0-9]{1,2})",
                'vars' => array('year', 'monthnum')),
            array(
                'rule' => "([0-9]{4})",
                'vars' => array('year'))
        );

        foreach ($dates as $data) {
            $query = 'index.php?post_type='.$cpt;
            $rule = $slug_archive.'/'.$data['rule'];

            $i = 1;
            foreach ($data['vars'] as $var) {
                $query.= '&'.$var.'='.$wp_rewrite->preg_index($i);
                $i++;
            }

            $rules[$rule."/?$"] = $query;
            $rules[$rule."/feed/(feed|rdf|rss|rss2|atom)/?$"] = $query."&feed=".$wp_rewrite->preg_index($i);
            $rules[$rule."/(feed|rdf|rss|rss2|atom)/?$"] = $query."&feed=".$wp_rewrite->preg_index($i);
            $rules[$rule."/page/([0-9]{1,})/?$"] = $query."&paged=".$wp_rewrite->preg_index($i);
        }

        return $rules;
       
    }

    public static function cvf_ngp_remove_menus(){
   
        remove_menu_page('edit.php?post_type=resume');
        #remove_menu_page('edit.php?post_type=blog');
    }

}


Do you need help with a project? or have a new project in mind that you need help with?

Contact Me