-
Notifications
You must be signed in to change notification settings - Fork 0
/
ictuwp-plugin-planningtool.php
2262 lines (1573 loc) · 74 KB
/
ictuwp-plugin-planningtool.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
/*
* DO_Planningtool.
*
* Plugin Name: ICTU / WP Planning Tool digitaleoverheid.nl
* Plugin URI: https://github.com/ICTU/Digitale-Overheid---WordPress-plugin-Planning-Tool/
* Description: Plugin voor digitaleoverheid.nl waarmee extra functionaliteit mogelijk wordt voor het tonen van een planning met actielijnen en gebeurtenissen.
* Version: 1.5.1
* Version description: Code improvements to make plugin more generally applicable.
* Author: Paul van Buuren
* Author URI: https://wbvb.nl
* License: GPL-2.0+
*
* Text Domain: ictuwp-plugin-planningtool
* Domain Path: /languages
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // disable direct access
}
add_action( 'plugins_loaded', 'do_pt_init_load_plugin_textdomain' );
if ( ! defined( 'RHSWP_CT_DIGIBETER' ) ) {
define( 'RHSWP_CT_DIGIBETER', 'beleidsterreinen' ); // custom taxonomy for digitale agenda
}
if ( ! class_exists( 'DO_Planning_Tool' ) ) :
/**
* Register the plugin.
*
* Display the administration panel, add JavaScript etc.
*/
class DO_Planning_Tool {
/**
* @var string
*/
public $version = '1.5.1';
/**
* @var DO_Planningtool
*/
public $gcmaturity = null;
/**
* @var DO_Planningtool
*/
public $option_name = null;
public $dopt_years_start = null;
public $dopt_years_end = null;
public $dopt_years_max_nr = null; // for setting the width of the containers and indicator
public $dopt_array_data = null; // array for storing retrieved data to be used throughout this plugin
public $templatefile = '';
public $templates = '';
/**
* Init
*/
public static function init() {
$gcmaturity_this = new self();
}
//========================================================================================================
/**
* Constructor
*/
public function __construct() {
$this->define_constants();
$this->includes();
$this->do_pt_init_setup_actions();
$this->do_pt_init_setup_filters();
}
//========================================================================================================
/**
* Define DO_Planningtool constants
*/
private function define_constants() {
$protocol = strtolower( substr( $_SERVER["SERVER_PROTOCOL"], 0, strpos( $_SERVER["SERVER_PROTOCOL"], '/' ) ) ) . '://';
define( 'DOPT__VERSION', $this->version );
define( 'DOPT__FOLDER', 'ictuwp-plugin-planningtool' );
define( 'DOPT__BASE_URL', trailingslashit( plugins_url( DOPT__FOLDER ) ) );
define( 'DOPT__ASSETS_URL', trailingslashit( DOPT__BASE_URL ) );
define( 'DOPT__PATH', plugin_dir_path( __FILE__ ) );
define( 'DOPT__PATH_LANGUAGES', trailingslashit( DOPT__PATH . 'languages' ) );
define( 'DOPT__ACTIELIJN_CPT', "actielijn" );
define( 'DOPT__GEBEURTENIS_CPT', "gebeurtenis" );
define( 'DOPT__SURVEY_DEFAULT_USERID', 2600 ); // 't is wat, hardgecodeerde userids (todo: invoerbaar maken via admin)
define( 'DOPT_CT_PLANNINGLABEL', "Planning label" );
define( 'DOPT_CT_TREKKER', "trekker" );
define( 'DOPT_CT_ONDERWERP', "beleidsonderwerp" );
define( 'DOPT_CT_ONDERWERP_DEFAULT', "NL Digibeter" );
define( 'DOPT__QUESTION_PREFIX', DOPT__ACTIELIJN_CPT . '_pf_' ); // prefix for cmb2 metadata fields
define( 'DOPT__CMBS2_PREFIX', DOPT__QUESTION_PREFIX . '_form_' ); // prefix for cmb2 metadata fields
define( 'DOPT__FORMKEYS', DOPT__CMBS2_PREFIX . 'keys' ); // prefix for cmb2 metadata fields
// define( 'ADD_DEFAULT_TERM_ID', false );
define( 'ADD_DEFAULT_TERM_ID', true );
// define( 'DOPT__PLUGIN_DO_DEBUG', true );
define( 'DOPT__PLUGIN_DO_DEBUG', false );
// define( 'DOPT__PLUGIN_OUTPUT_TOSCREEN', false );
define( 'DOPT__PLUGIN_OUTPUT_TOSCREEN', true );
define( 'DOPT__PLUGIN_GENESIS_ACTIVE', true ); // todo: inbouwen check op actief zijn van Genesis framework
define( 'DOPT__ALGEMEEN_LABEL', 'ictudo_planning_label' );
define( 'DOPT__ALGEMEEN_KEY', 'ictudo_planning_key' );
define( 'DOPT__PLUGIN_KEY', 'ictudo_planning' );
define( 'DOPT__NR_QUARTERS', 5 );
define( 'DOPT_CSS_YEARWIDTH', 13 ); // 12ems per year + 1em margin right
define( 'DOPT_CSS_QUARTERWIDTH', 3 );
define( 'DOPT_CSS_PADDINGLEFT', 26 ); // basically DOPT_CSS_YEARWIDTH but then twice
define( 'DOPT__ARCHIVE_CSS', 'dopt-header-css' );
//define( 'DOPT_CSS_RADIALGRADIENT', true );
define( 'DOPT_CSS_RADIALGRADIENT', false );
}
//========================================================================================================
/**
* All DO_Planningtool classes
*/
private function plugin_classes() {
return array(
'DO_PT_SystemCheck' => DOPT__PATH . 'inc/dopt.systemcheck.class.php',
);
}
//========================================================================================================
/**
* Load required classes
*/
private function includes() {
$autoload_is_disabled = defined( 'DOPT__AUTOLOAD_CLASSES' ) && DOPT__AUTOLOAD_CLASSES === false;
if ( function_exists( "spl_autoload_register" ) && ! ( $autoload_is_disabled ) ) {
// >= PHP 5.2 - Use auto loading
if ( function_exists( "__autoload" ) ) {
spl_autoload_register( "__autoload" );
}
spl_autoload_register( array( $this, 'autoload' ) );
} else {
// < PHP5.2 - Require all classes
foreach ( $this->plugin_classes() as $id => $path ) {
if ( is_readable( $path ) && ! class_exists( $id ) ) {
require_once( $path );
}
}
}
if ( file_exists( dirname( __FILE__ ) . '/inc/dopt.acf-definitions-functions.php' ) ) {
require_once dirname( __FILE__ ) . '/inc/dopt.acf-definitions-functions.php';
}
if ( file_exists( dirname( __FILE__ ) . '/inc/dopt.posttypes-taxonomies.php' ) ) {
require_once dirname( __FILE__ ) . '/inc/dopt.posttypes-taxonomies.php';
}
}
//========================================================================================================
/**
* filter for when the CPT is previewed
*/
public function do_pt_frontend_filter_for_preview( $content = '' ) {
global $post;
if ( in_the_loop() && is_single() && ( DOPT__ACTIELIJN_CPT == get_post_type() || DOPT__GEBEURTENIS_CPT == get_post_type() ) ) {
// return $content . do_pt_frontend_display_actielijn_info( $post->ID );
return $content;
} else {
return $content;
}
}
//========================================================================================================
/**
* for single posts of the correct kind and type: NO post info
*
* @param string $post_info
*
* @return string $post_info
*/
function filter_postinfo( $post_info ) {
global $wp_query;
global $post;
if ( is_single() && ( DOPT__ACTIELIJN_CPT == get_post_type() || DOPT__GEBEURTENIS_CPT == get_post_type() ) ) {
return '';
} else {
return $post_info;
}
}
//========================================================================================================
/**
* Autoload DO_Planningtool classes to reduce memory consumption
*/
public function autoload( $class ) {
$classes = $this->plugin_classes();
$class_name = strtolower( $class );
if ( isset( $classes[ $class_name ] ) && is_readable( $classes[ $class_name ] ) ) {
echo 'require: ' . $classes[ $class_name ] . '<br>';
die();
require_once( $classes[ $class_name ] );
}
}
//========================================================================================================
/**
* Hook DO_Planningtool into WordPress
*/
private function do_pt_init_setup_actions() {
// add a page temlate name
$this->templates = array();
$this->templatefile = 'planningtool-template.php';
add_action( 'init', 'do_pt_init_register_post_type' );
// add the page template to the templates list
add_filter( 'theme_page_templates', array( $this, 'do_pt_init_add_page_templates' ) );
// activate the page filters
add_action( 'template_redirect', array( $this, 'do_pt_frontend_use_page_template' ) );
// admin settings
add_action( 'admin_init', array( $this, 'do_pt_admin_register_settings' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'do_pt_frontend_register_frontend_style_script' ) );
}
//========================================================================================================
/**
* Hook DO_Planningtool into WordPress
*/
private function do_pt_init_setup_filters() {
// content filter
add_filter( 'the_content', array( $this, 'do_pt_frontend_filter_for_preview' ) );
}
//========================================================================================================
/**
* Hides the custom post template for pages on WordPress 4.6 and older
*
* @param array $post_templates Array of page templates. Keys are filenames, values are translated names.
*
* @return array Expanded array of page templates.
*/
function do_pt_init_add_page_templates( $post_templates ) {
$post_templates[ $this->templatefile ] = _x( 'Planningtool Digitale Overheid', "naam template", "ictuwp-plugin-planningtool" );
return $post_templates;
}
//========================================================================================================
/**
* Register the options page
*
* @since 1.1.5
*/
public function do_pt_admin_register_settings() {
// Add a General section
add_settings_section(
$this->option_name . '_general',
__( 'General settings', "ictuwp-plugin-planningtool" ),
array( $this, $this->option_name . '_general_cb' ),
DOPT__PLUGIN_KEY
);
$this->option_name = 'ictudo_planning-option';
$this->dopt_years_start = get_field( 'planning_page_start_jaar', 'option' );
$this->dopt_years_end = get_field( 'planning_page_end_jaar', 'option' );
$this->dopt_years_max_nr = ( $this->dopt_years_end - $this->dopt_years_start );
$this->dopt_array_data = array();
}
//========================================================================================================
/**
* Add the help tab to the screen.
*/
public function do_pt_admin_help_tab() {
$screen = get_current_screen();
// documentation tab
$screen->add_do_pt_admin_help_tab( array(
'id' => 'documentation',
'title' => __( 'Documentation', "ictuwp-plugin-planningtool" ),
'content' => "<p><a href='https://github.com/ICTU/Digitale-Overheid---WordPress-plugin-Planning-Tool/documentation/' target='blank'>" . __( 'GC Maturity documentation', "ictuwp-plugin-planningtool" ) . "</a></p>",
)
);
}
//========================================================================================================
/**
* Register frontend styles
*/
public function do_pt_frontend_register_frontend_style_script() {
$header_css = '';
$acfid = get_the_id();
$page_template = get_post_meta( $acfid, '_wp_page_template', true );
if ( ! is_admin() && ( $this->templatefile == $page_template ) ) {
$actielijnblokken = get_field( 'actielijnen_per_thema', $acfid );
$this->dopt_years_start = get_field( 'planning_page_start_jaar', 'option' );
$this->dopt_years_end = get_field( 'planning_page_end_jaar', 'option' );
$year_now = date( "Y" );
$q_now = date( "m" );
if ( $q_now >= 10 ) {
// als huidige maand oktober of later is dan is het huidige kwartaal: 4
$q_now = 4;
} elseif ( $q_now >= 7 ) {
// anders, als huidige maand juli of later is dan is het huidige kwartaal: 3
$q_now = 3;
} elseif ( $q_now >= 4 ) {
// anders, als huidige maand april of later is dan is het huidige kwartaal: 2
$q_now = 2;
} else {
$q_now = 1;
}
if ( intval( $this->dopt_years_start > 0 ) && ( intval( $this->dopt_years_start ) > intval( date( "Y" ) ) ) ) {
$this->dopt_years_start = date( "Y" );
if ( DOPT__PLUGIN_DO_DEBUG ) {
echo "<!-- 001 - Start-jaar: " . $this->dopt_years_start . ' -->';
}
}
if ( ! $this->dopt_years_start ) {
$this->dopt_years_start = date( "Y" );
if ( DOPT__PLUGIN_DO_DEBUG ) {
echo "<!-- 002 - Start-jaar: " . $this->dopt_years_start . ' -->';
}
}
if ( ! $this->dopt_years_end ) {
$this->dopt_years_end = ( date( "Y" ) + 1 );
}
$this->dopt_years_max_nr = ( ( $this->dopt_years_end - $this->dopt_years_start ) + 1 );
$infooter = true;
$breakpoint = '821px';
wp_enqueue_script( 'functions-frontend-min', DOPT__ASSETS_URL . 'js/functions-frontend.js', '', DOPT__VERSION, $infooter );
$header_css .= "@media only screen and ( max-width: " . $breakpoint . " ) { ";
$header_css .= ".currentkwartaal, ";
$header_css .= ".programma .intervalheader { ";
$header_css .= "display: none; ";
$header_css .= "visibility: hidden; ";
$header_css .= "} ";
$header_css .= "} ";
$header_css .= "@media only screen and ( min-width: " . $breakpoint . " ) { ";
$header_css .= ".programma .intervalheader { ";
$header_css .= "display: flex; ";
$header_css .= "visibility: visible; ";
$header_css .= "} ";
$header_css .= "} "; // ?
$args = array(
'post_type' => DOPT__ACTIELIJN_CPT,
'post_status' => 'publish',
'posts_per_page' => - 1,
);
$wp_query_actielijnen = new WP_Query( $args );
if ( $wp_query_actielijnen->have_posts() ) {
while ( $wp_query_actielijnen->have_posts() ) : $wp_query_actielijnen->the_post();
$theid = get_the_id();
$actielijn_kwartaal_start_jaar = 0;
$actielijn_kwartaal_eind_jaar = 0;
$actielijn_kwartaal_eind_kwartaal = 0;
$actielijn_kwartaal_start_kwartaal = 0;
$temparray = array();
$kwartaal_start = preg_replace( "/[^0-9]/", "", get_field( 'actielijn_kwartaal_start_kwartaal', $theid ) );
$kwartaal_end = preg_replace( "/[^0-9]/", "", get_field( 'actielijn_kwartaal_eind_kwartaal', $theid ) );
switch ( get_field( 'heeft_start-_of_einddatums', $theid ) ) {
case 'start_eind':
$actielijn_kwartaal_start_kwartaal = $kwartaal_start;
$actielijn_kwartaal_start_jaar = get_field( 'actielijn_kwartaal_start_jaar', $theid );
$actielijn_kwartaal_eind_kwartaal = $kwartaal_end;
$actielijn_kwartaal_eind_jaar = get_field( 'actielijn_kwartaal_eind_jaar', $theid );
break;
case 'start':
$actielijn_kwartaal_start_kwartaal = $kwartaal_start;
$actielijn_kwartaal_start_jaar = get_field( 'actielijn_kwartaal_start_jaar', $theid );
break;
case 'eind':
$actielijn_kwartaal_eind_kwartaal = $kwartaal_end;
$actielijn_kwartaal_eind_jaar = get_field( 'actielijn_kwartaal_eind_jaar', $theid );
break;
}
$temparray['type'] = DOPT__ACTIELIJN_CPT;
$temparray['heeft_start-_of_einddatums'] = get_field( 'heeft_start-_of_einddatums', $theid );
$temparray['start_kwartaal'] = $actielijn_kwartaal_start_kwartaal;
$temparray['eind_kwartaal'] = $actielijn_kwartaal_eind_kwartaal;
$temparray['start_jaar'] = $actielijn_kwartaal_start_jaar;
$temparray['eind_jaar'] = $actielijn_kwartaal_eind_jaar;
if ( intval( $actielijn_kwartaal_start_jaar > 0 ) && ( intval( $actielijn_kwartaal_start_jaar ) < intval( $this->dopt_years_start ) ) ) {
$this->dopt_years_start = $actielijn_kwartaal_start_jaar;
if ( DOPT__PLUGIN_DO_DEBUG ) {
echo "<!-- 003 - Start-jaar uit instellingen : " . get_field( 'planning_page_start_jaar', 'option' ) . "\n";
echo 'startjaar: ' . $this->dopt_years_start . ' vanwege actielijn: ' . get_the_title( $theid ) . ' -->';
}
}
if ( intval( $actielijn_kwartaal_eind_jaar > 0 ) && ( intval( $actielijn_kwartaal_eind_jaar ) > intval( $this->dopt_years_end ) ) ) {
$this->dopt_years_end = $actielijn_kwartaal_eind_jaar;
}
$this->dopt_array_data[ $theid ] = $temparray;
endwhile;
// RESET THE QUERY
wp_reset_query();
}
$args = array(
'post_type' => DOPT__GEBEURTENIS_CPT,
'post_status' => 'publish',
'posts_per_page' => - 1,
);
$wp_query_gebeurtenissen = new WP_Query( $args );
if ( $wp_query_gebeurtenissen->have_posts() ) {
while ( $wp_query_gebeurtenissen->have_posts() ) : $wp_query_gebeurtenissen->the_post();
$theid = get_the_id();
$actielijn_kwartaal_start_jaar = 0;
$actielijn_kwartaal_eind_jaar = 0;
$temparray = array();
$date = get_field( 'gebeurtenis_datum', $theid );
$yeargebeurtenis = date_i18n( "Y", strtotime( $date ) );
$temparray['type'] = DOPT__GEBEURTENIS_CPT;
$temparray['gebeurtenis_datum'] = $date;
$temparray['gebeurtenis_geschatte_datum'] = get_field( 'gebeurtenis_geschatte_datum', $theid );
if ( intval( $yeargebeurtenis > 0 ) && ( intval( $yeargebeurtenis ) < intval( $this->dopt_years_start ) ) ) {
$this->dopt_years_start = $yeargebeurtenis;
if ( DOPT__PLUGIN_DO_DEBUG ) {
echo "<!-- 004 - Start-jaar: " . $this->dopt_years_start . " -->";
}
}
if ( intval( $yeargebeurtenis > 0 ) && ( intval( $yeargebeurtenis ) > intval( $this->dopt_years_end ) ) ) {
$this->dopt_years_end = $yeargebeurtenis;
}
$this->dopt_array_data[ $theid ] = $temparray;
endwhile;
// RESET THE QUERY
wp_reset_query();
}
$this->dopt_years_max_nr = ( ( $this->dopt_years_end - $this->dopt_years_start ) + 1 );
$header_css .= ".actielijnen { ";
$header_css .= " width: " . ( ( $this->dopt_years_max_nr * DOPT_CSS_YEARWIDTH ) + DOPT_CSS_PADDINGLEFT ) . "em;";
$header_css .= " max-width: 100%;";
$header_css .= " overflow: hidden;";
$header_css .= "} ";
$header_css .= ".programma .timescale-container {";
$header_css .= " max-width: " . ( ( $this->dopt_years_max_nr * DOPT_CSS_YEARWIDTH ) + DOPT_CSS_PADDINGLEFT ) . "em;";
$header_css .= "} ";
// de kwartaalbalk is 2.7em breed
// een jaar is 3em breed.
// dus de linkerafstand vanwege de jaren moet opgehoogd worden met ( 3em - 2.7em ) = .3
$distanceyears = ( ( ( $year_now - $this->dopt_years_start ) * DOPT_CSS_YEARWIDTH ) + .3 );
$distancekwartalen = ( ( ( $q_now - 1 ) * DOPT_CSS_QUARTERWIDTH ) + DOPT_CSS_PADDINGLEFT );
$header_css .= ".currentkwartaal {";
if ( $year_now <= $this->dopt_years_end ) {
// toon de kwartaalbalk alleen als we niet voorbij de gewenste periode zijn
// dat wil zeggen het huidige jaar is kleiner of gelijk aan het bepaalde eindjaar ($this->dopt_years_end)
$header_css .= " position: absolute; ";
$header_css .= " left: " . ( $distanceyears + $distancekwartalen ) . "em; /* dopt_years_start: " . $this->dopt_years_start . ", year_now: " . $year_now . ", dopt_years_end: " . $this->dopt_years_end . ", distanceyears: " . $distanceyears . "*/ ";
$header_css .= " top: 0;";
$header_css .= " bottom: 0;";
} else {
$header_css .= " display:none; ";
}
$header_css .= "} ";
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
if ( DOPT_CSS_RADIALGRADIENT ) {
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
$breedtelaatstekolom = 1;
$aantaljaar = 5;
$aantalkwartalen = 4;
$kwartaalbreedte = 3;
$jaarcounter = 1;
$kwartaalcounter = 1;
$afstand = ( ( $kwartaalbreedte * $aantalkwartalen ) + $breedtelaatstekolom );
$kwartaalstart = ( 2 * $afstand );
$verspring = .001;
$rgba = "rgba(156,156,156,.4)";
$rgba2 = "red";
$rgba3 = "green";
$header_css .= ".programma .timescale-container {";
$header_css .= "background: ";
$header_css .= " linear-gradient( ";
$header_css .= " 90deg, ";
$header_css .= " white, ";
$header_css .= " white " . ( 2 * $afstand ) . "em";
$header_css .= " ),";
$header_css .= " linear-gradient( ";
$header_css .= " 90deg, ";
$startat = ( 2 * $afstand );
$header_css .= " white, ";
$header_css .= " white " . $startat . "em, ";
$verspringpx = '1px';
$verspringpx2 = '2px';
$verspringpx3 = '3px';
while ( $jaarcounter <= $aantaljaar ) {
$kwartaalcounter = 1;
while ( $kwartaalcounter <= $aantalkwartalen ) {
if ( 1 == $jaarcounter && 1 == $kwartaalcounter ) {
$appendstring = " white calc(" . $startat . "em + " . $verspringpx . "),
" . $rgba . " calc(" . ( $startat ) . "em + " . $verspringpx . "),
" . $rgba3 . " calc(" . ( $startat + $kwartaalbreedte ) . "em - " . $verspringpx . "),
white calc(" . ( $startat + $kwartaalbreedte ) . "em - " . $verspringpx . "),";
} else {
$appendstring = "white calc(" . $startat . "em),
" . $rgba . " calc(" . ( $startat ) . "em + " . $verspringpx2 . "),
" . $rgba2 . " calc(" . ( $startat + $kwartaalbreedte ) . "em - " . $verspringpx3 . "),
white calc(" . ( $startat + $kwartaalbreedte ) . "em ),";
}
$header_css .= $appendstring . " ";
$kwartaalcounter ++;
$startat = ( $startat + $kwartaalbreedte );
}
$startat = ( $startat + $breedtelaatstekolom );
$jaarcounter ++;
}
$header_css .= " white " . ( ( $this->dopt_years_max_nr * DOPT_CSS_YEARWIDTH ) + DOPT_CSS_PADDINGLEFT ) . "em";
$header_css .= " ),";
$header_css .= " linear-gradient( ";
$header_css .= " 90deg, ";
$header_css .= " white " . ( ( $this->dopt_years_max_nr * DOPT_CSS_YEARWIDTH ) + DOPT_CSS_PADDINGLEFT ) . "em, ";
$header_css .= " white 100% ";
$header_css .= " );";
$header_css .= "background-size: 2em 22em," . ( ( $this->dopt_years_max_nr * DOPT_CSS_YEARWIDTH ) + DOPT_CSS_PADDINGLEFT ) . "em 100em, 84em .5em;";
$header_css .= "background-repeat: repeat-y, repeat-y, repeat-y;";
$header_css .= "} ";
} // DOPT_CSS_RADIALGRADIENT
//----------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------
$oneemday = round( ( 12 / 365 ), 6 ); // 12em per jaar
foreach ( $this->dopt_array_data as $key => $value ) {
$actielijn_kwartaal_start_jaar = 0;
if ( DOPT__GEBEURTENIS_CPT == $value['type'] ) {
$gebeurtenis_datum = '';
$datetext = '';
$daydiff = '';
$yearevent = date_i18n( "Y", strtotime( $value['gebeurtenis_datum'] ) );
$mnt_event = date_i18n( "m", strtotime( $value['gebeurtenis_datum'] ) );
$day_event = date_i18n( "d", strtotime( $value['gebeurtenis_datum'] ) );
if ( $yearevent ) {
$yeardiff = 0;
if ( $this->dopt_years_start < $yearevent ) {
$yeardiff = ( $yearevent - $this->dopt_years_start );
}
$translate = 0;
$translate_year = ( intval( $yeardiff ) * ( DOPT_CSS_YEARWIDTH ) );
$startdatum = ( $yearevent ) . '-01-01';
$einddatum = ( $yearevent ) . '-' . $mnt_event . '-' . $day_event;
$daydiff = dateDiff( $startdatum, $einddatum );
$translate_days = round( ( $daydiff * $oneemday ), 2 );
$translate = ( $translate_year + $translate_days );
}
$header_css .= "@media only screen and ( min-width: " . $breakpoint . " ) { ";
$header_css .= "li." . $value['type'] . '-' . $key . " { ";
$header_css .= "margin-left: " . $translate . "em;";
$header_css .= "} ";
$header_css .= "}"; // breakpoint
} elseif ( DOPT__ACTIELIJN_CPT == $value['type'] ) {
$startatyearq = 0;
$start_kwartaal = 0;
$endatyearq = 0;
$eind_kwartaal = 0;
$emwidth_start = 0;
$emwidth_eind = 0;
$yeardiff = 0;
switch ( $value['heeft_start-_of_einddatums'] ) {
case 'start_eind':
$startatyearq = $value['start_jaar'];
$start_kwartaal = $value['start_kwartaal'];
$endatyearq = $value['eind_jaar'];
$eind_kwartaal = $value['eind_kwartaal'];
break;
case 'start':
$startatyearq = $value['start_jaar'];
$start_kwartaal = $value['start_kwartaal'];
break;
case 'eind':
$endatyearq = $value['eind_jaar'];
$eind_kwartaal = $value['eind_kwartaal'];
break;
}
if ( intval( $startatyearq . $start_kwartaal ) > intval( $this->dopt_years_start . 1 ) ) {
$yeardiff = intval( ( $startatyearq - $this->dopt_years_start ) );
$emwidth_start = ( $yeardiff * DOPT_CSS_YEARWIDTH );
if ( intval( $start_kwartaal ) > 1 ) {
$emwidth_start = ( $emwidth_start + ( ( $start_kwartaal - 1 ) * DOPT_CSS_QUARTERWIDTH ) );
}
}
if ( $endatyearq && ( intval( $endatyearq . $eind_kwartaal ) < intval( $this->dopt_years_end . 4 ) ) ) {
$yeardiff = intval( ( $this->dopt_years_end - $endatyearq ) );
$emwidth_eind = ( $yeardiff * DOPT_CSS_YEARWIDTH );
if ( intval( $eind_kwartaal ) < 4 ) {
$emwidth_eind = ( $emwidth_eind + ( ( 4 - $eind_kwartaal ) * DOPT_CSS_QUARTERWIDTH ) );
}
}
if ( ( $emwidth_start ) || ( $emwidth_eind ) ) {
/*
* $header_css .= "@media only screen and ( min-width: " . $breakpoint . " ) { ";
$header_css .= ".programma .intervalheader { ";
$header_css .= "display: flex; ";
$header_css .= "visibility: visible; ";
$header_css .= "} ";
$header_css .= "} "; // ?
*/
$header_css .= "@media only screen and ( min-width: " . $breakpoint . " ) { ";
$header_css .= " ." . $value['type'] . '-' . $key . " .ganttbar { ";
if ( $emwidth_start ) {
$header_css .= "margin-left: " . $emwidth_start . "em; ";
}
if ( $emwidth_eind ) {
$header_css .= "margin-right: " . $emwidth_eind . "em; ";
}
$header_css .= "}";
$header_css .= "}"; // breakpoint
}
}
}
wp_enqueue_style( DOPT__ARCHIVE_CSS, DOPT__ASSETS_URL . 'css/ictuwp-plugin-planningtool.css', array(), DOPT__VERSION, 'all' );
if ( $header_css ) {
wp_add_inline_style( DOPT__ARCHIVE_CSS, $header_css );
}
}
}
//========================================================================================================
/**
* Handles the front-end display.
*
* @return void
*/
public function do_pt_do_frontend_pagetemplate_add_actielijnen() {
if ( ADD_DEFAULT_TERM_ID && WP_DEBUG && DOPT__PLUGIN_DO_DEBUG ) {
$args = array(
'post_type' => DOPT__ACTIELIJN_CPT,
'post_status' => 'publish',
'posts_per_page' => - 1,
);
$actielijnen = new WP_query();
$actielijnen->query( $args );
if ( $actielijnen->have_posts() ) {
echo '<ul>';
while ( $actielijnen->have_posts() ) : $actielijnen->the_post();
$post_id = get_the_id();
$terms = wp_get_post_terms( $post_id, DOPT_CT_ONDERWERP );
if ( empty( $terms ) ) {
if ( term_exists( DOPT_CT_ONDERWERP_DEFAULT, DOPT_CT_ONDERWERP ) ) {
echo '<li>' . get_the_title( $post_id );
wp_set_object_terms( $post_id, DOPT_CT_ONDERWERP_DEFAULT, DOPT_CT_ONDERWERP );
echo 'now has <span style="display: inline-block; background: green; color: white;">term: ' . esc_html( $term->name ) . '</span >';
echo '</li>';
}
} else {
// do nothing, actielijn has terms
}
endwhile;
echo '</ul>';
}
// RESET THE QUERY
wp_reset_query();
}
$acfid = get_the_id();
$actielijnblokken = get_field( 'actielijnen_per_thema', $acfid );
$numberofyears = 0;
$actielijnblok_counter = 0;
$year_now = date( "Y" );
$q_now = date( "m" );
$verschijningsvorm = 'gantt';
if ( have_rows( 'actielijnen_per_thema', $acfid ) ) {
if ( 'gantt' == $verschijningsvorm ) {
$intervalheader = '<div class="intervalheader" aria-hidden="true">';
$currentyear = $this->dopt_years_start;
$currentquarter = 1;
if ( DOPT__PLUGIN_DO_DEBUG ) {
echo "<!-- 005 - Start-jaar: " . $this->dopt_years_start . ' -->';
}
while ( intval( $currentyear ) <= intval( $this->dopt_years_end ) ) :
$intervalheader .= '<div class="intervalheader-year"><span>' . $currentyear . '</span>';
while ( intval( $currentquarter ) <= intval( ( DOPT__NR_QUARTERS - 1 ) ) ) :
$intervalheader .= '<div class="intervalheader-quarter">Q' . $currentquarter . '</div>';
$currentquarter ++;
endwhile;
$intervalheader .= '</div>';
$currentquarter = 1;
$currentyear ++;
endwhile;
$intervalheader .= '</div>'; // class=intervalheader
$currentkwartaal = '<div class="currentkwartaal"> </div>'; // class=intervalheader
// nu gegevens tonen
foreach ( $actielijnblokken as $actielijnblok ) {
$actielijnblok_counter ++;
$actielijnblok_titel = esc_html( $actielijnblok['actielijnen_per_thema_titel'] );
$extra_toelichting_toevoegen = esc_html( $actielijnblok['actielijnen_per_thema_actielijnen_extra_toelichting_toevoegen'] );
$blok_toelichting_titel = null;
$blok_toelichting_text = null;
$programma_title_tag = 'h2';
$actielijn_title_tag = 'h3';
$actielijnblok_titel_id = $actielijnblok_counter;
if ( isset( $actielijnblok['actielijnen_per_thema_htmlid'] ) ) {
$actielijnblok_htmlid = esc_html( $actielijnblok['actielijnen_per_thema_htmlid'] );
} else {
$actielijnblok_htmlid = esc_html( $actielijnblok['actielijnen_per_thema_titel'] );
}
if ( get_field( 'digibeter_term_achtergrondkleur', RHSWP_CT_DIGIBETER . '_' . $actielijnblok['actielijnen_per_thema_kleur'] ) ) {
// dit is de oude manier om de kleur te bepalen. Oude pagina's verwezen qua kleur nog naar
// de kleur die bij een RHSWP_CT_DIGIBETER term gekozen is. Voor backward compatibilit
// laten we deze staan
$digibeterclass = get_field( 'digibeter_term_achtergrondkleur', RHSWP_CT_DIGIBETER . '_' . $actielijnblok['actielijnen_per_thema_kleur'] );
} elseif ( $actielijnblok['actielijnen_per_thema_kleur'] ) {
// de nieuwe manier om een kleur te kiezen is simpeler
$digibeterclass = $actielijnblok['actielijnen_per_thema_kleur'];
} else {
$digibeterclass = 'digibeter-blauw';
}
// de bijbehorende geselecteerde actielijnen ophalen
$select_actielijnen = $actielijnblok['actielijnen_per_thema_actielijnen'];
$intervalheader2 = preg_replace( '/class="intervalheader"/', 'class="intervalheader" id="intervalheader_' . $actielijnblok_counter . '"', $intervalheader );
// CSS magie om te b
$possiblewidth_timeline = ( ( $this->dopt_years_max_nr * DOPT_CSS_YEARWIDTH ) - 1 ); // -1 is to strip off the unnecessary margin-right of the last year
$possiblewidth_total = ( $possiblewidth_timeline + DOPT_CSS_PADDINGLEFT );
if ( 'actielijnen_per_thema_actielijnen_extra_toelichting_toevoegen_ja' === $extra_toelichting_toevoegen ) {
// er is een extra text die we tonen voorafgaand aan het actielijnen-blok.
// de titel hiervan gebruiken we als de beschrijvende titel voor de sectie
$programma_title_tag = 'h3';
$actielijn_title_tag = 'h4';
$actielijnblok_titel_id = sanitize_title( $blok_toelichting_titel . '-' . $actielijnblok_counter );
$blok_toelichting_titel = esc_html( $actielijnblok['actielijnen_per_thema_actielijnen_extra_toelichting_titel'] );
$blok_toelichting_text = $actielijnblok['actielijnen_per_thema_actielijnen_extra_toelichting_text'];
} else {
// de titel in het actieblok zelf gebruiken we als de beschrijvende titel voor de sectie
$actielijnblok_titel_id = sanitize_title( $actielijnblok_titel . '-' . $actielijnblok_counter );
}
echo '<section aria-labelledby="' . $actielijnblok_titel_id . '" class="actielijn-block">';
if ( $blok_toelichting_titel ) {
echo '<header class="entry-header">';
echo '<h2 id="' . $actielijnblok_titel_id . '">' . $blok_toelichting_titel . '</h2>';
if ( $blok_toelichting_text ) {
echo '<div class="toelichting">' . $blok_toelichting_text . '</div>';
}
echo '</header>';
$actielijnblok_titel_id = null; // deze hoeven we niet meer te gebruiken
}
echo '<div id="' . sanitize_title( $actielijnblok_htmlid ) . '" class="programma ' . $digibeterclass . '" data-possiblewidth="' . ( $possiblewidth_total + 1 ) . 'em">';
// header
echo '<header>';
echo '<div class="container">';
if ( $actielijnblok_titel_id ) {
// er kan een toelichtingstitel gebruikt zijn
echo '<' . $programma_title_tag . ' id="' . $actielijnblok_titel_id . '">';
} else {
echo '<' . $programma_title_tag . '>';
}
echo $actielijnblok_titel . '</' . $programma_title_tag . '>';
echo '</div>';
echo '<div class="container">';
echo $intervalheader2;
echo '</div>';
echo '</header>';
echo '<div class="timescale-container">' . $currentkwartaal;
echo '<div class="actielijnen">';
if ( $select_actielijnen ) {